summaryrefslogtreecommitdiffhomepage
path: root/tracker-eyeware-beam/CMakeLists.txt
blob: 3a75f61a5dea926627f713a16fd4f2cd566ade58 (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} SYSTEM 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)

    #message(${self})
    #message(${dll})
    #message(${lib})

    target_link_libraries(${self} ${lib})
    install(FILES ${dll} DESTINATION ${opentrack-libexec})
endif()