ricardobtez / gtkmm-application

gtkmm template used for creating a new application.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CMake-release CMake-debug

gtmm-application

Overview

gtkmm-application is a project planned to be used as a template for projects looking to take advantage of the GTK+ GUI library with C++.

In this project, you could decide which features you will need for your application by performing the proper request to the build script, or updating these scripts.

Building the project

To build the project with the default configuration, you will only need to perform the following commands:
python build.py -b release -f

This command will create the appropiate folder, call cmake and compile the project with release mode and force a rebuild if the folder was compiled before

python build.py -b debug

This command will perform as before, except that it will compile as debug and will recompile only if needed.

If you want to know how to use the python script, you can call the following command.

python build.py -h

Dependencies

The dependencies for the building of this project are the following:
gtkmm-3.0 or higher
cmake 3.15 or higher
pkgconfig
g++ or clang supporting c++17
python 3.x

About

gtkmm template used for creating a new application.

License:MIT License


Languages

Language:C++ 43.6%Language:CMake 40.1%Language:Python 16.3%