C++ package with SDK and examples
Build RTClientSDK solution in Visual Studio 2017.
- Tested with GCC 7.
- Tested with VS 2017.
mkdir build
cd build
cmake .. -DBUILD_EXAMPLES=ON
cmake --build .
Include the Qualisys SDK in your cmake application with:
find_package(qualisys_cpp_sdk REQUIRED)
target_link_libraries(myapplication
qualisys_cpp_sdk)