我没有在任何地方定义DESTDIR
。
message($$DESTDIR)
打印空字符串。
有没有办法知道目标二进制文件的路径?
在message()
需要使用不同的表示法由于某种原因:
message(DESTDIR: ($$DESTDIR))
我今天遇到了这样的问题。只有通过查看Qt mailing list中的qmake .pro文件示例才能解决问题。另一个可能的问题 - clue variables:
# ${VAR} notation allows to append the contents of the variable to another value
# without separating the two with a space
isEmpty(DESTDIR): DESTDIR = $${IDE_BUILD_TREE}/lib/qtcreator/plugins
没有这样的符号我得到空DESTDIR
变量。如果没有设置DESTDIR
,我相信二进制保留在build dir中。