Crow/cmake/CrowConfig.cmake.in
2021-09-01 09:29:12 +02:00

20 lines
443 B
CMake

@PACKAGE_INIT@
set(CROW_ENABLE_COMPRESSION @CROW_ENABLE_COMPRESSION@)
set(CROW_ENABLE_SSL @CROW_ENABLE_SSL@)
include(CMakeFindDependencyMacro)
find_dependency(Boost 1.64 COMPONENTS system date_time)
find_dependency(Threads)
if(CROW_ENABLE_COMPRESSION)
find_dependency(ZLIB)
endif()
if(CROW_ENABLE_SSL)
find_dependency(OpenSSL)
endif()
include("${CMAKE_CURRENT_LIST_DIR}/CrowTargets.cmake")
check_required_components("@PROJECT_NAME@")