aboutsummaryrefslogtreecommitdiff
path: root/CMake
diff options
context:
space:
mode:
authorRemo E <remo.eichenberger@gmail.com>2016-07-21 11:28:54 +0200
committerDaniel Stenberg <daniel@haxx.se>2016-10-10 19:47:31 +0200
commitd522ff4690f373721e014dca676f8c73da428383 (patch)
tree2acfba202157b98a7e4b825b98066ebc6d8aa1c9 /CMake
parenteb5199317ee729ab1893fc629a8f4f0ca7f7aa1e (diff)
cmake: add nghttp2 support
Closes #922
Diffstat (limited to 'CMake')
-rw-r--r--CMake/FindNGHTTP2.cmake18
1 files changed, 18 insertions, 0 deletions
diff --git a/CMake/FindNGHTTP2.cmake b/CMake/FindNGHTTP2.cmake
new file mode 100644
index 000000000..4e566cf02
--- /dev/null
+++ b/CMake/FindNGHTTP2.cmake
@@ -0,0 +1,18 @@
+include(FindPackageHandleStandardArgs)
+
+find_path(NGHTTP2_INCLUDE_DIR "nghttp2/nghttp2.h")
+
+find_library(NGHTTP2_LIBRARY NAMES nghttp2)
+
+find_package_handle_standard_args(NGHTTP2
+ FOUND_VAR
+ NGHTTP2_FOUND
+ REQUIRED_VARS
+ NGHTTP2_LIBRARY
+ NGHTTP2_INCLUDE_DIR
+ FAIL_MESSAGE
+ "Could NOT find NGHTTP2"
+)
+
+set(NGHTTP2_INCLUDE_DIRS ${NGHTTP2_INCLUDE_DIR} )
+set(NGHTTP2_LIBRARIES ${NGHTTP2_LIBRARY})