-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump the version of CPM to 0.38.1 * feature: added CPM download status This is very useful in shaky network solutions. We want both a success and a failure message, to determine if the download was successful. * feature: compare CPM against a given checksum This is more comprehensive than just comparing against an empty file. * bump the version of Ccache.cmake to 1.2.4 * bump the version of StableCoder/cmake-scripts to 23.04 * update to use new get_cpm.cmake script --------- Co-authored-by: Lars Melchior <[email protected]>
- Loading branch information
1 parent
f0b5bdb
commit 776d4f3
Showing
2 changed files
with
12 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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#1f822d1fc87c8d7720c074cde8a278b44963c354") | ||
CPMAddPackage("gh:StableCoder/cmake-scripts@23.04") | ||
|
||
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/[email protected].3") | ||
CPMAddPackage("gh:TheLartians/[email protected].4") | ||
endif() |