12 lines
288 B
CMake
12 lines
288 B
CMake
include_guard(GLOBAL)
|
|
|
|
if(${CMAKE_VERSION} VERSION_LESS 3.21)
|
|
get_property(__parent_directory DIRECTORY PROPERTY PARENT_DIRECTORY)
|
|
if(NOT __parent_directory)
|
|
set(PROJECT_IS_TOP_LEVEL TRUE)
|
|
else()
|
|
set(PROJECT_IS_TOP_LEVEL FALSE)
|
|
endif()
|
|
unset(__parent_directory)
|
|
endif()
|