I’m getting the error
QAction: No such file or directory
when I try to compile a project for plugin (C++ Library template). Weird, because I have a project for my app which also includes this header and there is no error. What might cause this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Make sure that you have the right include paths set up.
If you use QMake the
*.proshould contain these settings if you want to include files fromQtGui. They should be set by default but some templates may not set them.If you use another build system then make sure that you either use
or you add
$QTDIR/include/QtGuiand not just$QTDIR/includeto your include path