I have a folder called resources
and inside I have 2 files and 1 folder
/Hello.txt
/Hello1.txt
/Newfolder
Using Qt *.pro
file, I need to copy the contents in resources
into some destination folder. *.pro
file :
BINARY_PATH = $$PWD/../Bin/
RESOURCE_PATH = $$PWD/../resources/
win32 {
QMAKE_POST_LINK +=$$quote(cmd /c copy /y $${RESOURCE_PATH} $${BINARY_PATH}$$escape_expand(\n\t))
}
But nothing is getting copied to destination directory.