aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cmake/tuklib_cpucores.cmake4
-rw-r--r--cmake/tuklib_physmem.cmake4
2 files changed, 4 insertions, 4 deletions
diff --git a/cmake/tuklib_cpucores.cmake b/cmake/tuklib_cpucores.cmake
index 5844e4b2..743d56b3 100644
--- a/cmake/tuklib_cpucores.cmake
+++ b/cmake/tuklib_cpucores.cmake
@@ -154,12 +154,12 @@ function(tuklib_cpucores_internal_check)
endfunction()
function(tuklib_cpucores TARGET_OR_ALL)
- if(NOT DEFINED CACHE{TUKLIB_CPUCORES_FOUND})
+ if(NOT DEFINED TUKLIB_CPUCORES_FOUND)
message(STATUS
"Checking how to detect the number of available CPU cores")
tuklib_cpucores_internal_check()
- if(DEFINED CACHE{TUKLIB_CPUCORES_DEFINITIONS})
+ if(DEFINED TUKLIB_CPUCORES_DEFINITIONS)
set(TUKLIB_CPUCORES_FOUND 1 CACHE INTERNAL "")
else()
set(TUKLIB_CPUCORES_FOUND 0 CACHE INTERNAL "")
diff --git a/cmake/tuklib_physmem.cmake b/cmake/tuklib_physmem.cmake
index ea5bcc46..f5ed8889 100644
--- a/cmake/tuklib_physmem.cmake
+++ b/cmake/tuklib_physmem.cmake
@@ -130,11 +130,11 @@ function(tuklib_physmem_internal_check)
endfunction()
function(tuklib_physmem TARGET_OR_ALL)
- if(NOT DEFINED CACHE{TUKLIB_PHYSMEM_FOUND})
+ if(NOT DEFINED TUKLIB_PHYSMEM_FOUND)
message(STATUS "Checking how to detect the amount of physical memory")
tuklib_physmem_internal_check()
- if(DEFINED CACHE{TUKLIB_PHYSMEM_DEFINITIONS})
+ if(DEFINED TUKLIB_PHYSMEM_DEFINITIONS)
set(TUKLIB_PHYSMEM_FOUND 1 CACHE INTERNAL "")
else()
set(TUKLIB_PHYSMEM_FOUND 0 CACHE INTERNAL "")