mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-02 00:42:33 +01:00
58c0dcd8ce
core targets = developed by us
20 lines
334 B
CMake
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
|
|
)
|