Descent3/grtext/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

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
)