mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-17 22:58:14 -05:00
16 lines
287 B
CMake
16 lines
287 B
CMake
|
|
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
|
||
|
|
|
||
|
|
project(CPMTest_Dependency)
|
||
|
|
|
||
|
|
# ---- Dependencies ----
|
||
|
|
|
||
|
|
include(FetchContent)
|
||
|
|
|
||
|
|
FetchContent_Declare(
|
||
|
|
Fibonacci
|
||
|
|
GIT_REPOSITORY https://github.com/cpm-cmake/testpack-fibonacci.git
|
||
|
|
GIT_TAG v2.0
|
||
|
|
)
|
||
|
|
|
||
|
|
FetchContent_MakeAvailable(Fibonacci)
|