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.
21 lines
396 B
CMake
21 lines
396 B
CMake
13 years ago
|
set(OICS_LIBRARY "oics")
|
||
|
|
||
|
# Sources
|
||
|
|
||
|
set(OICS_SOURCE_FILES
|
||
|
ICSChannel.cpp
|
||
|
ICSControl.cpp
|
||
|
ICSInputControlSystem.cpp
|
||
|
ICSInputControlSystem_keyboard.cpp
|
||
|
ICSInputControlSystem_mouse.cpp
|
||
|
ICSInputControlSystem_joystick.cpp
|
||
|
tinyxml.cpp
|
||
|
tinyxmlparser.cpp
|
||
|
tinyxmlerror.cpp
|
||
|
tinystr.cpp
|
||
|
)
|
||
|
|
||
|
add_library(${OICS_LIBRARY} STATIC ${OICS_SOURCE_FILES})
|
||
|
|
||
|
link_directories(${CMAKE_CURRENT_BINARY_DIR})
|