You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
503 B
CMake
22 lines
503 B
CMake
add_library(oics STATIC
|
|
ICSChannel.cpp
|
|
ICSControl.cpp
|
|
ICSInputControlSystem.cpp
|
|
ICSInputControlSystem_keyboard.cpp
|
|
ICSInputControlSystem_mouse.cpp
|
|
ICSInputControlSystem_joystick.cpp
|
|
ICSPrerequisites.h
|
|
)
|
|
|
|
if(USE_SYSTEM_TINYXML)
|
|
target_link_libraries(oics ${TinyXML_LIBRARIES})
|
|
else()
|
|
add_library(local_tinyxml STATIC
|
|
tinyxml.cpp
|
|
tinyxmlparser.cpp
|
|
tinyxmlerror.cpp
|
|
tinystr.cpp
|
|
)
|
|
target_link_libraries(oics local_tinyxml)
|
|
endif()
|