0

在 qmake 我有

REPC_SOURCE = rpc/SomeRPC.rep

rep_SomeRPC_source.h在项目的根目录中生成。我想将它存储在其他地方以保持 root 尽可能干净。
文档说repc creates the rep_SimpleSwitch_source.h header in the build directory that you specify。但如何指定build directory
我看到的唯一选择是改变OUT_PWD,但文档说Do not attempt to overwrite the value of this variable.

4

1 回答 1

1

构建目录是您运行 qmake 的文件夹(在您的情况下,它似乎是项目文件夹)导致获取包含源代码、中间文件和二进制文件的文件夹的不良影响。

而是使用运行 qmake 的不同文件夹:

mkdir build
cd build
qmake /path/of/project-directory
make
于 2021-03-30T00:16:42.597 回答