aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2017-08-05 14:28:50 +0200
committerJaquee <jaquee.monero@gmail.com>2017-10-15 17:25:26 +0200
commiteec1013785d608b6087b03845bd38da29b13b402 (patch)
treee3b782ebc3dc8b31d5b9f68393e51640023d2f34
parentMerge pull request #2469 (diff)
downloadmonero-eec1013785d608b6087b03845bd38da29b13b402.tar.xz
CMakeLists.txt - Add openssl include dir
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1f74f59e3..69eb170a7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -337,6 +337,8 @@ if (APPLE AND NOT IOS)
endif()
find_package(OpenSSL REQUIRED)
+message(STATUS "Using OpenSSL include dir at ${OPENSSL_INCLUDE_DIR}")
+include_directories(${OPENSSL_INCLUDE_DIR})
if(STATIC AND NOT IOS)
if(UNIX)
set(OPENSSL_LIBRARIES "${OPENSSL_LIBRARIES};${CMAKE_DL_LIBS};${CMAKE_THREAD_LIBS_INIT}")