mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 06:09:52 -06:00
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")
|