mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-20 21:28:23 -05:00
a94355c7b7
Relates: #18754
13 lines
284 B
CMake
13 lines
284 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
WithProject
|
|
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/WithProject
|
|
)
|
|
|
|
message(STATUS "Before first")
|
|
FetchContent_MakeAvailable(WithProject)
|
|
message(STATUS "Between both")
|
|
FetchContent_MakeAvailable(WithProject)
|
|
message(STATUS "After last")
|