diff options
author | Ballista Milsim <ballista.milsim@gmail.com> | 2020-01-23 15:40:15 +0100 |
---|---|---|
committer | Ballista Milsim <ballista.milsim@gmail.com> | 2020-01-23 15:40:15 +0100 |
commit | 77885b4d65f49fd220d2426c01cd336402b86c60 (patch) | |
tree | afd0a202db23d7a1db8e6c0cb09f272759162d1a /tracker-tobii/CMakeLists.txt | |
parent | fb994308266093382fffecb8a3fd2645ab811117 (diff) |
WIP Tobii Eye tracker support.
Diffstat (limited to 'tracker-tobii/CMakeLists.txt')
-rw-r--r-- | tracker-tobii/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tracker-tobii/CMakeLists.txt b/tracker-tobii/CMakeLists.txt new file mode 100644 index 00000000..4593ae4e --- /dev/null +++ b/tracker-tobii/CMakeLists.txt @@ -0,0 +1,16 @@ +# https://developer.tobii.com/download-packages/stream-engine-4-1-0-for-windows-x86 +# https://developer.tobii.com/download-packages/stream-engine-4-1-0-for-windows-x64 +if(SDK_TOBII) + otr_module(tracker-tobii) + target_include_directories(${self} SYSTEM PRIVATE "${SDK_TOBII}/include") + + set(dll "${SDK_TOBII}/lib/tobii/tobii_stream_engine.dll") + set(lib "${SDK_TOBII}/lib/tobii/tobii_stream_engine.lib") + + message(${self}) + message(${dll}) + message(${lib}) + + install(FILES ${dll} DESTINATION ${opentrack-hier-pfx}) + target_link_libraries(${self} ${lib}) +endif() |