mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
17f561f221
This is needed for some compiler versions where `absl::string_view` == `std::string_view`. PiperOrigin-RevId: 367392064 Change-Id: Id91d23510501df4745f386475ef9049d94062e1b
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 b315753c0b8b4aa4e3e1479375eddb518393bab6
|
|
CACHE STRING "") # 2021-02-18
|
|
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()
|