mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
2aece028d0
This commit is part of efforts to isolate subsystems of project into own modules.
19 lines
297 B
CMake
19 lines
297 B
CMake
set(HEADERS ddio_lnx.h)
|
|
set(CPPS
|
|
lnxfile.cpp
|
|
lnxforcefeedback.cpp
|
|
lnxio.cpp
|
|
sdljoy.cpp
|
|
lnxkey.cpp
|
|
lnxkey_null.cpp
|
|
lnxmouse.cpp
|
|
lnxtimer.cpp
|
|
lnxkey_raw.cpp
|
|
lnxcdrom.cpp
|
|
lnxkey_sdl.cpp)
|
|
|
|
add_library(ddio_lnx STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(ddio_lnx
|
|
ddebug
|
|
)
|