7e9930e871
This enables us to fix TXF loading to use UTF8 paths, required for handling non-ASCII paths on Windows.
14 lines
221 B
CMake
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})
|
|
|
|
|