diff options
author | fearlessTobi <thm.frey@gmail.com> | 2018-09-19 20:04:45 +0200 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2018-10-02 15:30:48 +0200 |
commit | aa484688623db59df3ef334a63eff98d98e362f3 (patch) | |
tree | 23c2ccdbe5e562e281e1e96d306036f724856461 /externals/CMakeLists.txt | |
parent | web_backend: protect jwt cache with a mutex (diff) | |
download | yuzu-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/CMakeLists.txt')
-rw-r--r-- | externals/CMakeLists.txt | 2 |
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) |