summaryrefslogtreecommitdiffhomepage
path: root/proto-fsuipc/CMakeLists.txt
blob: bb613d1d0aaca8525faf76fbe5f38a86e0d49e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if(WIN32 AND NOT opentrack-64bit AND opentrack-intel)
    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()