1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00

Forgot to add actual Config templates.

This commit is contained in:
Joakim Soderberg 2014-01-13 13:00:16 +01:00
parent 23982ee23e
commit 53815d769b
3 changed files with 28 additions and 1 deletions

1
.gitignore vendored
View file

@ -29,7 +29,6 @@ install-sh
configure
compile
config.guess
*.in
*~
*.orig
autom4te.cache/

View file

@ -0,0 +1,17 @@
# - Config file for the Libevent package
# It defines the following variables
# LIBWEBSOCKETS_INCLUDE_DIRS - include directories for FooBar
# LIBWEBSOCKETS_LIBRARIES - libraries to link against
# Get the path of the current file.
get_filename_component(LWS_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
# Set the include directories.
set(LWS_INCLUDE_DIRS "@LWS__INCLUDE_DIRS@")
# Include the project Targets file, this contains definitions for IMPORTED targets.
include(${LWS_CMAKE_DIR}/LibwebsocketsTargets.cmake)
# IMPORTED targets from LibwebsocketsTargets.cmake
set(LIBWEBSOCKETS_LIBRARIES websockets websockets_shared)

View file

@ -0,0 +1,11 @@
set(PACKAGE_VERSION "@EVENT_PACKAGE_VERSION@")
# Check whether the requested PACKAGE_FIND_VERSION is compatible
if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}")
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if ("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}")
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()