1 Star 0 Fork 23

岭南小菜/ctkcreator

forked from HouLei/ctkCreator 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SuperBuild.cmake 2.23 KB
一键复制 编辑 原始数据 按行查看 历史
HouLei 提交于 2021-03-23 20:00 . 同步代码
###########################################################################
#
# Library: CTK
#
# Copyright (c) Kitware Inc.
#
# 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.txt
#
# 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.
#
###########################################################################
#-----------------------------------------------------------------------------
# WARNING - No change should be required after this comment
# when you are adding a new external project dependency.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Make sure ${CTK_BINARY_DIR}/CTK-build/bin exists
# May be used by some external project to install libs
if(NOT EXISTS ${CTK_BINARY_DIR}/CTK-build/bin)
file(MAKE_DIRECTORY ${CTK_BINARY_DIR}/CTK-build/bin)
endif()
#-----------------------------------------------------------------------------
set(proj CTK)
set(ep_cxx_standard_arg)
if(CMAKE_CXX_STANDARD)
set(ep_cxx_standard_arg "-DCMAKE_CXX_STANDARD:STRING=${CMAKE_CXX_STANDARD}")
endif()
ExternalProject_Add(${proj}
${${proj}_EP_ARGS}
DOWNLOAD_COMMAND ""
CMAKE_CACHE_ARGS
-DCTK_SUPERBUILD:BOOL=OFF
-DCTK_SUPERBUILD_BINARY_DIR:PATH=${CTK_BINARY_DIR}
-DCMAKE_C_COMPILER:FILEPATH=${CMAKE_C_COMPILER}
-DCMAKE_CXX_COMPILER:FILEPATH=${CMAKE_CXX_COMPILER}
-DCMAKE_CXX_FLAGS_INIT:STRING=${CMAKE_CXX_FLAGS_INIT}
-DCMAKE_C_FLAGS_INIT:STRING=${CMAKE_C_FLAGS_INIT}
-DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX}
-DCMAKE_MACOSX_RPATH:BOOL=${CMAKE_MACOSX_RPATH}
${ep_cxx_standard_arg}
SOURCE_DIR ${CTK_SOURCE_DIR}
BINARY_DIR ${CTK_BINARY_DIR}/CTK-build
INSTALL_COMMAND ""
DEPENDS
${CTK_DEPENDENCIES}
)
ExternalProject_AlwaysConfigure(${proj})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/lnxc/ctkcreator.git
git@gitee.com:lnxc/ctkcreator.git
lnxc
ctkcreator
ctkcreator
master

搜索帮助