From 1c584e7c76db654f3280ca8d175b8f1848e609f5 Mon Sep 17 00:00:00 2001 From: Snider Date: Tue, 7 Oct 2025 02:29:17 +0100 Subject: [PATCH] Update CMakeLists.txt --- CMakeLists.txt | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f5f5cf58..b852d93c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,23 +29,13 @@ if(POLICY CMP0167) endif() include(DocBuilder) -option (USE_CCACHE "Use ccache if a usable instance is found" ON) +option (USE_CCACHE "Use ccache if a usable instance is found" OFF) if (USE_CCACHE) include(FindCcache) else() message(STATUS "ccache deselected") endif() -#option (USE_CCACHE "Use ccache if a usable instance is found" ON) -#if (USE_CCACHE) -# include(FindCcache) # Has to be included after the project() macro, to be able to read the CXX variable. -#else() -# message(STATUS "ccache deselected") -#endif() - - - - if(CMAKE_SYSTEM_NAME STREQUAL "iOS" OR CMAKE_SYSTEM_NAME STREQUAL "Android") add_definitions(-DMOBILE_WALLET_BUILD) if(CMAKE_SYSTEM_NAME STREQUAL "iOS" )