1 Star 0 Fork 0

Goo丶/rapids-cmake

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
init.cmake 1.65 KB
一键复制 编辑 原始数据 按行查看 历史
#=============================================================================
# Copyright (c) 2021, NVIDIA CORPORATION.
#
# 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.
#=============================================================================
#
# This is NOT an entry point for other projects using rapids-cmake
#
# Nothing but rapids-cmake/CMakeLists.txt should include this file
#
if(NOT CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
# Be defensive of other projects over-writting CMAKE_MODULE_PATH on us!
set(rapids-cmake-dir "${rapids-cmake-dir}" PARENT_SCOPE)
if(NOT "${rapids-cmake-dir}" IN_LIST CMAKE_MODULE_PATH)
list(APPEND CMAKE_MODULE_PATH "${rapids-cmake-dir}")
endif()
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" PARENT_SCOPE)
# Don't install this hook if another rapids project has already done so
get_directory_property(parent_dir PARENT_DIRECTORY)
cmake_language(DEFER DIRECTORY "${parent_dir}" GET_CALL_IDS rapids_existing_calls)
if(NOT rapids_init_hook IN_LIST rapids_existing_calls)
cmake_language(DEFER DIRECTORY "${parent_dir}"
ID rapids_init_hook
CALL include "${rapids-cmake-dir}/../init.cmake")
endif()
endif()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/gitgoo/rapids-cmake.git
git@gitee.com:gitgoo/rapids-cmake.git
gitgoo
rapids-cmake
rapids-cmake
branch-22.12

搜索帮助