From: CryptoManiac Date: Fri, 24 Dec 2021 08:10:44 +0000 (+0300) Subject: Remove duplicate compiler launcher X-Git-Tag: nvc-v0.5.9~59 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=41a8c43a751fc85b4053976a998a496260fd8e8b Remove duplicate compiler launcher --- diff --git a/CMakeLists.txt b/CMakeLists.txt index ea528b4..3342342 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,6 @@ endif() find_program(CCACHE_FOUND ccache) if(CCACHE_FOUND) - set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache) set(CMAKE_C_COMPILER_LAUNCHER ccache) set(CMAKE_CXX_COMPILER_LAUNCHER ccache) endif(CCACHE_FOUND) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7979322..a4a266b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -21,7 +21,6 @@ endif() find_program(CCACHE_FOUND ccache) if(CCACHE_FOUND) - set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache) set(CMAKE_C_COMPILER_LAUNCHER ccache) set(CMAKE_CXX_COMPILER_LAUNCHER ccache) endif(CCACHE_FOUND)