File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed
jobs/describe_job_execution Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -29,18 +29,17 @@ is provided by code that been generated from a model of the service.
29
29
30
30
## Build from source
31
31
```
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
33
33
git clone https://github.com/awslabs/aws-iot-device-sdk-cpp-v2.git
34
34
mkdir aws-crt-cpp-build
35
35
cd aws-crt-cpp-build
36
36
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
38
38
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
41
41
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
44
43
```
45
44
46
45
# Samples
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ static void s_printHelp()
36
36
stdout,
37
37
" describe-job-execution --endpoint <endpoint> --cert <path to cert>"
38
38
" --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 " );
40
40
fprintf (stdout, " endpoint: the endpoint of the mqtt server not including a port\n " );
41
41
fprintf (stdout, " cert: path to your client certificate in PEM format\n " );
42
42
fprintf (stdout, " key: path to your key in PEM format\n " );
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ static void s_printHelp()
41
41
stdout,
42
42
" shadow-sync --endpoint <endpoint> --cert <path to cert>"
43
43
" --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 " );
45
45
fprintf (stdout, " endpoint: the endpoint of the mqtt server not including a port\n " );
46
46
fprintf (stdout, " cert: path to your client certificate in PEM format\n " );
47
47
fprintf (stdout, " key: path to your key in PEM format\n " );
You can’t perform that action at this time.
0 commit comments