1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-02 00:42:33 +01:00
openrw/rwtools/rwfont/CMakeLists.txt

20 lines
334 B
CMake
Raw Normal View History

2018-08-03 02:20:33 +02:00
find_package(Qt5 REQUIRED COMPONENTS Gui)
add_executable(rwfontmap
rwfontmap.cpp
)
target_link_libraries(rwfontmap
PUBLIC
2018-08-09 23:08:07 +02:00
rwcore
2018-06-24 00:43:06 +02:00
Freetype::Freetype
Boost::program_options
2018-08-03 02:20:33 +02:00
Qt5::Gui
)
2018-08-07 18:52:21 +02:00
2018-09-01 18:23:10 +02:00
openrw_target_apply_options(
TARGET rwfontmap
CORE
COVERAGE
2018-09-01 18:23:10 +02:00
INSTALL INSTALL_PDB
2018-08-07 18:52:21 +02:00
)