我想根据 Debug 或 Release 构建配置更改一些 DEFINES 和 LIBS 路径,但我的 CONFIG 变量同时包含 release 和 debug 变量。
pro文件中的简单测试:
CONFIG(debug, debug|release) {
message(DEBUG build)
}
CONFIG(release, debug|release) {
message(RELEASE build)
}
该测试输出:
Project MESSAGE: DEBUG build
Project MESSAGE: RELEASE build
我应该如何设置我的项目?