-
-
Save akotulu/327f0434cd2230f835000cac9698c9e5 to your computer and use it in GitHub Desktop.
CMake and GTK+ 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Thanks to @danger89 and @Ilothar for updating the gist. | |
# Set the name and the supported language of the project | |
project(hello-world C CXX) | |
# Set the minimum version of cmake required to build this project | |
cmake_minimum_required(VERSION 3.10) | |
# Use the package PkgConfig to detect GTK+ headers/library files | |
find_package(PkgConfig REQUIRED) | |
pkg_check_modules(GTK REQUIRED gtkmm-3.0) | |
add_executable(hello main.cpp) | |
target_link_libraries(hello PRIVATE ${GTKMM_LIBRARIES}) | |
# Add other flags to the compiler | |
target_compile_definitions(hello PRIVATE ${GTKMM_CFLAGS_OTHER}) | |
# Setup CMake to use GTK+, tell the compiler where to look for headers | |
# and to the linker where to look for libraries | |
target_include_directories(hello PRIVATE ${GTKMM_INCLUDE_DIRS}) | |
target_link_directories(hello PRIVATE ${GTKMM_LIBRARY_DIRS}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment