Added the link platform function.

This commit is contained in:
Timofey 2016-11-17 16:39:07 +03:00
parent f42d8f123c
commit 2669462b25
14 changed files with 20 additions and 82 deletions

View file

@ -104,9 +104,24 @@ function(omim_add_test_subdirectory subdir)
endif()
endfunction()
function(omim_link_platform_if_needed target)
if (";${ARGN};" MATCHES ";platform;")
if (PLATFORM_MAC)
target_link_libraries(
${target}
"-framework Cocoa"
"-framework QuartzCore"
"-framework SystemConfiguration"
)
endif()
endif()
endfunction()
function(omim_link_libraries target)
if (TARGET ${target})
target_link_libraries(${target} ${ARGN} ${CMAKE_THREAD_LIBS_INIT})
omim_link_platform_if_needed(${target} ${ARGN})
else()
message("~> Skipping linking the libraries to the target ${target} as it does not exist")
endif()

View file

@ -69,9 +69,6 @@ omim_link_libraries(
if (PLATFORM_MAC)
omim_link_libraries(
${PROJECT_NAME}
"-framework IOKit"
"-framework Cocoa"
"-framework CoreLocation"
"-framework SystemConfiguration"
)
endif()

View file

@ -13,10 +13,7 @@ if (PLATFORM_MAC)
omim_link_libraries(
${PROJECT_NAME}
${Qt5Widgets_LIBRARIES}
"-framework Cocoa"
"-framework IOKit"
"-framework QuartzCore"
"-framework SystemConfiguration"
)
endif()

View file

@ -29,12 +29,3 @@ omim_link_libraries(
${LIBZ}
${Qt5Widgets_LIBRARIES}
)
if (${PLATFORM_MAC})
omim_link_libraries(
${PROJECT_NAME}
"-framework Cocoa"
"-framework IOKit"
"-framework SystemConfiguration"
)
endif()

View file

@ -22,12 +22,3 @@ omim_link_libraries(
${LIBZ}
${Qt5Widgets_LIBRARIES}
)
if (${PLATFORM_MAC})
omim_link_libraries(
${PROJECT_NAME}
"-framework Cocoa"
"-framework IOKit"
"-framework SystemConfiguration"
)
endif()

View file

@ -42,9 +42,6 @@ omim_link_libraries(
if (PLATFORM_MAC)
omim_link_libraries(
${PROJECT_NAME}
"-framework Cocoa"
"-framework IOKit"
"-framework QuartzCore"
"-framework SystemConfiguration"
)
endif()

View file

@ -26,9 +26,6 @@ if (PLATFORM_MAC)
omim_link_libraries(
${PROJECT_NAME}
${Qt5Widgets_LIBRARIES}
"-framework IOKit"
"-framework SystemConfiguration"
"-framework Cocoa"
)
endif()

View file

@ -17,6 +17,7 @@ set(
)
omim_add_test(${PROJECT_NAME} ${SRC})
omim_link_libraries(
${PROJECT_NAME}
platform_tests_support
@ -29,15 +30,11 @@ omim_link_libraries(
${LIBZ}
)
if (PLATFORM_MAC)
omim_link_libraries(
${PROJECT_NAME}
${Qt5Widgets_LIBRARIES}
"-framework Cocoa"
"-framework IOKit"
"-framework QuartzCore"
"-framework SystemConfiguration"
)
endif()

View file

@ -22,12 +22,8 @@ set(
routing_test_tools.hpp
)
# if (APPLE)
# target_compile_options(${PROJECT_NAME} PUBLIC "-fobjc-arc")
#endif()
omim_add_test(${PROJECT_NAME} ${SRC})
omim_link_libraries(
${PROJECT_NAME}
map
@ -51,12 +47,3 @@ omim_link_libraries(
${Qt5Core_LIBRARIES}
${LIBZ}
)
if (PLATFORM_MAC)
omim_link_libraries(
${PROJECT_NAME}
"-framework Cocoa"
"-framework IOKit"
"-framework SystemConfiguration"
)
endif()

View file

@ -26,6 +26,7 @@ set(
)
omim_add_test(${PROJECT_NAME} ${SRC})
omim_link_libraries(
${PROJECT_NAME}
routing
@ -49,12 +50,3 @@ omim_link_libraries(
${Qt5Core_LIBRARIES}
${LIBZ}
)
if (PLATFORM_MAC)
omim_link_libraries(
${PROJECT_NAME}
"-framework Cocoa"
"-framework IOKit"
"-framework SystemConfiguration"
)
endif()

View file

@ -43,12 +43,3 @@ omim_link_libraries(
${Qt5Core_LIBRARIES}
${LIBZ}
)
if (PLATFORM_MAC)
omim_link_libraries(
${PROJECT_NAME}
"-framework Cocoa"
"-framework IOKit"
"-framework SystemConfiguration"
)
endif ()

View file

@ -10,7 +10,8 @@ omim_add_test(${PROJECT_NAME} ${SRC})
omim_link_libraries(
${PROJECT_NAME}
tracking platform
tracking
platform
platform_tests_support
coding
base
@ -19,12 +20,3 @@ omim_link_libraries(
${LIBZ}
${Qt5Widgets_LIBRARIES}
)
if (${PLATFORM_MAC})
omim_link_libraries(
${PROJECT_NAME}
"-framework Cocoa"
"-framework IOKit"
"-framework SystemConfiguration"
)
endif()

View file

@ -30,10 +30,7 @@ if (PLATFORM_MAC)
omim_link_libraries(
${PROJECT_NAME}
${Qt5Widgets_LIBRARIES}
"-framework Cocoa"
"-framework IOKit"
"-framework QuartzCore"
"-framework SystemConfiguration"
)
endif()

View file

@ -30,9 +30,6 @@ if (PLATFORM_MAC)
omim_link_libraries(
${PROJECT_NAME}
${Qt5Widgets_LIBRARIES}
"-framework IOKit"
"-framework Cocoa"
"-framework SystemConfiguration"
)
endif()