summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuha Alanen <juha.alanen@mapbox.com>2020-02-24 17:04:37 +0200
committerJuha Alanen <juha.alanen@mapbox.com>2020-02-27 10:09:35 +0200
commitb756ff8e14037d4f25db1a14c7533ca513a0f2e0 (patch)
treeefa70a292398f2cb0d814d841ae023b78c86f0a5
parent18e9ed1c0b7007a0d4e2ce14ed687270900e24ba (diff)
downloadqtlocation-mapboxgl-b756ff8e14037d4f25db1a14c7533ca513a0f2e0.tar.gz
[build][ios] Move iOS specific ccache scripts to platform directory
-rw-r--r--CMakeLists.txt20
-rw-r--r--platform/ios/ccache-c.in (renamed from scripts/ci/ccache-c.in)0
-rw-r--r--platform/ios/ccache-cxx.in (renamed from scripts/ci/ccache-cxx.in)0
-rw-r--r--platform/ios/ccache.cmake27
-rw-r--r--platform/ios/ios.cmake1
5 files changed, 28 insertions, 20 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0a09f09661..05ba29a96f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,26 +1,6 @@
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
project("Mapbox GL Native" LANGUAGES CXX C)
-find_program(CCACHE_PROGRAM ccache)
-if(CCACHE_PROGRAM AND CMAKE_SYSTEM_NAME STREQUAL "iOS")
- # Set up wrapper scripts
- set(C_LAUNCHER "${CCACHE_PROGRAM}")
- set(CXX_LAUNCHER "${CCACHE_PROGRAM}")
- configure_file(${PROJECT_SOURCE_DIR}/scripts/ci/ccache-c.in ccache-c)
- configure_file(${PROJECT_SOURCE_DIR}/scripts/ci/ccache-cxx.in ccache-cxx)
- execute_process(
- COMMAND
- chmod
- a+rx
- "${CMAKE_BINARY_DIR}/ccache-c"
- "${CMAKE_BINARY_DIR}/ccache-cxx"
- )
-
- # Set Xcode project attributes to route compilation and linking through our scripts
- set(CMAKE_XCODE_ATTRIBUTE_CC "${CMAKE_BINARY_DIR}/ccache-c")
- set(CMAKE_XCODE_ATTRIBUTE_CXX "${CMAKE_BINARY_DIR}/ccache-cxx")
-endif()
-
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER Core)
diff --git a/scripts/ci/ccache-c.in b/platform/ios/ccache-c.in
index f75d456e5d..f75d456e5d 100644
--- a/scripts/ci/ccache-c.in
+++ b/platform/ios/ccache-c.in
diff --git a/scripts/ci/ccache-cxx.in b/platform/ios/ccache-cxx.in
index 81831ad4dc..81831ad4dc 100644
--- a/scripts/ci/ccache-cxx.in
+++ b/platform/ios/ccache-cxx.in
diff --git a/platform/ios/ccache.cmake b/platform/ios/ccache.cmake
new file mode 100644
index 0000000000..cedf062a16
--- /dev/null
+++ b/platform/ios/ccache.cmake
@@ -0,0 +1,27 @@
+find_program(CCACHE_PROGRAM ccache)
+if(CCACHE_PROGRAM)
+ # Set up wrapper scripts
+ set(C_LAUNCHER "${CCACHE_PROGRAM}")
+ set(CXX_LAUNCHER "${CCACHE_PROGRAM}")
+ configure_file(${PROJECT_SOURCE_DIR}/platform/ios/ccache-c.in ccache-c)
+ configure_file(${PROJECT_SOURCE_DIR}/platform/ios/ccache-cxx.in ccache-cxx)
+ execute_process(
+ COMMAND
+ chmod
+ a+rx
+ "${CMAKE_BINARY_DIR}/ccache-c"
+ "${CMAKE_BINARY_DIR}/ccache-cxx"
+ )
+
+ if(CMAKE_GENERATOR STREQUAL "Xcode")
+ # Set Xcode project attributes to route compilation and linking through our scripts
+ set(CMAKE_XCODE_ATTRIBUTE_CC "${CMAKE_BINARY_DIR}/ccache-c")
+ set(CMAKE_XCODE_ATTRIBUTE_CXX "${CMAKE_BINARY_DIR}/ccache-cxx")
+ set(CMAKE_XCODE_ATTRIBUTE_LD "${CMAKE_BINARY_DIR}/ccache-c")
+ set(CMAKE_XCODE_ATTRIBUTE_LDPLUSPLUS "${CMAKE_BINARY_DIR}/ccache-cxx")
+ else()
+ # Support Unix Makefiles and Ninja
+ set(CMAKE_C_COMPILER_LAUNCHER "${CMAKE_BINARY_DIR}/ccache-c")
+ set(CMAKE_CXX_COMPILER_LAUNCHER "${CMAKE_BINARY_DIR}/ccache-cxx")
+ endif()
+endif()
diff --git a/platform/ios/ios.cmake b/platform/ios/ios.cmake
index 3b86353558..7e9db575ab 100644
--- a/platform/ios/ios.cmake
+++ b/platform/ios/ios.cmake
@@ -76,6 +76,7 @@ target_include_directories(
)
include(${PROJECT_SOURCE_DIR}/vendor/icu.cmake)
+include(${PROJECT_SOURCE_DIR}/platform/ios/ccache.cmake)
initialize_ios_target(mbgl-core)
initialize_ios_target(mbgl-vendor-icu)