summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2017-06-27 22:28:13 -0400
committerGravatar bunnei2017-07-09 13:24:20 -0400
commitcc7583e03669fcd5d2585c8ab539f7308460ced8 (patch)
tree36401d347a670c0de6520cf12213d98f483914a0
parentMerge pull request #2815 from mailwl/bossp (diff)
downloadyuzu-cc7583e03669fcd5d2585c8ab539f7308460ced8.tar.gz
yuzu-cc7583e03669fcd5d2585c8ab539f7308460ced8.tar.xz
yuzu-cc7583e03669fcd5d2585c8ab539f7308460ced8.zip
externals: Add CPR as a submodule.
-rw-r--r--.gitmodules3
-rw-r--r--externals/CMakeLists.txt6
m---------externals/cpr0
3 files changed, 9 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules
index ac0df914d..493a0ad8f 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -28,3 +28,6 @@
28[submodule "externals/enet"] 28[submodule "externals/enet"]
29 path = externals/enet 29 path = externals/enet
30 url = https://github.com/lsalzman/enet 30 url = https://github.com/lsalzman/enet
31[submodule "cpr"]
32 path = externals/cpr
33 url = https://github.com/whoshuu/cpr.git
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index cc47166fc..ce10bda5e 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -4,6 +4,12 @@
4add_library(catch-single-include INTERFACE) 4add_library(catch-single-include INTERFACE)
5target_include_directories(catch-single-include INTERFACE catch/single_include) 5target_include_directories(catch-single-include INTERFACE catch/single_include)
6 6
7# CPR
8option(BUILD_TESTING OFF)
9option(BUILD_CPR_TESTS OFF)
10add_subdirectory(cpr)
11target_include_directories(cpr INTERFACE ./cpr/include)
12
7# Crypto++ 13# Crypto++
8add_subdirectory(cryptopp) 14add_subdirectory(cryptopp)
9 15
diff --git a/externals/cpr b/externals/cpr
new file mode 160000
Subproject b5758fbc88021437f968fe5174f121b8b92f5d5