mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
12 lines
395 B
Bash
12 lines
395 B
Bash
#!/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
|
|
|
|
export CCACHE_CPP2=true
|
|
export CCACHE_HARDLINK=true
|
|
export CCACHE_SLOPPINESS=file_macro,time_macros,include_file_mtime,include_file_ctime,file_stat_matches
|
|
exec "${CXX_LAUNCHER}" "${CMAKE_CXX_COMPILER}" "$@"
|