From b59cb2dd7d5f87d1d5e88a92eee3e04e48a9ceb3 Mon Sep 17 00:00:00 2001 From: Dale Lukas Peterson Date: Mon, 29 Mar 2021 03:33:23 -0700 Subject: [PATCH] Update Ccache.cmake and cmake-scripts (#116) --- CMakeLists.txt | 2 +- cmake/tools.cmake | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9d0c5c5d..ac9f6362 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ endif() include(cmake/CPM.cmake) # PackageProject.cmake will be used to make our target installable -CPMAddPackage("gh:TheLartians/PackageProject.cmake@1.4.1") +CPMAddPackage("gh:TheLartians/PackageProject.cmake@1.6.0") CPMAddPackage( NAME fmt diff --git a/cmake/tools.cmake b/cmake/tools.cmake index 44f219c4..c73d8603 100644 --- a/cmake/tools.cmake +++ b/cmake/tools.cmake @@ -11,7 +11,7 @@ include(${CMAKE_CURRENT_LIST_DIR}/CPM.cmake) # enables sanitizers support using the the `USE_SANITIZER` flag available values are: Address, # Memory, MemoryWithOrigins, Undefined, Thread, Leak, 'Address;Undefined' if(USE_SANITIZER OR USE_STATIC_ANALYZER) - CPMAddPackage("gh:StableCoder/cmake-scripts#3d2d5a9fb26f0ce24e3e4eaeeff686ec2ecfb3fb") + CPMAddPackage("gh:StableCoder/cmake-scripts#1f822d1fc87c8d7720c074cde8a278b44963c354") if(USE_SANITIZER) include(${cmake-scripts_SOURCE_DIR}/sanitizers.cmake) @@ -62,5 +62,5 @@ endif() # enables CCACHE support through the USE_CCACHE flag possible values are: YES, NO or equivalent if(USE_CCACHE) - CPMAddPackage("gh:TheLartians/Ccache.cmake@1.2.1") + CPMAddPackage("gh:TheLartians/Ccache.cmake@1.2.2") endif()