mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
65440dddd6
PiperOrigin-RevId: 251640007 Change-Id: Ied7b1c07c49c6574bc26591902c520a53b56b658
85 lines
2.6 KiB
CMake
85 lines
2.6 KiB
CMake
include(ExternalProject)
|
|
|
|
set_property(DIRECTORY PROPERTY EP_BASE Dependencies)
|
|
|
|
set(DEPENDENCIES)
|
|
set(EXTRA_CMAKE_ARGS)
|
|
|
|
ExternalProject_Add(absl
|
|
GIT_REPOSITORY https://github.com/abseil/abseil-cpp.git
|
|
GIT_TAG aa468ad75539619b47979911297efbb629c52e44 # 2019-05-07
|
|
# Just clone into directory
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
)
|
|
list(APPEND DEPENDENCIES absl)
|
|
|
|
ExternalProject_Add(gflags
|
|
GIT_REPOSITORY https://github.com/gflags/gflags.git
|
|
GIT_TAG 28f50e0fed19872e0fd50dd23ce2ee8cd759338e
|
|
CMAKE_ARGS -DGFLAGS_IS_SUBPROJECT=TRUE
|
|
INSTALL_COMMAND ""
|
|
)
|
|
list(APPEND DEPENDENCIES gflags)
|
|
|
|
ExternalProject_Add(glog
|
|
DEPENDS gflags
|
|
GIT_REPOSITORY https://github.com/google/glog.git
|
|
GIT_TAG 41f4bf9cbc3e8995d628b459f6a239df43c2b84a
|
|
CMAKE_ARGS
|
|
# Disable symbolizer
|
|
-DCMAKE_PREFIX_PATH= -DUNWIND_LIBRARY=
|
|
# getpwuid_r() cannot be linked statically with glibc
|
|
-DHAVE_PWD_H=
|
|
INSTALL_COMMAND ""
|
|
)
|
|
list(APPEND DEPENDENCIES glog)
|
|
|
|
ExternalProject_Add(googletest
|
|
GIT_REPOSITORY https://github.com/google/googletest.git
|
|
GIT_TAG 8ffb7e5c88b20a297a2e786c480556467496463b # 2019-05-30
|
|
# Just clone into directory
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
)
|
|
list(APPEND DEPENDENCIES googletest)
|
|
|
|
ExternalProject_Add(libunwind
|
|
URL https://github.com/libunwind/libunwind/releases/download/v1.2.1/libunwind-1.2.1.tar.gz
|
|
URL_HASH SHA256=3f3ecb90e28cbe53fba7a4a27ccce7aad188d3210bb1964a923a731a27a75acb
|
|
# Need to invoke a custom build, so just download and extract
|
|
CONFIGURE_COMMAND ./configure
|
|
--disable-documentation
|
|
--disable-minidebuginfo
|
|
--disable-shared
|
|
--enable-ptrace
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
BUILD_IN_SOURCE TRUE
|
|
)
|
|
list(APPEND DEPENDENCIES libunwind)
|
|
|
|
ExternalProject_Add(protobuf
|
|
GIT_REPOSITORY https://github.com/protocolbuffers/protobuf.git
|
|
GIT_TAG e08f01ce6a78a6cf2834dfa37281eb366eb0c5c3 # 2019-06-05
|
|
PREFIX ${CMAKE_CURRENT_BINARY_DIR}/Dependencies/Build/protobuf
|
|
SOURCE_SUBDIR cmake
|
|
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR>
|
|
-DCMAKE_BUILD_TYPE=@CMAKE_BUILD_TYPE@
|
|
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
|
|
-Dprotobuf_BUILD_TESTS=OFF
|
|
-Dprotobuf_BUILD_SHARED_LIBS=OFF
|
|
-Dprotobuf_WITH_ZLIB=OFF
|
|
)
|
|
list(APPEND DEPENDENCIES protobuf)
|
|
|
|
ExternalProject_Add(sandboxed_api
|
|
DEPENDS ${DEPENDENCIES}
|
|
SOURCE_DIR ${PROJECT_SOURCE_DIR}
|
|
CMAKE_ARGS -DUSE_SUPERBUILD=OFF ${EXTRA_CMAKE_ARGS}
|
|
INSTALL_COMMAND ""
|
|
BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|