mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
9 lines
129 B
CMake
9 lines
129 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
module.cpp)
|
|
|
|
add_library(module STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(module PRIVATE
|
|
ddio
|
|
)
|