File tree 1 file changed +10
-5
lines changed
1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -18,30 +18,35 @@ Build RTClientSDK solution in Visual Studio 2017 (or later version).
18
18
19
19
### Build As Static
20
20
```
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
22
22
```
23
23
24
24
### Build As Shared/Dynamic
25
25
```
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
27
27
```
28
28
29
29
### Build As Shared/Dynamic (With Versioning)
30
30
```
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
32
32
```
33
33
34
34
### Build Examples
35
35
```
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
37
37
```
38
38
39
39
### Build & Run Tests
40
40
```
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
42
42
ctest --test-dir build
43
43
```
44
44
45
+ ### Install (After Build)
46
+ ```
47
+ cmake --install build --config Release
48
+ ```
49
+
45
50
## Usage
46
51
47
52
Include the Qualisys SDK in your CMake application:
You can’t perform that action at this time.
0 commit comments