/bin"是什么意思?-6ren"> /bin"是什么意思?-我想在 CMake 目录的/bin 子目录中填充一些脚本文件,但找不到/bin 文件。 我可以给伙计们什么建议? 谢谢 最佳答案 我不得不不同意 gvd 的回答,因为 CMAKE_BINARY_DIR-6ren">
gpt4 book ai didi

cmake - "/bin"是什么意思?

转载 作者:行者123 更新时间:2023-12-01 02:42:07 26 4
gpt4 key购买 nike

我想在 CMake 目录的/bin 子目录中填充一些脚本文件,但找不到/bin 文件。
我可以给伙计们什么建议?

谢谢

最佳答案

我不得不不同意 gvd 的回答,因为 CMAKE_BINARY_DIR应始终指向构建树的顶级目录。如果需要当前CMakelists.txt所在的构建树的位置去,使用 CMAKE_CURRENT_BINARY_DIR

CMAKE_BINARY_DIR

if you are building in-source, this is the same as CMAKE_SOURCE_DIR,otherwise this is the top level directory of your build tree

CMAKE_CURRENT_BINARY_DIR

if you are building in-source, this is the same as CMAKE_CURRENT_SOURCE_DIR,otherwise this is the directory where the compiled or generated files from thecurrent CMakeLists.txt will go to


所以答案是:cmake_binary_dir/bin 指向toplevelBuilddir/bin

关于cmake - "<cmake_binary_dir>/bin"是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8380578/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com