I need to copy a file from my project to the output directory. I new to qmake so I can't figure out how to accomplish this.
I'm compiling on Linux but in the future I'll compile it on Mac and Windows
|
I need to copy a file from my project to the output directory. I new to qmake so I can't figure out how to accomplish this. I'm compiling on Linux but in the future I'll compile it on Mac and Windows |
|||
|
|
|
Here's an example from one of our projects. It shows how to copy files to the
|
|||
|
|
|
You can use a qmake function for reusability:
then use it as follows:
|
|||||
|
|
If you use make install, you can use the INSTALLS variable of qmake. Here is an example:
then execute 'make install' |
|||||||
|
|
I found I had to modify the answer given by sje397. for Qt5 Beta1 together with QtCreator 2.5.2. I use this script to copy the qml files to the destination directory as an addition step after the build is complete. My .pro file has the following code
} Note that I use use $$PWD_WIN to supply the full path to the source file to the copy command. |
||||
|
|