Skip to content

Commit

Permalink
Update required CMake
Browse files Browse the repository at this point in the history
  • Loading branch information
graebm committed Aug 19, 2024
1 parent 22214de commit 5edf918
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.1)
cmake_minimum_required(VERSION 3.13)
project(aws-c-mqtt C)

option(ASSERT_LOCK_HELD "Enable ASSERT_SYNCED_DATA_LOCK_HELD for checking thread issue" OFF)
Expand Down Expand Up @@ -68,7 +68,6 @@ file(GLOB MQTT_SRC
${AWS_MQTT_SRC}
)

aws_set_common_policies()
add_library(${PROJECT_NAME} ${MQTT_HEADERS} ${MQTT_SRC})
aws_set_common_properties(${PROJECT_NAME})
aws_prepare_symbol_visibility_args(${PROJECT_NAME} "AWS_MQTT")
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ C99 implementation of the MQTT 3.1.1 and MQTT 5 specifications.

## License

This library is licensed under the Apache 2.0 License.
This library is licensed under the Apache 2.0 License.

## Usage

### Building

CMake 3.1+ is required to build.
CMake 3.13+ is required to build.

`<install-path>` must be an absolute path in the following instructions.

Expand Down Expand Up @@ -203,6 +203,6 @@ the wire. For QoS 1, as soon as PUBACK comes back. For QoS 2, PUBCOMP. `topic` a
```c
int aws_mqtt_client_connection_ping(struct aws_mqtt_client_connection *connection);
```
Sends a PINGREQ packet to the server.
Sends a PINGREQ packet to the server.
[aws-c-io]: https://github.com/awslabs/aws-c-io

0 comments on commit 5edf918

Please sign in to comment.