QT pro中加入文件拷贝方法_qt pro复制粘贴-优快云博客
目标:
例如:在release模式下,exe文件生成于:
"G:\test\build\release\shakeSensor.exe"
此时,我希望在生成该exe文件时,
"G:\test\build\test\"
此目录下也可生成该exe文件
------------------------------------------
相关知识:
TARGET
Specifies the name of the target file. Contains the base name of the project file by default.
For example:
TEMPLATE = app TARGET = myapp SOURCES = main.cpp The project file above would produce an executable named myapp on unix and myapp.exe on Windows.