mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-23 02:42:39 +01:00
17 lines
314 B
CMake
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}"
|
|
)
|