Qt - Visual Studio - Work with projects on multiple computers

后端 未结 5 519
野趣味
野趣味 2021-01-22 12:36

I work with the same Visual Studio projects on multiple computers (work/home) using Dropbox to sync between the two. Because VS creates some extra large files, I used to remove

5条回答
  •  逝去的感伤
    2021-01-22 12:57

    "moc" is a Qt executable that pre-processes .h files. It's invoked by the MSVS build system. However, if it would be missing, you'd get the "The system cannot find the path specified." error after "Moc'ing CodeInterface.h".

    My bet therefore is that MSVS can't find your Qt implementation. I'm not entirely surprised; the Qt4 build system and its integration with MSVS didn't strike me as very robust ir reliable when I tried to install it recently.

提交回复
热议问题