Skip to content

Commit ff8d38d

Browse files
Add '--config Release' to commands, add 'Install (After Build)' section.
1 parent bce0986 commit ff8d38d

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

README.md

+10-5
Original file line numberDiff line numberDiff line change
@@ -18,30 +18,35 @@ Build RTClientSDK solution in Visual Studio 2017 (or later version).
1818

1919
### Build As Static
2020
```
21-
cmake -S . -B build -Dqualisys_cpp_sdk_OUTPUT_TYPE=STATIC && cmake --build build
21+
cmake -S . -B build -Dqualisys_cpp_sdk_OUTPUT_TYPE=STATIC && cmake --build build --config Release
2222
```
2323

2424
### Build As Shared/Dynamic
2525
```
26-
cmake -S . -B build -Dqualisys_cpp_sdk_OUTPUT_TYPE=SHARED && cmake --build build
26+
cmake -S . -B build -Dqualisys_cpp_sdk_OUTPUT_TYPE=SHARED && cmake --build build --config Release
2727
```
2828

2929
### Build As Shared/Dynamic (With Versioning)
3030
```
31-
cmake -S . -B build -Dqualisys_cpp_sdk_OUTPUT_TYPE=SHARED_VERSIONED && cmake --build build
31+
cmake -S . -B build -Dqualisys_cpp_sdk_OUTPUT_TYPE=SHARED_VERSIONED && cmake --build build --config Release
3232
```
3333

3434
### Build Examples
3535
```
36-
cmake -S . -B build -Dqualisys_cpp_sdk_BUILD_EXAMPLES=ON && cmake --build build
36+
cmake -S . -B build -Dqualisys_cpp_sdk_BUILD_EXAMPLES=ON && cmake --build build --config Release
3737
```
3838

3939
### Build & Run Tests
4040
```
41-
cmake -S . -B build -Dqualisys_cpp_sdk_BUILD_TESTS=ON && cmake --build build
41+
cmake -S . -B build -Dqualisys_cpp_sdk_BUILD_TESTS=ON && cmake --build build --config Release
4242
ctest --test-dir build
4343
```
4444

45+
### Install (After Build)
46+
```
47+
cmake --install build --config Release
48+
```
49+
4550
## Usage
4651

4752
Include the Qualisys SDK in your CMake application:

0 commit comments

Comments
 (0)