CMake and GTK+ 3: the easy way

If you look at my GitHub repositories you will notice that I’m a big fan of CMake and I use it in all my C projects.

Recently I started playing with GTK+ 3.0 but most of the official projects use the autotools toolchain, so there is little documentation on how to use CMake with GTK+.

But what is CMake and why should you care?
CMake is an open-source system for managing the build process using native building environments such as make.
I like it because it’s really easy to learn, at least compared to other build tools. It also produces a Makefile with a nice looking output.

Before we start

The sofware I’m using for this small guide is:

  • An up-to-date Fedora 17 (yep, I changed distro again. Sigh)
  • CMake version 2.8.8
  • GNU Make version 3.82
  • GTK+ 3.4.4

So if you encounter any problem RTFC (Read The Funny Changelog, of course).

Our sample and simple program

To demostrate how to use CMake we will use the classic GTK+ Hello World.

#include <gtk/gtk.h>
static void
activate(GtkApplication *app,
    gpointer user_data) {
    GtkWidget *window;
    window = gtk_application_window_new(app);
    gtk_window_set_title(GTK_WINDOW(window), "Hello GNOME");
    gtk_widget_show_all(window);
}
int
main(int argc, char **argv) {
    GtkApplication *app;
    int status;
    app = gtk_application_new("org.gtk.example",
        G_APPLICATION_FLAGS_NONE);
    g_signal_connect(app, "activate",
        G_CALLBACK(activate), NULL);
    status = g_application_run(G_APPLICATION(app), argc, argv);
    g_object_unref(app);
    return (status);
}

To compile it from the command line run:

$ gcc -o hello `pkg-config --libs --cflags gtk+-3.0` hello.c
$ ./hello

Enter CMake

The usual steps when using CMake are:

  1. Write a CMakeLists.txt file with the instruction on how to build your software
  2. Make a directory where you will build your software
  3. Run cmake
  4. Run make
  5. Congratulate yourself and use the time saved to troll people on the internet

This post, in an image

We start by writing our CMakeLists.txt file in the directory containing our source.

#Set the name and the supported language of the project
project(hello-world C)
# Set the minimum version of cmake required to build this project
cmake_minimum_required(VERSION 2.6)
# Use the package PkgConfig to detect GTK+ headers/library files
find_package(PkgConfig REQUIRED)
pkg_check_modules(GTK3 REQUIRED gtk+-3.0)
# Setup CMake to use GTK+, tell the compiler where to look for headers
# and to the linker where to look for libraries
include_directories(${GTK3_INCLUDE_DIRS})
message(staus "GTK3_INCLUDE_DIRS = ${GTK3_INCLUDE_DIRS}")
link_directories(${GTK3_LIBRARY_DIRS})
message(status " GTK3_LIBRARY_DIRS = ${GTK3_LIBRARY_DIRS}")
# Add other flags to the compiler
add_definitions(${GTK3_CFLAGS_OTHER})
message(status " GTK3_CFLAGS_OTHER = ${GTK3_CFLAGS_OTHER}")
# Add an executable compiled from hello.c
add_executable(hello hello.c)
# Link the target to the GTK+ libraries
target_link_libraries(hello ${GTK3_LIBRARIES})
message(status "GTK3_LIBRARIES = ${GTK3_LIBRARIES}")

message(status "pkgs_cflags = ${PKGS_CFLAGS}")

Then we make the build folder

$ mkdir build
$ cd build

And we tell cmake to build the Makefile

$ cmake .. # Point cmake to the folder containing CMakeLists.txt

Finally we use make to build our program and we run it

$ make
$ ./hello

That’s it! I can’t tell you if this process works well for larger projects because I’m just getting started with GTK+ and CMake.
You should also check out some pre-made FindGTK3.cmake modules available, they may be better suited to your needs.

http://francesco-cek.com/cmake-and-gtk-3-the-easy-way/

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值