ich bin jetzt grad dabei mich mit GUI in C zu beschäftigen. und habe das Problem das der gtk-config Befehl nicht gefunden wird.
Wenn ich versuche zu kompilieren kommt das:
Code: Alles auswählen
gcc -Wall -ggdb `gtk-config --cflags` `gtk-config --libs` main.c -o list2101
bash: gtk-config: command not found
bash: gtk-config: command not found
main.c:1:9: fatal error: gtk/gtk.h: No such file or directory
#include<gtk/gtk.h>
^~~~~~~~~~~
compilation terminated.
Code: Alles auswählen
#include<gtk/gtk.h>
int main(int argc, char **argv){
GtkApplication *fensterAnwendung;
int status;
fensterAnwendung = gtk_application_new ("gtk.beispiel",G_APPLICATION_FLAGS_NONE);
g_singal_connect(fensterAnwendung,"active",G_CALLBAACK(erstellen), NULL);
status = g_application_run(G_APPLICATION (fensterAnwendung),argc,argv)
g_object_unref (fensterAnwendung);
return status;
}
void erstellen (GtkApplication *fensterAnwendung, gpointer daten){
GtkWidget *fenster;
fenster=gtk_application_window_new(fensterAnwendung);
gtk_window_set_title(GTK_WINDOW (fenster), "Mein erstes Fenster");
gtk_window_set_default_size (GTK_WINDOW (fenster),300,400);
gtk_widget_show_all(fenster);
}