gpt4 book ai didi

cmake - 如何更改 compile_commands.json 输出位置

转载 作者:行者123 更新时间:2023-12-04 10:54:57 46 4
gpt4 key购买 nike

这是一个示例 C++ 项目结构:

- {root}
- CMakeLists.txt
- build/
- compile_commands.json <-- This file gets generated
- src/
- CMakeLists.txt
- files here
- compile_commands.json <-- This is where I want compile_commands.json to be built to

如果我构建项目,它会在“build”文件夹中创建一个“compile_commands.json”文件。但我实际上想要它在“{root}”下面。有没有办法指定 compile_commands.json 的位置?还是我必须手动复制它?

这些是我通常用于构建项目的命令

(如果 cd'ed 进入 {root}) cmake . -B build选择: cd {root}/build && cmake ..
在这两种情况下,compile_commands.json 都会添加到构建文件夹中

最佳答案

Is there a way to specify the location of compile_commands.json?


没有办法。我相信 compile_commands.json 的路径 CMAKE_EXPORT_COMPILE_COMMANDS 时生成设置为 hardcoded成为 inside CMAKE_BINARY_DIR .
只需创建一个符号链接(symbolic link) compile_commands.json -> ./build/compile_commands.json .

关于cmake - 如何更改 compile_commands.json 输出位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59263015/

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