blob: 41af28832d8e6fc3a4b7507cdd8d4159891f2e15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
if(WIN32)
set(SDK_VJOYSTICK "" CACHE PATH "vjoystick SDK path")
if(SDK_VJOYSTICK)
if(opentrack-64bit)
set(arch "amd64/")
else()
set(arch "")
endif()
set(lib "${SDK_VJOYSTICK}/lib/${arch}vJoyInterface.lib")
set(dll "${SDK_VJOYSTICK}/lib/${arch}vJoyInterface.dll")
otr_module(proto-vjoy)
target_link_libraries(opentrack-proto-vjoy ${lib})
target_include_directories(opentrack-proto-vjoy SYSTEM PUBLIC "${SDK_VJOYSTICK}/inc")
install(FILES "${dll}" DESTINATION ${opentrack-hier-pfx})
endif()
endif()
|