mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 12:20:11 +01:00
This includes recent improvements to the CMake build. Furthermore, since the latest revisions of cpuinfo contains Bazel build support, we no longer need the custom build files.
43 lines
1.3 KiB
CMake
43 lines
1.3 KiB
CMake
#
|
|
# Copyright 2021 The TensorFlow Authors. All Rights Reserved.
|
|
#
|
|
# 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
|
|
#
|
|
# https://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.
|
|
|
|
if(TARGET clog OR clog_POPULATED)
|
|
return()
|
|
endif()
|
|
|
|
include(OverridableFetchContent)
|
|
|
|
OverridableFetchContent_Declare(
|
|
clog
|
|
GIT_REPOSITORY https://github.com/pytorch/cpuinfo
|
|
# Sync with tensorflow/third_party/clog/workspace.bzl
|
|
GIT_TAG 082deffc80ce517f81dc2f3aebe6ba671fcd09c9
|
|
GIT_PROGRESS TRUE
|
|
SOURCE_DIR "${CMAKE_BINARY_DIR}/clog"
|
|
)
|
|
OverridableFetchContent_GetProperties(clog)
|
|
if(NOT clog_POPULATED)
|
|
OverridableFetchContent_Populate(clog)
|
|
endif()
|
|
|
|
set(CLOG_SOURCE_DIR "${clog_SOURCE_DIR}" CACHE PATH "CLOG source directory")
|
|
set(CLOG_BUILD_TESTS OFF CACHE BOOL "Disable CLOG tests")
|
|
|
|
add_subdirectory(
|
|
"${clog_SOURCE_DIR}/deps/clog"
|
|
"${clog_BINARY_DIR}"
|
|
EXCLUDE_FROM_ALL
|
|
)
|