How to open an exists project from the remote PC?
-
So it's exactly the same as for embedded systems. You cross-compile, copy and execute.
Otherwise you also have VS Code (or alternatives) that have a remote dev feature through tunneling and some additional software installed on the other machine. -
I want to open the exists project from the remote PC "A" in my another pc "b", but I don't know how to deal with it.
-
@Heneral Simply copy the project from one PC to another, or even better, use a version control system like Git. Do NOT copy files like *.pro.user
You could also use NFS, for example, to mount PC A partition on PC B, but that's not what you should do. -
-
Hi,
Why not use a setup like with embedded systems ? You build on PC A and then copy the executable and relevant libraries on PC B and do remote debugging.
-
Hi,
Why not use a setup like with embedded systems ? You build on PC A and then copy the executable and relevant libraries on PC B and do remote debugging.
-
So it's exactly the same as for embedded systems. You cross-compile, copy and execute.
Otherwise you also have VS Code (or alternatives) that have a remote dev feature through tunneling and some additional software installed on the other machine. -