1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 15:02:34 +02:00
openrw/rwtools/rwfont/CMakeLists.txt
Anonymous Maarten 58c0dcd8ce cmake: only set C and C++ standard for "core targets"
core targets = developed by us
2019-01-05 05:22:25 +01:00

20 lines
334 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
)
openrw_target_apply_options(
TARGET rwfontmap
CORE
COVERAGE
INSTALL INSTALL_PDB
)