Skip to content
Snippets Groups Projects
Commit 63b40d3e authored by Adrien Béraud's avatar Adrien Béraud
Browse files

cmake: check library paths

parent 21f5918a
No related branches found
No related tags found
No related merge requests found
...@@ -60,8 +60,15 @@ if (OPENDHT_LTO) ...@@ -60,8 +60,15 @@ if (OPENDHT_LTO)
endif () endif ()
endif () endif ()
if (MSGPACK_INCLUDE_DIRS)
include_directories (SYSTEM "${MSGPACK_INCLUDE_DIRS}") include_directories (SYSTEM "${MSGPACK_INCLUDE_DIRS}")
include_directories (SYSTEM "${GNUTLS_INCLUDE_DIRS}" "${Nettle_INCLUDE_DIRS}") endif ()
if (GNUTLS_INCLUDE_DIRS)
include_directories (SYSTEM "${GNUTLS_INCLUDE_DIRS}")
endif ()
if (Nettle_INCLUDE_DIRS)
include_directories (SYSTEM "${Nettle_INCLUDE_DIRS}")
endif ()
link_directories (${Nettle_LIBRARY_DIRS}) link_directories (${Nettle_LIBRARY_DIRS})
include_directories ( include_directories (
./ ./
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment