mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
0199dd9f1b
This is needed so that the caller can add a dependency on the cache file. Fixes: #20668
15 lines
327 B
CMake
15 lines
327 B
CMake
cmake_minimum_required(VERSION 3.12)
|
|
project(External NONE)
|
|
|
|
if (DEFINED cache_arg)
|
|
message("configured with: ${cache_arg}")
|
|
else ()
|
|
message("cache_arg is undefined")
|
|
endif ()
|
|
|
|
if (DEFINED second_cache_arg)
|
|
message("configured again with: ${second_cache_arg}")
|
|
else ()
|
|
message("second_cache_arg is undefined")
|
|
endif ()
|