mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
36 lines
900 B
CMake
36 lines
900 B
CMake
|
# Dependencies
|
||
|
|
||
|
if(BUILD_EXAMPLES OR BUILD_TESTING)
|
||
|
find_package(Tcmalloc)
|
||
|
find_package(Threads)
|
||
|
|
||
|
find_program(CCACHE_FOUND ccache)
|
||
|
if(CCACHE_FOUND)
|
||
|
message("Found ccache ${CCACHE_FOUND}")
|
||
|
message("Using ccache to speed up compilation")
|
||
|
set(ENV{CCACHE_CPP2} "yes")
|
||
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
|
||
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
|
||
|
endif(CCACHE_FOUND)
|
||
|
|
||
|
if (MSVC)
|
||
|
set(Boost_USE_STATIC_LIBS ON)
|
||
|
find_package( Boost 1.52 COMPONENTS system thread regex REQUIRED )
|
||
|
else()
|
||
|
find_package( Boost 1.52 COMPONENTS system thread REQUIRED )
|
||
|
endif()
|
||
|
|
||
|
if(Boost_FOUND)
|
||
|
include_directories(${Boost_INCLUDE_DIR})
|
||
|
endif()
|
||
|
|
||
|
endif()
|
||
|
|
||
|
if(BUILD_EXAMPLES)
|
||
|
# OpenSSL is required at runtime dynamically by examples
|
||
|
find_package(OpenSSL)
|
||
|
if(OPENSSL_FOUND)
|
||
|
include_directories(${OPENSSL_INCLUDE_DIR})
|
||
|
endif()
|
||
|
|
||
|
endif()
|