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

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -