mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
59487976f6
Isolate misc module for better dependency handling.
13 lines
181 B
CMake
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
|
|
)
|