Descent3/model/CMakeLists.txt
Azamat H. Hackimov db8aa64d2f Make mem module isolated from project
Properly define MEM_USE_RTL definition only for mem library. Link other dependant modules with mem.
2024-06-20 00:43:51 +03:00

11 lines
151 B
CMake

set(HEADERS)
set(CPPS
newstyle.cpp
polymodel.cpp)
add_library(model STATIC ${HEADERS} ${CPPS})
target_link_libraries(model PRIVATE
ddio
mem
)