Skip to content

Commit 2761c65

Browse files
authored
aws-crt-cpp v0.1.4 (#18)
1 parent ca5ea86 commit 2761c65

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,17 @@ is provided by code that been generated from a model of the service.
2929

3030
## Build from source
3131
```
32-
git clone --branch v0.1.1 https://github.com/awslabs/aws-crt-cpp.git
32+
git clone --branch v0.1.4 https://github.com/awslabs/aws-crt-cpp.git
3333
git clone https://github.com/awslabs/aws-iot-device-sdk-cpp-v2.git
3434
mkdir aws-crt-cpp-build
3535
cd aws-crt-cpp-build
3636
cmake -DCMAKE_INSTALL_PREFIX="<path to where you install>" -DCMAKE_PREFIX_PATH="<path to where you install>" -DBUILD_SHARED_LIBS=ON -DBUILD_DEPS=ON ../aws-crt-cpp
37-
<invoke build command make, msbuild, ninja etc....> install
37+
cmake --build . --target install
3838
cd ..
39-
mkdir aws-iot-device-sdk-cpp-v2
40-
cd aws-iot-device-sdk-cpp-v2
39+
mkdir aws-iot-device-sdk-cpp-v2-build
40+
cd aws-iot-device-sdk-cpp-v2-build
4141
cmake -DCMAKE_INSTALL_PREFIX="<path to where you install>" -DCMAKE_PREFIX_PATH="<path to where you install>" -DBUILD_SHARED_LIBS=ON ../aws-iot-device-sdk-cpp-v2
42-
<invoke build command make, msbuild, ninja etc....> install
43-
42+
cmake --build . --target install
4443
```
4544

4645
# Samples

samples/jobs/describe_job_execution/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ static void s_printHelp()
3636
stdout,
3737
"describe-job-execution --endpoint <endpoint> --cert <path to cert>"
3838
" --key <path to key> --ca_file <optional: path to custom ca>"
39-
"--thing_name <thing name> --job_id <job id>\n\n");
39+
" --thing_name <thing name> --job_id <job id>\n\n");
4040
fprintf(stdout, "endpoint: the endpoint of the mqtt server not including a port\n");
4141
fprintf(stdout, "cert: path to your client certificate in PEM format\n");
4242
fprintf(stdout, "key: path to your key in PEM format\n");

samples/shadow/shadow_sync/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ static void s_printHelp()
4141
stdout,
4242
"shadow-sync --endpoint <endpoint> --cert <path to cert>"
4343
" --key <path to key> --ca_file <optional: path to custom ca>"
44-
"--thing_name <thing name> --shadow_property <Name of property in shadow to keep in sync.>\n\n");
44+
" --thing_name <thing name> --shadow_property <Name of property in shadow to keep in sync.>\n\n");
4545
fprintf(stdout, "endpoint: the endpoint of the mqtt server not including a port\n");
4646
fprintf(stdout, "cert: path to your client certificate in PEM format\n");
4747
fprintf(stdout, "key: path to your key in PEM format\n");

0 commit comments

Comments
 (0)