1# - Config file for the Libevent package 2# It defines the following variables 3# LIBWEBSOCKETS_INCLUDE_DIRS - include directories for FooBar 4# LIBWEBSOCKETS_LIBRARIES - libraries to link against 5 6# Get the path of the current file. 7get_filename_component(LWS_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) 8 9# Set the include directories. 10set(LIBWEBSOCKETS_INCLUDE_DIRS "@LWS__INCLUDE_DIRS@") 11 12# Include the project Targets file, this contains definitions for IMPORTED targets. 13include(${LWS_CMAKE_DIR}/LibwebsocketsTargets.cmake) 14 15# IMPORTED targets from LibwebsocketsTargets.cmake 16set(LIBWEBSOCKETS_LIBRARIES websockets websockets_shared) 17 18