Codebase list supercollider / df1eaf3
finalized the merge Georges Khaznadar 5 years ago
1 changed file(s) with 7 addition(s) and 11 deletion(s). Raw diff Collapse all Expand all
33 ===================================================================
44 --- supercollider.orig/CMakeLists.txt
55 +++ supercollider/CMakeLists.txt
6 @@ -150,12 +150,13 @@ add_definitions(-DBOOST_CHRONO_HEADER_ON
6 @@ -150,11 +150,11 @@ add_definitions(-DBOOST_CHRONO_HEADER_ON
77 #############################################
88 # Detect CCache
99
1010 -find_program(CCacheExectuable ccache)
1111 -if( CCacheExectuable )
12 - # only used with >=cmake-3.4
12 +find_program(CCacheExecutable ccache)
13 +if( CCacheExecutable )
14 # only used with >=cmake-3.4
1315 - set( CMAKE_C_COMPILER_LAUNCHER "${CCacheExectuable}" )
1416 - set( CMAKE_CXX_COMPILER_LAUNCHER "${CCacheExectuable}" )
15 -endif()
16 +## disable ccache for debian package build
17 +## find_program(CCacheExecutable ccache)
18 +## if( CCacheExecutable )
19 +## # only used with >=cmake-3.4
20 +## set( CMAKE_C_COMPILER_LAUNCHER "${CCacheExecutable}" )
21 +## set( CMAKE_CXX_COMPILER_LAUNCHER "${CCacheExecutable}" )
22 +## endif()
17 + set( CMAKE_C_COMPILER_LAUNCHER "${CCacheExecutable}" )
18 + set( CMAKE_CXX_COMPILER_LAUNCHER "${CCacheExecutable}" )
19 endif()
2320
2421 #############################################
25 # Options