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.
12 lines
158 B
CMake
12 lines
158 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
newstyle.cpp
|
|
polymodel.cpp)
|
|
|
|
add_library(model STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(model PRIVATE
|
|
ddio
|
|
mem
|
|
misc
|
|
)
|