I am developing a C++ code and I have compiled it with g++ compiler code in my Linux Ubuntu 12.10 OS. The compilation code is as following
$ g++ -o SmartMeter5.fcgi SmartMeter.cpp -I../include -L../src -lfastcgipp -lboost_thread-mt -pthread -lboost_date_time-mt -g -O2 -pthread -lmongoclient -lboost_thread-mt -lboost_filesystem -lboost_program_options -lboost_system -gstabs+ -w -Iheaders -llog4cpp -lpthread
The code compiles with above g++ command OK.
But now I want to use the Eclipse IDE for C++ to compile my code. As can be seen in the g++ command the compilation includes of quite a few libraries.
Is there a procedure in Eclipse to just paste that g++ command somewhere in eclipse IDE and the command will be executed. Or please suggest some way to easily compile my code with the above g++ command in Eclipse IDE.