summaryrefslogtreecommitdiffstats
path: root/externals
diff options
context:
space:
mode:
authorfearlessTobi <thm.frey@gmail.com>2018-09-19 20:04:45 +0200
committerfearlessTobi <thm.frey@gmail.com>2018-10-02 15:30:48 +0200
commitaa484688623db59df3ef334a63eff98d98e362f3 (patch)
tree23c2ccdbe5e562e281e1e96d306036f724856461 /externals
parentweb_backend: protect jwt cache with a mutex (diff)
downloadyuzu-aa484688623db59df3ef334a63eff98d98e362f3.tar
yuzu-aa484688623db59df3ef334a63eff98d98e362f3.tar.gz
yuzu-aa484688623db59df3ef334a63eff98d98e362f3.tar.bz2
yuzu-aa484688623db59df3ef334a63eff98d98e362f3.tar.lz
yuzu-aa484688623db59df3ef334a63eff98d98e362f3.tar.xz
yuzu-aa484688623db59df3ef334a63eff98d98e362f3.tar.zst
yuzu-aa484688623db59df3ef334a63eff98d98e362f3.zip
Diffstat (limited to 'externals')
-rw-r--r--externals/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index 6a573881d..1261062e8 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -80,9 +80,9 @@ endif()
if (ENABLE_WEB_SERVICE)
# LibreSSL
set(LIBRESSL_SKIP_INSTALL ON CACHE BOOL "")
- add_definitions(-DHAVE_INET_NTOP)
add_subdirectory(libressl EXCLUDE_FROM_ALL)
target_include_directories(ssl INTERFACE ./libressl/include)
+ target_compile_definitions(ssl PRIVATE -DHAVE_INET_NTOP)
# lurlparser
add_subdirectory(lurlparser EXCLUDE_FROM_ALL)