Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « style_tests « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 431c6af4c4adf62985a997aefa7f16f624f26820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
project(style_tests)

include_directories(${OMIM_ROOT}/3party/protobuf/src)

set(
  SRC
  classificator_tests.cpp
  dashes_test.cpp
  helpers.hpp
  style_symbols_consistency_test.cpp
)

omim_add_test(${PROJECT_NAME} ${SRC})

omim_link_libraries(
  ${PROJECT_NAME}
  expat
  map
  traffic
  indexer
  osrm
  pugixml
  opening_hours
  editor
  oauthcpp
  platform
  jansson
  geometry
  coding
  base
  protobuf
  stats_client
  ${LIBZ}
)

link_qt5_core(${PROJECT_NAME})