close

由於要在linux環境下編譯opencv library,需要GTK的開發環境,所以記錄一下如何建立開發環境。

以下內容參考: http://www.cnblogs.com/niocai/archive/2011/07/15/2107472.html

1. 安裝gcc/g++/gdb/make 等基本编程工具

$sudo apt-get install build-essential

2. 安裝 cmake gcc git 等編譯工具

$sudo apt-get install cmake gcc

3. 安裝 libgtk2.0-dev libglib2.0-dev 等開發相關的函式庫

$sudo apt-get install gnome-core-devel

4.  配置在编譯GTK程序時自動找出header file 及library 位置

$ sudo apt-get install pkg-config

5. 安裝devhelp GTK help資料庫

$ sudo apt-get install devhelp

6. 安裝gtk/glib 的API参考手册及其他檔案

$sudo apt-get install libglib2.0-doc libgtk2.0-doc

7.  安裝gnome

sudo apt-get install gnome

8.  安裝GTK的界面,GTK是開發Gnome窗口的c/c++ 圖形化介面library 

$sudo apt-get install glade-gnome glade-common glade-doc

9.  安裝 gtk+2.0所需的所有文件

$sudo apt-get install libgtk2.0*

////////////////////////////////////////////////////////////

確認版別

1.  查看是否裝了GTK

pkg-config --list-all grep gtk

2.查看pkg-config版別

$pkg-config --version

3.查看GTK2.0版別

$pkg-config --modversion gtk+-2.0

//////////////////////////////////////////////////////////

測試程式

 
#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 until the application is closed */
    gtk_main();
    
    return 0;
}

編譯程式

$gcc -o helloworldgtk helloworld_gtk.c `pkg-config --cflags --libs gtk+-3.0`

執行

$./helloworldgtk

結果

如此一來,GTK開發環境建立完成。

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 ^_^ 的頭像
    ^_^

    一切的安排,都是最好的安排

    ^_^ 發表在 痞客邦 留言(0) 人氣()