mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
11bb2c7fe2
PiperOrigin-RevId: 355587833 Change-Id: I40579d1d5a16a32a7228f440e6cca8862e2ee504
73 lines
2.6 KiB
CMake
73 lines
2.6 KiB
CMake
# Copyright 2019 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
set(workdir "${CMAKE_BINARY_DIR}/_deps/absl-populate")
|
|
|
|
set(SAPI_ABSL_GIT_REPOSITORY https://github.com/abseil/abseil-cpp.git
|
|
CACHE STRING "")
|
|
set(SAPI_ABSL_GIT_TAG 4fd9a1ec5077daac14eeee05df931d658ec0b7b8
|
|
CACHE STRING "") # 2020-11-19
|
|
set(SAPI_ABSL_SOURCE_DIR "${CMAKE_BINARY_DIR}/_deps/absl-src" CACHE STRING "")
|
|
set(SAPI_ABSL_BINARY_DIR "${CMAKE_BINARY_DIR}/_deps/absl-build" CACHE STRING "")
|
|
|
|
file(WRITE "${workdir}/CMakeLists.txt" "\
|
|
cmake_minimum_required(VERSION ${CMAKE_VERSION})
|
|
project(absl-populate NONE)
|
|
include(ExternalProject)
|
|
ExternalProject_Add(absl
|
|
GIT_REPOSITORY \"${SAPI_ABSL_GIT_REPOSITORY}\"
|
|
GIT_TAG \"${SAPI_ABSL_GIT_TAG}\"
|
|
SOURCE_DIR \"${SAPI_ABSL_SOURCE_DIR}\"
|
|
BINARY_DIR \"${SAPI_ABSL_BINARY_DIR}\"
|
|
CONFIGURE_COMMAND \"\"
|
|
BUILD_COMMAND \"\"
|
|
INSTALL_COMMAND \"\"
|
|
TEST_COMMAND \"\"
|
|
)
|
|
")
|
|
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
|
|
RESULT_VARIABLE error
|
|
WORKING_DIRECTORY "${workdir}")
|
|
if(error)
|
|
message(FATAL_ERROR "CMake step for ${PROJECT_NAME} failed: ${error}")
|
|
endif()
|
|
|
|
execute_process(COMMAND ${CMAKE_COMMAND} --build .
|
|
RESULT_VARIABLE error
|
|
WORKING_DIRECTORY "${workdir}")
|
|
if(error)
|
|
message(FATAL_ERROR "Build step for ${PROJECT_NAME} failed: ${error}")
|
|
endif()
|
|
|
|
set(_sapi_saved_CMAKE_CXX_STANDARD ${CMAKE_CXX_STANDARD})
|
|
set(_sapi_saved_BUILD_TESTING ${BUILD_TESTING})
|
|
|
|
set(CMAKE_CXX_STANDARD ${SAPI_CXX_STANDARD})
|
|
set(ABSL_USE_GOOGLETEST_HEAD OFF CACHE BOOL "" FORCE)
|
|
set(ABSL_RUN_TESTS OFF CACHE BOOL "" FORCE)
|
|
set(BUILD_TESTING OFF) # Avoid errors when re-configuring SAPI
|
|
set(ABSL_CXX_STANDARD ${SAPI_CXX_STANDARD} CACHE STRING "" FORCE)
|
|
set(ABSL_ENABLE_INSTALL ON CACHE BOOL "" FORCE)
|
|
|
|
add_subdirectory("${SAPI_ABSL_SOURCE_DIR}"
|
|
"${SAPI_ABSL_BINARY_DIR}" EXCLUDE_FROM_ALL)
|
|
|
|
if(_sapi_saved_BUILD_TESTING)
|
|
set(BUILD_TESTING "${_sapi_saved_BUILD_TESTING}")
|
|
endif()
|
|
if(_sapi_saved_CMAKE_CXX_STANDARD)
|
|
set(CMAKE_CXX_STANDARD "${_sapi_saved_CMAKE_CXX_STANDARD}")
|
|
endif()
|