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-02 15:24:37 +0300
committerTimofey <t.danshin@corp.mail.ru>2016-11-02 19:09:29 +0300
commit84772d00dbd265b64ae2e2fe184beb4ddc213434 (patch)
tree373557ff67a19c115903562bd7d71cac1dcf14c5 /platform
parent497982b085197f4fe600565f0fbd49fc97a3e145 (diff)
Fixed compilation on Mac and Linux
Diffstat (limited to 'platform')
-rw-r--r--platform/CMakeLists.txt3
-rw-r--r--platform/platform_tests_support/CMakeLists.txt2
2 files changed, 5 insertions, 0 deletions
diff --git a/platform/CMakeLists.txt b/platform/CMakeLists.txt
index 160c3f72ec..d2a1b8d20f 100644
--- a/platform/CMakeLists.txt
+++ b/platform/CMakeLists.txt
@@ -37,6 +37,7 @@ set(
servers_list.hpp
settings.cpp
settings.hpp
+ socket.hpp
)
@@ -50,6 +51,7 @@ if(${PLATFORM_IPHONE})
platform_ios.mm
platform_unix_impl.cpp
platform_unix_impl.hpp
+ socket_apple.mm
)
elseif(${PLATFORM_ANDROID})
set(
@@ -91,6 +93,7 @@ else() # neither iPhone nor Android
platform_mac.mm
platform_unix_impl.cpp
platform_unix_impl.hpp
+ socket_apple.mm
)
elseif(${PLATFORM_LINUX})
set(
diff --git a/platform/platform_tests_support/CMakeLists.txt b/platform/platform_tests_support/CMakeLists.txt
index 8aca483afd..3b5dbc2791 100644
--- a/platform/platform_tests_support/CMakeLists.txt
+++ b/platform/platform_tests_support/CMakeLists.txt
@@ -6,6 +6,8 @@ set(
scoped_file.hpp
scoped_mwm.cpp
scoped_mwm.hpp
+ test_socket.cpp
+ test_socket.hpp
writable_dir_changer.cpp
writable_dir_changer.hpp
)