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-11-03 18:34:24 +0300
committerTimofey <t.danshin@corp.mail.ru>2016-11-09 14:20:06 +0300
commit14a9cea834027fcd1c0131b13f61c0f42f6439b9 (patch)
treea13d3ed28ccbe37e58c21119e7348e8c5ee72707 /editor/osm_auth_tests
parent2ec8f5f71fee1f199a702c179eb5d29b1f5806ef (diff)
Added project declarations to subprojects
Replaced set with append
Diffstat (limited to 'editor/osm_auth_tests')
-rw-r--r--editor/osm_auth_tests/CMakeLists.txt15
1 files changed, 6 insertions, 9 deletions
diff --git a/editor/osm_auth_tests/CMakeLists.txt b/editor/osm_auth_tests/CMakeLists.txt
index 3f2dc67a37..237337c86d 100644
--- a/editor/osm_auth_tests/CMakeLists.txt
+++ b/editor/osm_auth_tests/CMakeLists.txt
@@ -1,13 +1,15 @@
+project(osm_auth_tests)
+
set(
SRC
osm_auth_tests.cpp
server_api_test.cpp
)
-omim_add_test(osm_auth_tests ${SRC})
+omim_add_test(${PROJECT_NAME} ${SRC})
omim_link_libraries(
- osm_auth_tests
+ ${PROJECT_NAME}
editor
platform
platform_tests_support
@@ -17,17 +19,12 @@ omim_link_libraries(
pugixml
oauthcpp
tomcrypt
-)
-
-target_link_libraries(
- osm_auth_tests
${Qt5Widgets_LIBRARIES}
)
if (${PLATFORM_MAC})
- target_link_libraries(
- osm_auth_tests
- ${Qt5Widgets_LIBRARIES}
+ omim_link_libraries(
+ ${PROJECT_NAME}
"-framework Cocoa"
"-framework IOKit"
"-framework SystemConfiguration"