mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
20 lines
443 B
CMake
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@")
|