mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
59487976f6
Isolate misc module for better dependency handling.
24 lines
351 B
CMake
24 lines
351 B
CMake
set(CPPS
|
|
lnxcon.cpp
|
|
lnxcon_raw.cpp
|
|
lnxcontroller.cpp
|
|
lnxapp.cpp
|
|
lnxcon_null.cpp
|
|
lnxdata.cpp
|
|
registry.cpp
|
|
)
|
|
|
|
add_library(linux STATIC ${CPPS})
|
|
target_link_libraries(linux PRIVATE
|
|
cfile
|
|
)
|
|
target_include_directories(linux PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/linux
|
|
>
|
|
)
|
|
target_link_libraries(linux PRIVATE
|
|
ddio
|
|
misc
|
|
)
|