1
0
Fork 0
flightgear/3rdparty/fonts/CMakeLists.txt
James Turner 7e9930e871 Move fnt code from PLIB into 3rdparty
This enables us to fix TXF loading to use UTF8 paths, required for
handling non-ASCII paths on Windows.
2020-03-13 12:21:56 +00:00

14 lines
221 B
CMake

set (FNT_SOURCES
fnt.cxx
fntTXF.cxx
fntBitmap.cxx
)
add_library(PLIBFont STATIC ${FNT_SOURCES})
target_link_libraries(PLIBFont SimGearCore)
target_include_directories(PLIBFont PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})