Install Codeblocks From Binaries

Retrieve the source code and extract to the install location. [codesyntax lang=”bash”] sudo add-apt-repository ppa:damien-moore/codeblocks-stable sudo apt-get update sudo apt-get install codeblocks codeblocks-contrib [/codesyntax] Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.

BCS gtkmm Simple Application

The minimal source code for Gtk c++ application is listed below. [codesyntax lang=”cpp”] //============================================================================ // Name : gla01.cpp // Author : Mr. Arch Brooks // Version : 0.0 // Copyright : Your copyright notice // Description : Hello World in C++, Ansi-style //============================================================================ #include <iostream> #include <gtkmm.h> using namespace std; int main(int argc, char *argv[]) […]