summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/FetchContent/MakeAvailable.cmake
blob: a93f1f70da5861bd4569835931150ecf71112666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include(FetchContent)

FetchContent_Declare(
  WithProject
  SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/WithProject
)
FetchContent_Declare(
  WithoutProject
  SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/WithoutProject
)

# Order is important and will be verified by test output
FetchContent_MakeAvailable(WithProject WithoutProject)

get_property(addedWith GLOBAL PROPERTY FetchWithProject SET)
if(NOT addedWith)
  message(SEND_ERROR "Subdir with CMakeLists.txt not added")
endif()

include(${withoutproject_SOURCE_DIR}/confirmMessage.cmake)