mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
db8aa64d2f
Properly define MEM_USE_RTL definition only for mem library. Link other dependant modules with mem.
14 lines
202 B
CMake
14 lines
202 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
Collide.cpp
|
|
FindIntersection.cpp
|
|
newstyle_fi.cpp
|
|
physics.cpp)
|
|
|
|
add_library(physics STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(physics PRIVATE
|
|
ddio
|
|
mem
|
|
sndlib
|
|
)
|