2016-06-12 18:03:33 +00:00
|
|
|
add_library(oics STATIC
|
|
|
|
ICSChannel.cpp
|
|
|
|
ICSControl.cpp
|
|
|
|
ICSInputControlSystem.cpp
|
|
|
|
ICSInputControlSystem_keyboard.cpp
|
|
|
|
ICSInputControlSystem_mouse.cpp
|
|
|
|
ICSInputControlSystem_joystick.cpp
|
|
|
|
ICSPrerequisites.h
|
2012-08-12 18:45:02 +00:00
|
|
|
)
|
|
|
|
|
2013-09-13 13:11:17 +00:00
|
|
|
if(USE_SYSTEM_TINYXML)
|
2016-06-12 18:03:33 +00:00
|
|
|
target_link_libraries(oics ${TinyXML_LIBRARIES})
|
2013-09-13 13:11:17 +00:00
|
|
|
else()
|
2016-06-12 18:03:33 +00:00
|
|
|
add_library(local_tinyxml STATIC
|
|
|
|
tinyxml.cpp
|
|
|
|
tinyxmlparser.cpp
|
|
|
|
tinyxmlerror.cpp
|
|
|
|
tinystr.cpp
|
|
|
|
)
|
|
|
|
target_link_libraries(oics local_tinyxml)
|
2013-09-13 13:11:17 +00:00
|
|
|
endif()
|