1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-23 02:42:39 +01:00
openrw/rwtools/rwfont/CMakeLists.txt
2018-08-15 22:53:32 +02:00

17 lines
314 B
CMake

find_package(Qt5 REQUIRED COMPONENTS Gui)
add_executable(rwfontmap
rwfontmap.cpp
)
target_link_libraries(rwfontmap
PUBLIC
rwcore
Freetype::Freetype
Boost::program_options
Qt5::Gui
)
install(TARGETS rwfontmap
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
)