-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwt-config.cmake.in
More file actions
20 lines (19 loc) · 931 Bytes
/
wt-config.cmake.in
File metadata and controls
20 lines (19 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
if(@_WTCONFIG_CMAKE_FIND_BOOST@)
# Find Boost
set(Boost_USE_STATIC_LIBS @Boost_USE_STATIC_LIBS@)
set(Boost_USE_MULTITHREADED @Boost_USE_MULTITHREADED@)
find_package(Boost QUIET
COMPONENTS "@Boost_COMPONENTS@")
endif()
# Required target
include(${CMAKE_CURRENT_LIST_DIR}/wt-target-wt.cmake)
# Optional targets
include(${CMAKE_CURRENT_LIST_DIR}/wt-target-test.cmake OPTIONAL)
include(${CMAKE_CURRENT_LIST_DIR}/wt-target-http.cmake OPTIONAL)
include(${CMAKE_CURRENT_LIST_DIR}/wt-target-fcgi.cmake OPTIONAL)
include(${CMAKE_CURRENT_LIST_DIR}/wt-target-isapi.cmake OPTIONAL)
include(${CMAKE_CURRENT_LIST_DIR}/wt-target-dbo.cmake OPTIONAL)
include(${CMAKE_CURRENT_LIST_DIR}/wt-target-dbosqlite3.cmake OPTIONAL)
include(${CMAKE_CURRENT_LIST_DIR}/wt-target-dbopostgres.cmake OPTIONAL)
include(${CMAKE_CURRENT_LIST_DIR}/wt-target-dbofirebird.cmake OPTIONAL)
include(${CMAKE_CURRENT_LIST_DIR}/wt-target-dbomysql.cmake OPTIONAL)