如何在qmake中指定repc的输出路径?
How to specify repc's output path in qmake?
在 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.
构建目录是您 运行 qmake 所在的文件夹(在您的情况下它似乎是项目文件夹)导致获取包含源代码、中间文件和二进制文件的文件夹的不良影响。
而是使用您 运行 qmake:
所在的不同文件夹
mkdir build
cd build
qmake /path/of/project-directory
make
在 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.
构建目录是您 运行 qmake 所在的文件夹(在您的情况下它似乎是项目文件夹)导致获取包含源代码、中间文件和二进制文件的文件夹的不良影响。
而是使用您 运行 qmake:
所在的不同文件夹mkdir build
cd build
qmake /path/of/project-directory
make