On Tue, Jun 6, 2017 at 9:48 AM Timothy Eckstein <[email protected]> wrote:
> Thanks for the quick reply. Unfortunately no difference: > > "*fatal error: **'QtWidgets' file not found* > > #include <QtWidgets>" > This means your compilation command is missing the includes for Qt > > The link you shared with me talks about a .pro file. The original version > of this project had a .pro file but I never could get the darn thing to > compile no matter what I did. I have had the absolute best luck compiling > the "Hello World" project without one. So if the "Hello World" plugin can > compile just fine without a .pro file, then why does this need one? Do I > need one? Are there GUI cmake builders out there so I don't have to keep > using the console on the Mac because honestly, I just want to click a > button and have 6 months of frustration just suddenly disappear - it's a > fantasy of mine. > .pro files are the project files for Qt's build system. You can choose to build with qmake. Or you can choose to have it generate for other build systems like XCode or Make. You do not need a pro file if you aren't going to use qmake. If you are having trouble with your cmake build system and you just want the easiest possible approach, then maybe you should switch to just setting up a pro file and using qmake? http://doc.qt.io/qt-4.8/qmake-project-files.html Maybe you should just simplify your process completely and use Qt Creator to visually set up everything and compile? > -- > You received this message because you are subscribed to the Google Groups > "Python Programming for Autodesk Maya" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/python_inside_maya/dc73fb8a-3c3a-4d75-9d4e-1bbf9624f6f9%40googlegroups.com > <https://groups.google.com/d/msgid/python_inside_maya/dc73fb8a-3c3a-4d75-9d4e-1bbf9624f6f9%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPGFgA1pU8Q6fF5Q9htXDeJQ84OBzu1unt_YhnqfrCypbB0CaQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
