Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 487 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 487 Bytes

Qualisys Realtime SDK

C++ package with SDK and examples

Build with Visual Studio

Build RTClientSDK solution in Visual Studio 2017.

Build with CMake (Windows & Linux)

  • Tested with GCC 7.
  • Tested with VS 2017.
mkdir build
cd build
cmake .. -DBUILD_EXAMPLES=ON
cmake --build .

Usage

Include the Qualisys SDK in your cmake application with:

find_package(qualisys_cpp_sdk REQUIRED)

target_link_libraries(myapplication
        qualisys_cpp_sdk)