Skip to content

Commit

Permalink
Disable ccache script
Browse files Browse the repository at this point in the history
  • Loading branch information
cavallium committed Sep 15, 2023
1 parent 1b9ac2b commit 13a3270
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ if (POLICY CMP0069)
endif()

# Configure CCache if available
find_program(CCACHE_FOUND ccache)
#find_program(CCACHE_FOUND ccache)
#set(CCACHE_FOUND 0)
if (CCACHE_FOUND)
message(STATUS "Found ccache")
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
else()
message(STATUS "Could NOT find ccache (this is NOT an error)")
endif()
#if (CCACHE_FOUND)
# message(STATUS "Found ccache")
# set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
# set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
#else()
# message(STATUS "Could NOT find ccache (this is NOT an error)")
#endif()

set(MEMPROF "" CACHE STRING "Use one of \"ON\", \"FAST\" or \"SAFE\" to enable memory profiling. \
Works under macOS and Linux when compiled using glibc. \
Expand Down

0 comments on commit 13a3270

Please sign in to comment.