I followed everything described here to set an app icon.
Created .rc file / placed it in the same directory where .pro file is.
Added the following line to the .rc file
IDI_ICON1 ICON DISCARDABLE "myappico.ico"
Added the following line to the .pro file
RC_FILE = myapp.rc
Run QMake and run the app and the following error message comes up
:-1: error: error: ..\ZombieAttack\myapp.rc: No such file or directory
:-1: warning: '-x c' after last input file has no effect
What am I doing wrong?