Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
c07450da
Commit
c07450da
authored
Jan 30, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Require include dir for predefined OpenSSL lib
parent
2f04ab2b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
CMakeLists.txt
CMakeLists.txt
+5
-0
No files found.
CMakeLists.txt
View file @
c07450da
...
@@ -574,7 +574,12 @@ add_optional_caf_lib(io)
...
@@ -574,7 +574,12 @@ add_optional_caf_lib(io)
# build SSL module if OpenSSL library is available or if a parent project
# build SSL module if OpenSSL library is available or if a parent project
# defined OPENSSL_LIBRARIES for us
# defined OPENSSL_LIBRARIES for us
if
(
DEFINED OPENSSL_LIBRARIES
)
if
(
DEFINED OPENSSL_LIBRARIES
)
if
(
NOT OPENSSL_INCLUDE_DIR
)
message
(
FATAL_ERROR
"got OPENSSL_LIBRARIES predefined but no OPENSSL_INCLUDE_DIR"
)
endif
()
message
(
STATUS
"use OPENSSL_LIBRARIES provided by parent:
${
OPENSSL_LIBRARIES
}
"
)
message
(
STATUS
"use OPENSSL_LIBRARIES provided by parent:
${
OPENSSL_LIBRARIES
}
"
)
message
(
STATUS
"use OPENSSL_INCLUDE_DIR provided by parent:
${
OPENSSL_INCLUDE_DIR
}
"
)
include_directories
(
BEFORE
${
OPENSSL_INCLUDE_DIR
}
)
add_optional_caf_lib
(
openssl
)
add_optional_caf_lib
(
openssl
)
elseif
(
NOT CAF_NO_OPENSSL
)
elseif
(
NOT CAF_NO_OPENSSL
)
find_package
(
OpenSSL
)
find_package
(
OpenSSL
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment