Share QtQuick project to another desktop
-
I wish to share my QtQuick (Compact) project with another desktop (containing QtCreator) to continue developing there. I tried sharing a zip file but QtCreator is unable to open the project and all the files. Is there any other way of sharing the project?
-
The usual way is to use some git repository and share it via GitHub or other such service. But you can copy-paste files if you want, too - it should work. Just remember to delete
.user
file, it contains QtCreator information specific to one particular PC. Your new PC will generate it's own.user
file.If you are using CMake, the file will be in root directory and named
CMakeLists.txt.user
. If you are using qmake, it will be also in root dir with name<project name>.pro.user
.