I'm willing to create subfolders in Qt Creator, using answers from the following thread :
How to create a folder or a subdirectory for a project in QtCreator?
I created a folder in my explorer, then renamed my existing file "folder/existingFile.cpp". (I also did it for the header .h) The file is successfully show in the hierarchy under the new folder. I cleaned the project, run qmake.
At compilation the following error is thrown:
No rule to make target "[...]/existingFile.cpp" needed by 'qrc_app.cpp'. Stop.
Is my make file generated by qmake corrupted ?
What am I doing wrong ?
Ps : I tried the .pri approach suggested in the thread (.pri in subfolder, including it in the .pro) without success.