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
64 lines
2.3 KiB
CMake
64 lines
2.3 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/gflags-populate")
|
|
|
|
set(SAPI_GFLAGS_GIT_REPOSITORY https://github.com/gflags/gflags.git
|
|
CACHE STRING "")
|
|
set(SAPI_GFLAGS_GIT_TAG addd749114fab4f24b7ea1e0f2f837584389e52c
|
|
CACHE STRING "") # 2020-03-18
|
|
set(SAPI_GFLAGS_SOURCE_DIR "${CMAKE_BINARY_DIR}/_deps/gflags-src"
|
|
CACHE STRING "")
|
|
set(SAPI_GFLAGS_BINARY_DIR "${CMAKE_BINARY_DIR}/_deps/gflags-build"
|
|
CACHE STRING "")
|
|
|
|
file(WRITE "${workdir}/CMakeLists.txt" "\
|
|
cmake_minimum_required(VERSION ${CMAKE_VERSION})
|
|
project(gflags-populate NONE)
|
|
include(ExternalProject)
|
|
ExternalProject_Add(gflags
|
|
GIT_REPOSITORY \"${SAPI_GFLAGS_GIT_REPOSITORY}\"
|
|
GIT_TAG \"${SAPI_GFLAGS_GIT_TAG}\"
|
|
SOURCE_DIR \"${SAPI_GFLAGS_SOURCE_DIR}\"
|
|
BINARY_DIR \"${SAPI_GFLAGS_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(GFLAGS_IS_SUBPROJECT TRUE)
|
|
set(GFLAGS_BUILD_SHARED_LIBS ${SAPI_ENABLE_SHARED_LIBS})
|
|
set(GFLAGS_INSTALL_SHARED_LIBS ${SAPI_ENABLE_SHARED_LIBS})
|
|
set(GFLAGS_INSTALL_HEADERS OFF) # TODO: Temporary off
|
|
set(GFLAGS_BUILD_TESTING FALSE)
|
|
|
|
add_subdirectory("${SAPI_GFLAGS_SOURCE_DIR}"
|
|
"${SAPI_GFLAGS_BINARY_DIR}" EXCLUDE_FROM_ALL)
|