mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-04 20:03:45 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
18 lines
234 B
CMake
18 lines
234 B
CMake
project(skin_generator_tool)
|
|
|
|
set(SRC
|
|
generator.cpp
|
|
generator.hpp
|
|
main.cpp
|
|
)
|
|
|
|
omim_add_executable(${PROJECT_NAME} ${SRC})
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
geometry
|
|
gflags::gflags
|
|
Qt6::Xml
|
|
Qt6::Svg
|
|
Qt6::Widgets
|
|
)
|