[platform] removed swift-related stuff from CMakeLists.txt

This commit is contained in:
Aleksey Belousov 2018-05-08 15:53:25 +03:00
parent 35b1667060
commit 2d5e247fd0

View file

@ -108,7 +108,6 @@ else() # neither iPhone nor Android
http_thread_apple.h
http_thread_apple.mm
http_uploader_apple.mm
http_uploader_apple.swift
marketing_service_dummy.cpp
platform_mac.mm
platform_unix_impl.cpp
@ -137,13 +136,8 @@ add_subdirectory(platform_tests_support)
add_library(${PROJECT_NAME} ${SRC})
# 2 next lines are added for future support of swift code compilation.
set(SWIFT_BRIDGING_HEADER platform-Swift.h)
set_property(TARGET ${PROJECT_NAME} PROPERTY XCODE_ATTRIBUTE_SWIFT_OBJC_BRIDGING_HEADER "${SWIFT_BRIDGING_HEADER}")
if (APPLE)
# "-DIGNORE_SWIFT=1" key is added as the temporary solution until support of swift code compilation.
target_compile_options(${PROJECT_NAME} PUBLIC "-fobjc-arc" "-DIGNORE_SWIFT=1")
target_compile_options(${PROJECT_NAME} PUBLIC "-fobjc-arc")
endif()
omim_add_test_subdirectory(platform_tests)