Descent3/grtext/CMakeLists.txt
Azamat H. Hackimov 59487976f6 Isolate misc module
Isolate misc module for better dependency handling.
2024-06-27 01:26:35 +03:00

13 lines
181 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
misc
)