blob: 57a0f6e6b7b5981cadb07e325a1d105da5abcd25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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 ()
|