27 lines
1.3 KiB
CMake
27 lines
1.3 KiB
CMake
include(CMakeFindDependencyMacro)
|
|
find_dependency(unofficial-usockets CONFIG)
|
|
if(NOT "@UWS_NO_LIBDEFLATE@")
|
|
find_dependency(libdeflate)
|
|
endif()
|
|
if(NOT "@UWS_NO_ZLIB@")
|
|
find_dependency(ZLIB)
|
|
endif()
|
|
|
|
if(NOT TARGET unofficial::uwebsockets::uwebsockets)
|
|
add_library(unofficial::uwebsockets::uwebsockets INTERFACE IMPORTED)
|
|
target_compile_features(unofficial::uwebsockets::uwebsockets INTERFACE cxx_std_17)
|
|
get_filename_component(_uws_include_dir "../../include" ABSOLUTE BASE_DIR "${CMAKE_CURRENT_LIST_DIR}")
|
|
target_include_directories(unofficial::uwebsockets::uwebsockets INTERFACE "${_uws_include_dir}")
|
|
unset(_uws_include_dir)
|
|
target_link_libraries(unofficial::uwebsockets::uwebsockets INTERFACE $<LINK_ONLY:unofficial::usockets::usockets>)
|
|
if(NOT "@UWS_NO_LIBDEFLATE@")
|
|
target_compile_definitions(unofficial::uwebsockets::uwebsockets INTERFACE UWS_USE_LIBDEFLATE)
|
|
target_link_libraries(unofficial::uwebsockets::uwebsockets INTERFACE $<IF:$<TARGET_EXISTS:libdeflate::libdeflate_shared>,libdeflate::libdeflate_shared,libdeflate::libdeflate_static>)
|
|
endif()
|
|
if("@UWS_NO_ZLIB@")
|
|
target_compile_definitions(unofficial::uwebsockets::uwebsockets INTERFACE UWS_NO_ZLIB)
|
|
else()
|
|
target_link_libraries(unofficial::uwebsockets::uwebsockets INTERFACE ZLIB::ZLIB)
|
|
endif()
|
|
endif()
|