summaryrefslogtreecommitdiffhomepage
path: root/proto-fsuipc/CMakeLists.txt
blob: b3e94c32d56c499c54485d03082b22a22c904385 (plain)
1
2
3
4
5
6
7
8
9
10
11
if(WIN32)
    set(SDK_FSUIPC "" CACHE PATH "FSUIPC for older MS FSX path")
    if(SDK_FSUIPC)
        otr_module(proto-fsuipc)
        target_link_libraries(opentrack-proto-fsuipc ${SDK_FSUIPC}/FSUIPC_User.lib)
        target_include_directories(opentrack-proto-fsuipc SYSTEM PUBLIC ${SDK_FSUIPC})
        if(MSVC)
            set_property(TARGET opentrack-proto-fsuipc APPEND_STRING PROPERTY LINK_FLAGS "/NODEFAULTLIB:LIBC.lib")
        endif()
    endif()
endif()