mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-07 20:00:07 -04:00
10 lines
136 B
CMake
10 lines
136 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
module.cpp)
|
|
|
|
add_library(module STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(module PRIVATE
|
|
ddio
|
|
misc
|
|
)
|