Posts with the tag C++ development
Set up gedit for use with C++
The post describes the setup for gedit to get most out of it for C++ development.
Activate gedit plugins using Edit → Preferences
in gedit.
Smart indentation plugin for C/C++/Java
http://live.gnome.org/Gedit/Plugins?action=AttachFile&do=view&target=csmartindent.tar.gz
Function browser
http://sourceforge.net/projects/gedit-funcbrows/
The Ubuntu package gedit-plugins including an embedded terminal
to get an integrated terminal, get the package gedit-plugins. This...
C++ Boost Development Libraries
sudo aptitude install libboost-dev libboost-doc
Or get all packages at once:
sudo aptitude install libboost.*dev libboost-doc
then put eg the following line into your sourcefile:
#include<boost/random.hpp>
C++ code completion for KDevelop 4 and Emacs
-
KDevelop 4 (changed recently, check out some time soon: Link ). source: http://www.kdevelop.org/mediawiki/index.php/FAQ#Code_Completion_FAQs How to enable it: A C/C++ project opened, go to menu Project→Project Options, in Project Options dialog choose C++ Specific tab, then Code Completion tab. Check the Automatic Code Completion check...