externals: Add CPR as a submodule.
This commit is contained in:
parent
669757a97b
commit
cc7583e036
|
@ -28,3 +28,6 @@
|
|||
[submodule "externals/enet"]
|
||||
path = externals/enet
|
||||
url = https://github.com/lsalzman/enet
|
||||
[submodule "cpr"]
|
||||
path = externals/cpr
|
||||
url = https://github.com/whoshuu/cpr.git
|
||||
|
|
|
@ -4,6 +4,12 @@
|
|||
add_library(catch-single-include INTERFACE)
|
||||
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++
|
||||
add_subdirectory(cryptopp)
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Subproject commit b5758fbc88021437f968fe5174f121b8b92f5d5c
|
Loading…
Reference in New Issue