mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 22:47:26 +03:00
29e3637410
Summary: We use Re2 in D22877942 for parsing multiple path prefix data fetch logging, this introduces the dependency for eden's opensource builds. Reviewed By: chadaustin Differential Revision: D23431175 fbshipit-source-id: 44b399e92cb89ba1403295ecd10bc8f8d769b02c
144 lines
5.0 KiB
CMake
144 lines
5.0 KiB
CMake
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This software may be used and distributed according to the terms of the
|
|
# GNU General Public License version 2.
|
|
|
|
include(FindPkgConfig)
|
|
|
|
set(CMAKE_THREAD_PREFER_PTHREAD ON)
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
find_package(Threads REQUIRED)
|
|
|
|
find_package(gflags CONFIG REQUIRED)
|
|
include_directories(${GFLAGS_INCLUDE_DIR})
|
|
|
|
find_package(glog CONFIG REQUIRED)
|
|
include_directories(${GLOG_INCLUDE_DIR})
|
|
|
|
# We need to probe for libevent because the current stable version
|
|
# of libevent doesn't publish the -L libdir in its exported interface
|
|
# which means that folly simply exports `event` to us, leaving us
|
|
# unable to resolve and link it. Pulling in the package via its
|
|
# config causes the event target to be defined and satisfies the
|
|
# linker.
|
|
find_package(Libevent CONFIG QUIET)
|
|
|
|
find_package(fmt CONFIG REQUIRED)
|
|
find_package(folly CONFIG REQUIRED)
|
|
include_directories(${FOLLY_INCLUDE_DIR})
|
|
|
|
find_package(fb303 CONFIG REQUIRED)
|
|
include_directories(${FB303_INCLUDE_DIR})
|
|
|
|
find_package(fizz CONFIG REQUIRED)
|
|
include_directories(${FIZZ_INCLUDE_DIR})
|
|
|
|
find_package(wangle CONFIG REQUIRED)
|
|
include_directories(${WANGLE_INCLUDE_DIR})
|
|
|
|
find_package(FBThrift CONFIG REQUIRED COMPONENTS cpp2 py)
|
|
include_directories(${FBTHRIFT_INCLUDE_DIR})
|
|
|
|
find_package(GMock MODULE REQUIRED)
|
|
include_directories(${GMOCK_INCLUDEDIR} ${LIBGMOCK_INCLUDE_DIR})
|
|
include(GoogleTest)
|
|
enable_testing()
|
|
|
|
find_package(OpenSSL MODULE REQUIRED)
|
|
|
|
find_package(SELinux)
|
|
set(EDEN_HAVE_SELINUX ${SELINUX_FOUND})
|
|
|
|
if("${ENABLE_GIT}" STREQUAL "AUTO")
|
|
find_package(LibGit2 MODULE)
|
|
set(EDEN_HAVE_GIT "${LibGit2_FOUND}")
|
|
elseif(ENABLE_GIT)
|
|
find_package(LibGit2 MODULE REQUIRED)
|
|
set(EDEN_HAVE_GIT "${LibGit2_FOUND}")
|
|
else()
|
|
set(EDEN_HAVE_GIT OFF)
|
|
endif()
|
|
|
|
find_package(Re2 MODULE REQUIRED)
|
|
include_directories(${RE2_INCLUDE_DIR})
|
|
|
|
# The following packages ship with their own CMake configuration files
|
|
find_package(cpptoml CONFIG REQUIRED)
|
|
find_package(gflags CONFIG REQUIRED)
|
|
|
|
# This is rather gross. Eden doesn't directly depend upon Snappy but does so
|
|
# indirectly from both folly and rocksdb.
|
|
# Rocksdb has some custom logic to find snappy but unfortunately exports a synthesized
|
|
# target named `snappy::snappy` instead of using the CONFIG provided by snappy itself,
|
|
# and also does not export a way to resolve its own custom definition.
|
|
# We use the `Snappy::snappy` (note that the first `S` is uppercase!) exported by
|
|
# snappy and synthesize our own `snappy::snappy` to satisfy the linkage.
|
|
# Even though we tend to build RelWithDebInfo we need to allow this to work for the
|
|
# other common cmake build modes.
|
|
# This section of logic can be removed once we've fixed up the behavior in RocksDB.
|
|
|
|
find_package(Snappy CONFIG REQUIRED)
|
|
get_target_property(SNAPPY_LIBS_RELWITHDEBINFO Snappy::snappy IMPORTED_LOCATION_RELWITHDEBINFO)
|
|
get_target_property(SNAPPY_LIBS_RELEASE Snappy::snappy IMPORTED_LOCATION_RELEASE)
|
|
get_target_property(SNAPPY_LIBS_DEBUG Snappy::snappy IMPORTED_LOCATION_DEBUG)
|
|
get_target_property(SNAPPY_INCLUDES Snappy::snappy INTERFACE_INCLUDE_DIRECTORIES)
|
|
add_library(snappy::snappy UNKNOWN IMPORTED)
|
|
set_target_properties(snappy::snappy PROPERTIES
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
|
|
IMPORTED_LOCATION_RELWITHDEBINFO "${SNAPPY_LIBS_RELWITHDEBINFO}"
|
|
IMPORTED_LOCATION_RELEASE "${SNAPPY_LIBS_RELEASE}"
|
|
IMPORTED_LOCATION_DEBUG "${SNAPPY_LIBS_DEBUG}"
|
|
INTERFACE_INCLUDE_DIRECTORIES "${SNAPPY_INCLUDES}"
|
|
)
|
|
|
|
# Same as above for LZ4.
|
|
|
|
find_package(LZ4 MODULE REQUIRED)
|
|
get_target_property(LZ4_LIBS_RELWITHDEBINFO Snappy::snappy IMPORTED_LOCATION_RELWITHDEBINFO)
|
|
get_target_property(LZ4_LIBS_RELEASE Snappy::snappy IMPORTED_LOCATION_RELEASE)
|
|
get_target_property(LZ4_LIBS_DEBUG Snappy::snappy IMPORTED_LOCATION_DEBUG)
|
|
get_target_property(LZ4_INCLUDES Snappy::snappy INTERFACE_INCLUDE_DIRECTORIES)
|
|
add_library(lz4::lz4 UNKNOWN IMPORTED)
|
|
set_target_properties(lz4::lz4 PROPERTIES
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
|
|
IMPORTED_LOCATION_RELWITHDEBINFO "${LZ4_LIBS_RELWITHDEBINFO}"
|
|
IMPORTED_LOCATION_RELEASE "${LZ4_LIBS_RELEASE}"
|
|
IMPORTED_LOCATION_DEBUG "${LZ4_LIBS_DEBUG}"
|
|
INTERFACE_INCLUDE_DIRECTORIES "${LZ4_INCLUDES}"
|
|
)
|
|
|
|
# TODO: It shouldn't be too hard to turn RocksDB and sqlite3 into optional
|
|
# dependencies, since we have alternate LocalStore implementations.
|
|
find_package(RocksDB CONFIG REQUIRED)
|
|
set(EDEN_HAVE_ROCKSDB ${RocksDB_FOUND})
|
|
find_package(Sqlite3 REQUIRED)
|
|
set(EDEN_HAVE_SQLITE3 ${SQLITE3_FOUND})
|
|
|
|
find_package(python-toml REQUIRED)
|
|
|
|
# pexpect is used by some of the integration tests.
|
|
# If we don't find it we simply won't run those tests.
|
|
find_package(pexpect)
|
|
|
|
find_package(CURL)
|
|
set(EDEN_HAVE_CURL ${CURL_FOUND})
|
|
|
|
if (WIN32)
|
|
find_package(Prjfs MODULE REQUIRED)
|
|
endif()
|
|
|
|
set(EDEN_HAVE_MONONOKE OFF)
|
|
|
|
# TODO(strager): Support systemd in the opensource build.
|
|
set(EDEN_HAVE_SYSTEMD OFF)
|
|
|
|
if (WIN32)
|
|
set(DEFAULT_ETC_EDEN_DIR "C:/tools/eden/config")
|
|
else()
|
|
set(DEFAULT_ETC_EDEN_DIR "/etc/eden")
|
|
endif()
|
|
set(
|
|
ETC_EDEN_DIR "${DEFAULT_ETC_EDEN_DIR}" CACHE STRING
|
|
"The directory for system-wide EdenFS configuration files."
|
|
)
|