- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个基于 CMake 3.11.4 和 Python 3.7 的软件环境。
我的库/程序有一个 config.txt
以我指定的格式描述它们的依赖关系的文件。然后,我有一个 Python 脚本( scripts/configure.py
)生成 CMakeLists.txt
即时调用 CMake 以生成可由 Visual Studio 2015 构建的解决方案。
我希望 Python 在 config.txt
时自动再次运行由用户编辑。
所以我让我的 Python 脚本在生成的 CMakeLists.txt
中添加了一个自定义命令语句.以下是名为“myproject”的项目的外观,其中包括两个库“lib1”和“lib2”。${SDE_ROOT_DIR}/build/myproject/CMakeLists.txt
包含:
# Automatically re-run configure project when an input file changes:
set( PROJECT_DEPENDENCIES )
list( APPEND PROJECT_DEPENDENCIES "${SDE_ROOT_DIR}/lib/lib1/config.txt" )
list( APPEND PROJECT_DEPENDENCIES "${SDE_ROOT_DIR}/lib/lib2/config.txt" )
ADD_CUSTOM_COMMAND( OUTPUT ${SDE_ROOT_DIR}/build/myproject/CMakeLists.txt COMMAND tools/python/Python370/python.exe scripts/configure.py myproject WORKING_DIRECTORY ${SDE_ROOT_DIR} DEPENDS ${PROJECT_DEPENDENCIES} )
scripts/configure.py myproject
)以获得 CMakeLists.txt
以及生成的 Visual Studio 解决方案。 Generating CMakeLists.txt
我看到我的脚本 scripts/configure.py
被调用。 这不是预期的! config.txt
, 下次构建时看到 Generating CMakeLists.txt
我看到我的脚本 scripts/configure.py
被调用。那挺好的。 CMakeLists.txt
刚刚生成,绝对比
config.txt
新,我不明白为什么它需要生成
CMakeLists.txt
再次。
CMakeLists.txt
使这个自定义命令的输出默认为“最新”?
config.txt
被替换为
prgname.txt
):
prg/main.cpp
:
#include <iostream>
int main( int argc, char* argv[] )
{
std::cout << "Hello World!" << std::endl;
return 0;
}
prg/prgname.txt
:
myprogram
scripts/configure.py
:
import sys
import subprocess
import argparse
import os
from contextlib import contextmanager
@contextmanager
def pushd(newDir):
previousDir = os.getcwd()
os.chdir(newDir)
yield
os.chdir(previousDir)
def configure_project():
# check configuration args
parser = argparse.ArgumentParser(description="CMakeLists generator.")
parser.add_argument('project', metavar='project', type=str, help='project name')
args = parser.parse_args()
working_directory = os.getcwd()
project = args.project
buildfolder = os.path.normpath(os.path.join( os.path.dirname(os.path.abspath(__file__)), os.pardir, "build", project ))
if not os.path.isdir(buildfolder):
os.makedirs(buildfolder)
prgsourcefolder = os.path.normpath(os.path.join( os.path.dirname(os.path.abspath(__file__)), os.pardir, "prg" ))
prgbuildfolder = os.path.join( buildfolder, "prg" )
if not os.path.isdir(prgbuildfolder):
os.makedirs(prgbuildfolder)
prgnamepath = os.path.join( prgsourcefolder, "prgname.txt" )
with open( prgnamepath, "r" ) as prgnamefile:
prgname = prgnamefile.read()
with open( os.path.join( prgbuildfolder, "CMakeLists.txt" ), "w" ) as cmakelists:
cmakelists.write( "add_executable(" + prgname + " " + os.path.join(prgsourcefolder,"main.cpp").replace("\\","/") + ")\n" )
cmakelistspath = os.path.join( buildfolder, "CMakeLists.txt" )
with open( cmakelistspath, "w" ) as maincmakelists:
maincmakelists.write( "cmake_minimum_required(VERSION 3.11)\n" )
maincmakelists.write( "project(" + project + ")\n" )
maincmakelists.write( "add_subdirectory(prg)\n" )
maincmakelists.write( "add_custom_command( OUTPUT " + cmakelistspath.replace("\\","/") + " COMMAND python " + " ".join( [ x.replace("\\","/") for x in sys.argv] ) + " WORKING_DIRECTORY " + working_directory.replace("\\","/") + " DEPENDS " + prgnamepath.replace("\\","/") + ")\n" )
# Run CMake:
with pushd( buildfolder ):
cmd = ['cmake.exe', '-G', 'Visual Studio 14 2015 Win64', buildfolder]
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
while True:
out = proc.stdout.read(1)
if proc.poll() != None:
break
sys.stdout.write(out.decode())
sys.stdout.flush()
proc.wait()
if __name__ == "__main__":
import sys
sys.exit( configure_project() )
PATH
python configure.py myproject
build/myproject/myproject.sln
Generating CMakeLists.txt
在日志中 最佳答案
这是一个“解决方法”,而不是“解决方案”。
我只是添加一个状态文件来告诉何时应该跳过从 VS 调用的 generate ,因为我知道解决方案是最新的:
向解析器添加新参数:
parser.add_argument('--from_vs', action='store_true', help='identify that configure is ran from VS to prevent useless regeneration, don't set this manually please')
vs_force_up_to_date_file = os.path.join( buildfolder, "vs_force_up_to_date" )
if args.from_vs:
is_up_to_date = False
if os.path.isfile( vs_force_up_to_date_file ):
with open( vs_force_up_to_date_file, "r" ) as file:
content = file.readlines()[0]
is_up_to_date = ( content == "True" )
if is_up_to_date:
# It's the first time VS runs this script, we know it is up-to-date, so let's not regenerate
# See https://stackoverflow.com/questions/59861101/cmake-how-can-i-make-add-custom-command-output-up-to-date-by-default
print( "First time calling generate from VS, project is likely up-to-date, let's not reconfigure!" )
# Make next generate from VS be skipped
with open( vs_force_up_to_date_file, "w" ) as file:
file.write( str(False) )
exit(0)
else:
# need to generate, let's continue!
pass
else:
# Generating from console, let's make VS believe it is up to date for first time it will generate
if os.path.isfile( vs_force_up_to_date_file ):
# Let the file as it is, "True" if VS generate never ran, else False
pass
else:
# Create the file to prevent first VS generate to rerun this script while it does not need to be ran
with open( vs_force_up_to_date_file, "w" ) as file:
file.write( str(True) )
run_args = " ".join( [ x.replace("\\","/") for x in sys.argv] )
if not args.from_vs:
run_args += " --from_vs"
maincmakelists.write( "add_custom_command( OUTPUT " + cmakelistspath.replace("\\","/") + " COMMAND python " + run_args + " WORKING_DIRECTORY " + working_directory.replace("\\","/") + " DEPENDS " + prgnamepath.replace("\\","/") + ")\n" )
关于c++ - CMake:默认情况下如何使 add_custom_command 输出保持最新?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59861101/
运行 pip install cmake 时出现上述错误在 alpine linux (WSL) 上。 完整错误: /home/user# pip install cmake Collecting c
我的项目依赖 mariadb-connector-c我正在尝试使用 cmake 自动化下载、构建和链接过程。 我目前将项目下载到一个目录中,然后尝试执行生成忍者文件并运行它们,但我根本无法运行 cma
我正在尝试像这样在 cmake 中执行 execute_process execute_process(COMMAND ${CMAKE_COMMAND} -P myScript.cmake 这仅在文件
我想知道如果我没有给它任何变量告诉它在哪里找到它,cmake 如何找到我的 llvm cmake 配置。 我是 LLVM 新手。我正在构建一个 Hello World LLVM pass。我在 Ubu
我正在开发一个使用 CMake 的项目。顶CMakeLists.txt文件包含以下行: cmake_minimum_required(VERSION 3.7.2) # Kittens will die
我正在使用 Meego 1.2 工具链使用 cmake 运行构建(长话短说)。这个特定的工具链需要使用 --sysroot 选项来查找它需要的任何库。 set (CMAKE_CXX_FLAGS "-f
我们有一些源代码处理工具,可以从多个“片段”生成原始汇编文件等内容。 当使用 make 中的这些工具时,我们可以通过让源处理工具发出“依赖文件”来确保最新的构建,就像 gcc 一样-MD 标志。 例如
如何在 MSYS2 中安装和配置“cmake”?我尝试安装以下 MSYS 包 我在运行任何 cmake 命令时都收到以下错误 '''CMakeLists.txt:5 (cmake_minimum_re
有没有办法在 CMake 中得到一个变量列表?具体来说,我想要做的是调用一个现有函数,该函数接受多个变量并检查它们的计算结果是否为 true。 在某些情况下,其中一些变量将是空列表(计算结果为 fal
我有两组测试(功能测试和单元测试),我希望能够指定通过 cmake 运行哪一组。 一组测试是我想通过“make test”运行的单元测试。 另一组测试是我想通过“制作功能测试”来运行的功能测试。 目前
我的目标是查看有关调用 g++ 的详细信息由 cmake 直接调用从命令行。我不关心 make 的输出就这个问题而言。 根据official FAQ和 the accepted answer on a
我有一个生成库的CMake项目。我已经编写了一个CMake脚本FindXXX.cmake来帮助我的图书馆的用户。这样,他们可以使用find_package(XXX)并获取所需的变量。到现在为止还挺好。
当我看到带有命名空间的 CMake 库时,它们总是在表单中Parent::Component . 如果我有一个足够大的库,那么该库的子部分可能包含组件。我想知道是否可以/适合做 ParentProje
CMake 变量和属性似乎完成了非常相似的事情,我一直无法理解它们之间的区别。 它们每个都有自己的文档部分,但两者都会影响构建系统,两者都是“预先存在的”,并且两者都可以基于其他 CMake 命令动态
我有一个包含多个子目录的 CMake 项目,例如: dir1 subdir11 subdir12 dir2 subdir21 subdir22 根 CMakeLists
如果您想将静态库链接到共享库或可执行文件,同时保持所有符号可见(例如,您可以稍后打开它以找到它们),在 Linux/BSD 上执行此操作的一种非可移植方式是使用标志-Wl,--whole-archiv
CMake 自动创建一个 FooTarget.cmake文件例如添加 install(EXPORT FooTargets FILE FooTargets.cmake NAMESPACE Foo
在CMake中,ELSE和ENDIF控制流函数将表达式作为参数。根据文档,这些是optional。那么这些目的是什么?仅仅是为了维护目的而使原始IF表达式更清晰,还是提供某些功能? 最佳答案 正如您所
我是 cmake 的新手,我发现它非常令人沮丧。我试图在构建运行时评估的文件路径中使用通配符,而不是在生成构建时。 我创建了一个构建,它使用 SWIG 为某些 C++ 代码生成 Java 包装器。我可
我可能在谷歌上搜索错误,但我无法找到 .cmake 文件的用途。 我刚刚偶然发现了一个我必须使用的项目的 CMake 工具,我很难理解它是如何工作的。我明白在包含 CMakeLists.txt 的目录
我是一名优秀的程序员,十分优秀!