aboutsummaryrefslogtreecommitdiffstats
path: root/emu-radio/cmake/Modules/FindWebsocketpp.cmake
diff options
context:
space:
mode:
authorJordan Augé <jordan.auge+fdio@email.com>2017-02-24 14:58:01 +0100
committerJordan Augé <jordan.auge+fdio@cisco.com>2017-02-24 18:36:29 +0000
commit85a341d645b57b7cd88a26ed2ea0a314704240ea (patch)
treebdda2b35003aae20103a796f86daced160b8a730 /emu-radio/cmake/Modules/FindWebsocketpp.cmake
parent9b30fc10fb1cbebe651e5a107e8ca5b24de54675 (diff)
Initial commit: vICN
Change-Id: I7ce66c4e84a6a1921c63442f858b49e083adc7a7 Signed-off-by: Jordan Augé <jordan.auge+fdio@cisco.com>
Diffstat (limited to 'emu-radio/cmake/Modules/FindWebsocketpp.cmake')
-rw-r--r--emu-radio/cmake/Modules/FindWebsocketpp.cmake31
1 files changed, 31 insertions, 0 deletions
diff --git a/emu-radio/cmake/Modules/FindWebsocketpp.cmake b/emu-radio/cmake/Modules/FindWebsocketpp.cmake
new file mode 100644
index 00000000..32b58035
--- /dev/null
+++ b/emu-radio/cmake/Modules/FindWebsocketpp.cmake
@@ -0,0 +1,31 @@
+# Copyright (C) 2007-2009 LuaDist.
+# Created by Peter Kapec <kapecp@gmail.com>
+# Redistribution and use of this file is allowed according to the terms of the MIT license.
+# For details see the COPYRIGHT file distributed with LuaDist.
+# Note:
+# Searching headers and libraries is very simple and is NOT as powerful as scripts
+# distributed with CMake, because LuaDist defines directories to search for.
+# Everyone is encouraged to contact the author with improvements. Maybe this file
+# becomes part of CMake distribution sometimes.
+
+# - Find LIBWEBSOCKETPP
+# Find the native WEBSOCKETPP headers and libraries.
+#
+# WEBSOCKETPP_INCLUDE_DIRS - where to find sqlite3.h, etc.
+# WEBSOCKETPP_FOUND - True if LIBWEBSOCKETPP found.
+
+# Look for the header file.
+FIND_PATH(WEBSOCKETPP_INCLUDE_DIR websocketpp)
+
+# Handle the QUIETLY and REQUIRED arguments and set WEBSOCKETPP_FOUND to TRUE if all listed variables are TRUE.
+INCLUDE(FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(WEBSOCKETPP DEFAULT_MSG WEBSOCKETPP_INCLUDE_DIR)
+
+# Copy the results to the output variables.
+IF(WEBSOCKETPP_FOUND)
+ SET(WEBSOCKETPP_INCLUDE_DIRS ${WEBSOCKETPP_INCLUDE_DIR})
+ELSE(WEBSOCKETPP_FOUND)
+ SET(WEBSOCKETPP_INCLUDE_DIRS)
+ENDIF(WEBSOCKETPP_FOUND)
+
+MARK_AS_ADVANCED(WEBSOCKETPP_INCLUDE_DIRS)