From 002bd3918dffbb7580201846671db2d422ada96f Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Mon, 16 Jun 2025 21:04:10 +0200 Subject: [PATCH] fixup! chore: update to CPM --- cmake/tools.cmake | 2 +- documentation/CMakeLists.txt | 2 +- standalone/CMakeLists.txt | 2 +- test/CMakeLists.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmake/tools.cmake b/cmake/tools.cmake index 027609b..b7d70f6 100644 --- a/cmake/tools.cmake +++ b/cmake/tools.cmake @@ -10,7 +10,7 @@ if(NOT PROJECT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR) return() endif() -include(${CMAKE_CURRENT_LIST_DIR}/CPM.cmake) +include(${CMAKE_CURRENT_LIST_DIR}/get_cpm.cmake) # enables sanitizers support using the the `USE_SANITIZER` flag available values are: Address, Memory, MemoryWithOrigins, Undefined, Thread, # Leak, 'Address;Undefined' diff --git a/documentation/CMakeLists.txt b/documentation/CMakeLists.txt index 9652aa6..1b1d1fc 100644 --- a/documentation/CMakeLists.txt +++ b/documentation/CMakeLists.txt @@ -8,7 +8,7 @@ project(GlimpsesDocs) # ---- Dependencies ---- -include(../cmake/CPM.cmake) +include(../cmake/get_cpm.cmake) CPMAddPackage("gh:mosra/m.css#a0d292ec311b97fefd21e93cdefb60f88d19ede6") CPMAddPackage(NAME Glimpses SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/..) diff --git a/standalone/CMakeLists.txt b/standalone/CMakeLists.txt index bf9e55d..3af0e8b 100644 --- a/standalone/CMakeLists.txt +++ b/standalone/CMakeLists.txt @@ -12,7 +12,7 @@ include(../cmake/tools.cmake) # ---- Dependencies ---- -include(../cmake/CPM.cmake) +include(../cmake/get_cpm.cmake) CPMAddPackage(NAME Glimpses SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/..) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 21dc941..0bf5ae3 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -16,7 +16,7 @@ include(../cmake/tools.cmake) # ---- Dependencies ---- -include(../cmake/CPM.cmake) +include(../cmake/get_cpm.cmake) # CPMAddPackage("gh:doctest/doctest@2.4.9") CPMAddPackage("gh:TheLartians/Format.cmake@1.7.3")