diff options
author | selsta <selsta@sent.at> | 2021-05-09 22:22:17 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-08-01 15:47:08 +0200 |
commit | 1565bcb1fb17ff632209994fbb7f2649e04819ab (patch) | |
tree | e2abf981191b7179e046b03a5515caec5d06f355 | |
parent | cmake: treat warnings as error in compiler flag tests (diff) | |
download | monero-1565bcb1fb17ff632209994fbb7f2649e04819ab.tar.xz |
epee: include public openssl header in cmake
-rw-r--r-- | contrib/epee/src/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/epee/src/CMakeLists.txt b/contrib/epee/src/CMakeLists.txt index 6e0af6730..5640f5bb0 100644 --- a/contrib/epee/src/CMakeLists.txt +++ b/contrib/epee/src/CMakeLists.txt @@ -72,3 +72,9 @@ if (USE_READLINE AND (GNU_READLINE_FOUND OR (DEPENDS AND NOT MINGW))) PRIVATE ${GNU_READLINE_LIBRARY}) endif() + +target_include_directories(epee + PUBLIC + "${EPEE_INCLUDE_DIR_BASE}" + "${OPENSSL_INCLUDE_DIR}") + |