Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 906 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 906 Bytes

Xsens Client

This repository is for a C++ library around the Xsens software development kit, based on the CMake build system.

It contains a client class to easily get Xsens data over UDP. The code is based on the example shipped with the SDK.
A CMake find script is also installed to wrap around the official SDK.

Requirements

Build and install

After cloning or downloading this repository, build and install with:

mkdir build && cd build
cmake ..
cmake --build .
cmake --install .

Usage

After installing this library, include it into your CMake application with:

find_package(XsensClient)
target_link_libraries(application Xsens::XsensClient)

Or you are only interested in the Xsens SDK itself:

find_package(XsensClient)
target_link_libraries(application Xsens::XsensSDK)