externals: Add CPR as a submodule.
This commit is contained in:
parent
669757a97b
commit
cc7583e036
3 changed files with 10 additions and 0 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -28,3 +28,6 @@
|
||||||
[submodule "externals/enet"]
|
[submodule "externals/enet"]
|
||||||
path = externals/enet
|
path = externals/enet
|
||||||
url = https://github.com/lsalzman/enet
|
url = https://github.com/lsalzman/enet
|
||||||
|
[submodule "cpr"]
|
||||||
|
path = externals/cpr
|
||||||
|
url = https://github.com/whoshuu/cpr.git
|
||||||
|
|
6
externals/CMakeLists.txt
vendored
6
externals/CMakeLists.txt
vendored
|
@ -4,6 +4,12 @@
|
||||||
add_library(catch-single-include INTERFACE)
|
add_library(catch-single-include INTERFACE)
|
||||||
target_include_directories(catch-single-include INTERFACE catch/single_include)
|
target_include_directories(catch-single-include INTERFACE catch/single_include)
|
||||||
|
|
||||||
|
# CPR
|
||||||
|
option(BUILD_TESTING OFF)
|
||||||
|
option(BUILD_CPR_TESTS OFF)
|
||||||
|
add_subdirectory(cpr)
|
||||||
|
target_include_directories(cpr INTERFACE ./cpr/include)
|
||||||
|
|
||||||
# Crypto++
|
# Crypto++
|
||||||
add_subdirectory(cryptopp)
|
add_subdirectory(cryptopp)
|
||||||
|
|
||||||
|
|
1
externals/cpr
vendored
Submodule
1
externals/cpr
vendored
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit b5758fbc88021437f968fe5174f121b8b92f5d5c
|
Loading…
Reference in a new issue