blob: 73ea231a9e917eea30815c8a3d369b1a4dd97b8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# The Eyeware Beam SDK can be found at https://beam.eyeware.tech/developers/
# The latest version can be downloaded at https://eyewarecistorage.blob.core.windows.net/beam-sdk/BeamSDK-Windows64-1.1.0.zip
set(SDK_EYEWARE_BEAM "" CACHE PATH "Eyeware Beam SDK path")
if(WIN32 AND SDK_EYEWARE_BEAM)
if(MSVC)
add_compile_options(-EHsc)
endif()
otr_module(tracker-eyeware-beam)
target_include_directories(${self} SYSTEM PRIVATE "${SDK_EYEWARE_BEAM}/API/cpp/include")
target_link_directories(${self} PRIVATE "${SDK_EYEWARE_BEAM}/API/cpp/lib")
set(dll "${SDK_EYEWARE_BEAM}/API/cpp/lib/tracker_client.dll" "${SDK_EYEWARE_BEAM}/API/cpp/lib/libsodium.dll")
set(lib tracker_client.lib)
#message(${self})
#message(${dll})
#message(${lib})
target_link_libraries(${self} ${lib})
install(FILES ${dll} DESTINATION ${opentrack-libexec})
endif()
|