Files
comaps/generator/pygen/CMakeLists.txt
Konstantin Pastbin e3e4a1985a Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)
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
2025-05-08 21:10:51 +07:00

54 lines
749 B
CMake

project(pygen)
set(
SRC
pygen.cpp
)
include_directories(${CMAKE_BINARY_DIR})
omim_add_library(${PROJECT_NAME} MODULE ${SRC})
omim_link_libraries(
${PROJECT_NAME}
generator
routing
traffic
routing_common
descriptions
transit
search
storage
editor
indexer
mwm_diff
platform
geometry
coding
base
opening_hours
freetype
expat::expat
ICU::i18n
cppjansson
protobuf
bsdiff
minizip
succinct
pugixml
tess2
sqlite3
${CMAKE_DL_LIBS}
ZLIB::ZLIB
${Boost_LIBRARIES}
)
link_qt5_core(${PROJECT_NAME})
link_qt5_network(${PROJECT_NAME})
if (PLATFORM_MAC)
omim_link_libraries(${PROJECT_NAME} "-Wl,-undefined,dynamic_lookup")
endif()
set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "")