9 lines
153 B
CMake
9 lines
153 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
WithProject
|
|
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/WithProject
|
|
)
|
|
|
|
FetchContent_MakeAvailable(WithProject)
|