Is it possible to have post-build events (as in VC++) in Qt Creator? In particular, I would like to copy the executable to a different folder after it has been built. Can it be done?
标签:
qt-creator
相关问题
- How can I listen to a C++ signal from QML?
- How to setup Qt Creator to work with CMake on Mac
- switch may fall through (no it may not)
- How to solve module “”QtQuick.Controls“ version 2.
- CMake, QtCreator and header files
相关文章
- How to make QtLinguist shipped with Qt 5.9.1 work?
- Qt Creator fails to start debugging on Mac
- How to obtain debug/release conditional compiling
- signals sent by qtcreator on “stop”
- C++ Qt framework: qmake exits with error code 2, c
- Can __FILE__ and __LINE__ be made linkable when pr
- Qt Creator problem. UI changes not showing when pr
- How to configure qt creator to show C++ codes rath
You will find here all the variables you can use in your project file (.pro): http://doc.qt.nokia.com/4.7/qmake-variable-reference.html.
The one you are searching for is:
DESTDIR
Anyway, in QtCreator you can customize all the build and link operation by adding/removing instructions in the Project tab.
Add execution of a script to copy the files as a build step as below,