15 lines
505 B
CMake
15 lines
505 B
CMake
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
#
|
|
# Libwebsockets is NOT generated: it arrives via find_package(), not
|
|
# xo_dependency(), and xo_export_cmake_config() only knows about xo deps.
|
|
# Any other external package this subsystem needs has to be listed here too.
|
|
find_dependency(Libwebsockets)
|
|
|
|
@XO_FIND_DEPENDENCY_BLOCK@
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Share.cmake")
|
|
check_required_components("@PROJECT_NAME@")
|