22 lines
545 B
CMake
22 lines
545 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(googletest
|
|
GIT_REPOSITORY "https://github.com/google/googletest.git"
|
|
GIT_TAG "release-1.11.0"
|
|
GIT_SHALLOW "True"
|
|
)
|
|
FetchContent_MakeAvailable(googletest)
|
|
|
|
FetchContent_Declare(jwt-cpp
|
|
GIT_REPOSITORY "https://github.com/Thalhammer/jwt-cpp.git"
|
|
GIT_TAG "v0.5.2"
|
|
GIT_SHALLOW "True"
|
|
)
|
|
FetchContent_MakeAvailable(jwt-cpp)
|
|
|
|
FetchContent_Declare(argparse
|
|
GIT_REPOSITORY "https://github.com/p-ranav/argparse.git"
|
|
GIT_TAG "v2.2"
|
|
GIT_SHALLOW "True"
|
|
)
|
|
FetchContent_MakeAvailable(argparse) |