Reopen import project
-
Qt Creator has no means to parse a Makefile.
To import all header and source files call
@
qmake -project
@on the command line within the source directory of your project. This will create a .pro file that you can use as a starting point. It will contain all .h and all .cpp files in HEADERS and SOURCES, but you will most likely have to adjust it, though.
-
Note that Qt Creator not only accepts .pro files for its projects (even though that is the preferred format!), but also CMakeLists.txt and PROJECTNAME.creator files.
The latter is created when importing an existing project.