mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
10 lines
340 B
CMake
10 lines
340 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(${RunCMake_TEST} NONE)
|
|
if(RunCMake_TEST STREQUAL "ParentVariableRoot")
|
|
message(STATUS "CMakeLists.txt: '${CMAKE_PARENT_LIST_FILE}'")
|
|
include(ParentVariableRoot/include1.cmake)
|
|
message(STATUS "CMakeLists.txt: '${CMAKE_PARENT_LIST_FILE}'")
|
|
return()
|
|
endif()
|
|
include(${RunCMake_TEST}.cmake)
|