如何更改 Clion 构建目录
How to change Clion build directory
我最近在学习使用 CLion IDE。我正在尝试更改构建目录的默认路径:
~/.CLion2016.2/system/cmake/generated/AFQMCLIB-83788a76/83788a76/Debug
我可以更改:
- 转到
build execution deployment
- 点击
cmake
- 将
build output path
更改为MYPATH
进行此更改后。我重建我的代码,所有目标现在都出现在 MYPATH/Debug/
中,但是 MYPATH/Debug/
中没有 Makefile。
我正在使用 CTest,我想 运行 make test
来测试我的程序。如果 MYPATH
中没有 Makefile,我需要 运行 每个测试可执行文件来测试我的代码。 (我会有很多可执行文件,不方便单独运行)
有没有办法将构建中的所有内容移动到 MYPATH
?谢谢。
我认为你需要等待:
https://confluence.jetbrains.com/display/CLION/Roadmap+for+CLion+2016.3
Cmake:
Ability to specify the build/generation output directory.
我最近在学习使用 CLion IDE。我正在尝试更改构建目录的默认路径:
~/.CLion2016.2/system/cmake/generated/AFQMCLIB-83788a76/83788a76/Debug
我可以更改:
- 转到
build execution deployment
- 点击
cmake
- 将
build output path
更改为MYPATH
进行此更改后。我重建我的代码,所有目标现在都出现在 MYPATH/Debug/
中,但是 MYPATH/Debug/
中没有 Makefile。
我正在使用 CTest,我想 运行 make test
来测试我的程序。如果 MYPATH
中没有 Makefile,我需要 运行 每个测试可执行文件来测试我的代码。 (我会有很多可执行文件,不方便单独运行)
有没有办法将构建中的所有内容移动到 MYPATH
?谢谢。
我认为你需要等待:
https://confluence.jetbrains.com/display/CLION/Roadmap+for+CLion+2016.3
Cmake:
Ability to specify the build/generation output directory.