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.
12 lines
174 B
CMake
12 lines
174 B
CMake
set(HEADERS grtextlib.h)
|
|
set(CPPS
|
|
grfont.cpp
|
|
grtext.cpp
|
|
textaux.cpp)
|
|
|
|
add_library(grtext STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(grtext PRIVATE
|
|
ddio
|
|
mem
|
|
)
|