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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimofey <t.danshin@corp.mail.ru>2016-12-22 14:57:42 +0300
committerTimofey <t.danshin@corp.mail.ru>2017-01-13 00:10:11 +0300
commit767d95c6fa5213e8ff5f7037d207d36c7353b24c (patch)
tree3f30697297465bd80b415c218fcb96cf3edc9634 /indexer/indexer_tests
parent36265a91bd097c7e5f8693e5ba1d305cb6dfd76b (diff)
Added indexer tests
Diffstat (limited to 'indexer/indexer_tests')
-rw-r--r--indexer/indexer_tests/CMakeLists.txt70
1 files changed, 70 insertions, 0 deletions
diff --git a/indexer/indexer_tests/CMakeLists.txt b/indexer/indexer_tests/CMakeLists.txt
new file mode 100644
index 0000000000..3b7cc28ee4
--- /dev/null
+++ b/indexer/indexer_tests/CMakeLists.txt
@@ -0,0 +1,70 @@
+project(indexer_tests)
+
+set(
+ SRC
+ banners_test.cpp
+ categories_test.cpp
+ cell_coverer_test.cpp
+ cell_id_test.cpp
+ centers_table_test.cpp
+ checker_test.cpp
+ drules_selector_parser_test.cpp
+ editable_map_object_test.cpp
+ feature_metadata_test.cpp
+ feature_names_test.cpp
+ feature_xml_test.cpp
+ features_offsets_table_test.cpp
+ features_vector_test.cpp
+ geometry_coding_test.cpp
+ geometry_serialization_test.cpp
+ index_builder_test.cpp
+ index_test.cpp
+ interval_index_test.cpp
+ mwm_set_test.cpp
+ osm_editor_test.cpp
+ osm_editor_test.hpp
+ point_to_int64_test.cpp
+ postcodes_matcher_tests.cpp
+ rank_table_test.cpp
+ scales_test.cpp
+ search_string_utils_test.cpp
+ sort_and_merge_intervals_test.cpp
+ string_slice_tests.cpp
+ succinct_trie_test.cpp
+ test_mwm_set.hpp
+ test_polylines.cpp
+ test_polylines.hpp
+ test_type.cpp
+ trie_test.cpp
+ visibility_test.cpp
+)
+
+omim_add_test(${PROJECT_NAME} ${SRC})
+
+omim_link_libraries(
+ ${PROJECT_NAME}
+ generator_tests_support
+ search_tests_support
+ indexer_tests_support
+ platform_tests_support
+ generator
+ search
+ routing
+ indexer
+ storage
+ editor
+ platform
+ coding
+ geometry
+ base
+ stats_client
+ jansson
+ tess2
+ protobuf
+ succinct
+ opening_hours
+ oauthcpp
+ pugixml
+ ${Qt5Core_LIBRARIES}
+ ${LIBZ}
+)