blob: 3ba2c90cee90318791a5d437a8678f55a6e602af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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()
|