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: d10a768137d5d8b2f8d7f475121372e2d3f61462 (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
37
38
39
40
41
42
43
project(style_tests)

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

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


if (BUILD_DESIGNER)
  set(SRC MACOSX_BUNDLE ${SRC})
endif()

omim_add_test(${PROJECT_NAME} ${SRC})

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

link_qt5_core(${PROJECT_NAME})