【发布时间】:2011-02-02 18:31:55
【问题描述】:
我刚刚做了很多研究并尝试了很多,但没有任何效果。我正在尝试使用 make 在 Cygwin 中的 GTK 中编译一个简单的 hello world 程序。它给了我错误:“lab0.c:1:21: error: gtk/gtk.h: No such file or directory....” 我安装了所有软件包的 cygwin。我还将所有的 gtk 文件导入到 cygwin 文件夹中,但它给了我同样的错误。这是我的程序:
Lab0.c
#include <gtk/gtk.h>
int main (int argc, char *argv[])
{
GtkWidget *window;
GtkWidget *label;
gtk_init (&argc, &argv);
/* create the main, top level, window */
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
/* give it the title */
gtk_window_set_title (GTK_WINDOW (window), "Hello World");
/* Connect the destroy signal of the window to gtk_main_quit
* When the window is about to be destroyed we get a notification and
* stop the main GTK+ loop
*/
g_signal_connect (window, "destroy", G_CALLBACK (gtk_main_quit), NULL);
/* Create the "Hello, World" label */
label = gtk_label_new ("Hello, World");
/* and insert it into the main window */
gtk_container_add (GTK_CONTAINER (window), label);
/* make sure that everything, window and label, are visible */
gtk_widget_show_all (window);
/* start the main loop, and let it rest there until the application is closed */
gtk_main ();
return 0;
}
制作文件
# Makefile for Hello World Program (lab0).
all: lab0
lab0: lab0.o
g++ -Wall lab0.o -o lab0
lab0.o: lab0.c
g++ -Wall -c lab0.c -o lab0.o
我真的需要让 gtk 工作。请帮我。
【问题讨论】: