qt creator - Create Vanilla C++ project in QtCreator from existing .cpp and .h files -
i want start using qtcreator c++ coding...
however, need understand how can create new project - straight c++ project (not qt) - bunch of existing .cpp , header files. how import these new c++ project...? how built...? how qtcreator build neccessary make files etc...?
been googling ages without finding straight answer.
many thanks
c++ uses compiler (like gcc
) compiling , linker (like ld
aka gcc
) linking. typically compiling multiple c++ files of need linked together.
the script of makefile
executed using make
program.
qt has tool called qmake
can of leg-work you. go directory source, run qmake -project
generate qt project run qmake
generate standard makefile. call make build source.
Comments
Post a Comment