summaryrefslogtreecommitdiff
path: root/scripts
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 /scripts
parent18e9ed1c0b7007a0d4e2ce14ed687270900e24ba (diff)
downloadqtlocation-mapboxgl-b756ff8e14037d4f25db1a14c7533ca513a0f2e0.tar.gz
[build][ios] Move iOS specific ccache scripts to platform directory
Diffstat (limited to 'scripts')
-rw-r--r--scripts/ci/ccache-c.in9
-rw-r--r--scripts/ci/ccache-cxx.in9
2 files changed, 0 insertions, 18 deletions
diff --git a/scripts/ci/ccache-c.in b/scripts/ci/ccache-c.in
deleted file mode 100644
index f75d456e5d..0000000000
--- a/scripts/ci/ccache-c.in
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-# Xcode generator doesn't include the compiler as the
-# first argument, Ninja and Makefiles do. Handle both cases.
-if [[ "$1" = "${CMAKE_C_COMPILER}" ]] ; then
- shift
-fi
-
-exec "${C_LAUNCHER}" "${CMAKE_C_COMPILER}" "$@"
diff --git a/scripts/ci/ccache-cxx.in b/scripts/ci/ccache-cxx.in
deleted file mode 100644
index 81831ad4dc..0000000000
--- a/scripts/ci/ccache-cxx.in
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-# Xcode generator doesn't include the compiler as the
-# first argument, Ninja and Makefiles do. Handle both cases.
-if [[ "$1" = "${CMAKE_CXX_COMPILER}" ]] ; then
- shift
-fi
-
-exec "${CXX_LAUNCHER}" "${CMAKE_CXX_COMPILER}" "$@"