Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[build] Fix the output path of the iOS ccache scripts
Browse files Browse the repository at this point in the history
iOS ccache wrapper scripts should be in the top level
of the CMake build tree, so fix the output path in the
configure_file().
  • Loading branch information
nagineni committed Apr 21, 2020
1 parent 6fa9eda commit dc86c60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/ios/ccache.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ 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)
configure_file(${PROJECT_SOURCE_DIR}/platform/ios/ccache-c.in ${CMAKE_BINARY_DIR}/ccache-c)
configure_file(${PROJECT_SOURCE_DIR}/platform/ios/ccache-cxx.in ${CMAKE_BINARY_DIR}/ccache-cxx)
execute_process(
COMMAND
chmod
Expand Down

0 comments on commit dc86c60

Please sign in to comment.