gtkmm is a C++ wrapper library that makes it possible to write C++ programs with GTK+. After compiling the GTK+ library, you can build gtkmm as follows.
libsigc++ 2.2.10
libsigc++ implements a typesafe callback system for standard C++. Download the libsigc++ source code from here and compile it:
./configure --prefix=/mingw
make
make installglibmm 2.32.1
glibmm is a C++ wrapper for Glib. Compile it like this:
./configure --prefix=/mingw
make
make installatkmm 2.22.6
atkmm is a C++ wrapper for ATK. Compile it like this:
./configure --prefix=/mingw
make
make installcairomm 1.10.0
cairomm provides C++ interface to the Cairo library. Compile it like this:
./configure --prefix=/mingw
make
make installpangomm 2.28.4
pangomm is a C++ wrapper for Pango. Compile it like this:
./configure --prefix=/mingw
make
make installgtkmm 3.4.0
gtkmm is a C++ wrapper for GTK+. Build it as follows:
./configure --prefix=/mingw
make
make install
No comments:
Post a Comment