I want to copy some qml to my build directory.
In .pro
, I add:
copydata.commands = $(COPY_DIR) \"$$PWD/plugins\" \"$$DESTDIR/plugins\"
But when I build the project, the copydata
is error.
The error message is :
xcopy /s /q /y /i "E:/myproject/src/plugins" "E:/myproject/bin/debug/plugins" Invalid number of parameters
But ,I copy the command to cmd ,it's all right.
Does anyone knows what the wrong is ?