This repository has been archived on 2022-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
LEFTONE/util/glyphas/CMakeLists.txt

34 lines
423 B
CMake
Raw Normal View History

add_library(glyphas
aligner.c
block.c
cache.c
context.c
drawer.c
face.c
glyph.c
)
target_any_sources(glyphas
drawer.vshader
drawer.fshader
)
target_link_libraries(glyphas
Freetype::Freetype
GLEW::GLEW
OpenGL::GL
chaos
container
conv
gleasy
math
memory
)
if (BUILD_TESTING)
add_executable(glyphas-test test.c)
target_link_libraries(glyphas-test
SDL2::SDL2
glyphas)
endif()