mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
7b31572d05
Isolate grtext from rest of the project, minor cleanups.
18 lines
247 B
CMake
18 lines
247 B
CMake
set(CPPS
|
|
grfont.cpp
|
|
grtext.cpp
|
|
textaux.cpp
|
|
)
|
|
|
|
add_library(grtext STATIC ${CPPS})
|
|
target_link_libraries(grtext PRIVATE
|
|
ddio
|
|
mem
|
|
misc
|
|
)
|
|
target_include_directories(grtext PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/grtext
|
|
>
|
|
)
|