gpt4 book ai didi

cmake - 在 CMake 中设置中间文件(如 .obj)的目录

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

我已经看到 CMake 将中间文件(例如 .obj)放在这样的目录中:

project.dir/sort/of/copy/of/source/directory

有没有办法拥有这样的东西:

project.dir/Debug/ myfiles.obj    |--> for my debug

project.dir/Release/ myfiles.obj    |--> for my release

目前,我每次使用 2 个单独的目录来生成用于调试和发布的库或可执行文件。当我也有了这个平台之后...

是否有类似于 CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE 或 CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE 的内容...

对于中间文件.obj ?

我也尝试过/Fo,但是当我使用这个FLAG时,Cmake用他的配置覆盖:

警告 D9025:用“/FoCMakeFiles\project.dir\src\project\main.cpp.obj”覆盖“/Fo;../x64/Debug/”

请问有人有解决办法吗?

最佳答案

你不能 - 至少目前,请参阅 0014999: Changing Intermediate Directory of Visual Studio 2012 功能请求 - 更改 CMake 和 makefile 生成器中的中间目录 - 就像你的情况 NMake - 你只能有一个 build configuration type 每个二进制构建输出目录。

正如 @usr1234567 所评论的那样,使用两个构建目录是正确的做法。

或者 - 如果可以选择 - 使用 Visual Studio 多重配置生成器。它确实使用了您建议的中间目录:

project.dir/Debug/...
project.dir/Release/...

命令行上的 NMake 与 Visual Studio 解决方案

这些差异也可以在我通常用来构建基于 CMake 的系统的包装脚本中看到。

所以 NMake 看起来像这样:

@ECHO off
"\Program Files (x86)\Microsoft Visual Studio 14.0\vc\vcvarsall.bat" x64
IF NOT EXIST "x64\Debug\Makefile" (
cmake -H"." -B"x64/Debug" -DCMAKE_BUILD_TYPE=Debug -G"NMake Makefiles"
)
cmake --build "x64/Debug" --target "project"
IF NOT EXIST "x64\Release\Makefile" (
cmake -H"." -B"x64/Release" -DCMAKE_BUILD_TYPE=Release -G"NMake Makefiles"
)
cmake --build "x64/Release" --target "project"

我最喜欢的 Visual Studio 解决方案变体如下所示:

@ECHO off
IF NOT EXIST "x64\*.sln" (
cmake -H"." -B"x64" -G"Visual Studio 14 2015 Win64"
)
cmake --build "x64" --target "project" --config "Debug"
cmake --build "x64" --target "project" --config "Release"

其他引用

关于cmake - 在 CMake 中设置中间文件(如 .obj)的目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28831402/

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