码迷,mamicode.com
首页 > Windows程序 > 详细

GTK:Installation and usage tutorial for Windows

时间:2015-01-13 06:44:09      阅读:436      评论:0      收藏:0      [点我收藏+]

标签:

Installation and usage tutorial for Windows

Releasing your program

You should always ship all needed DLLs & files with your binaries. End-users should not be required to download the bundle themselves.

Requirements

GTK+3 is known to work on Windows XP, Vista, 7 and 8 at this date.

Developers might want to have a working MinGW or MSVC installation.

Initial setup

  1. Download the latest all-in-one bundle and extract it using right-click -> "Extract All...". Choose a location at your will ; we will call it %GTKDIR% during next phases.

    技术分享

  2. Add %GTKDIR%\bin to your PATH environment variable :

    • Windows XP : right-click on "My Computer" -> "Properties".
    • Windows Vista/7 : right-click on "Computer" -> "Properties" -> "Advanced system settings".

     

    Click on "Advanced tab" -> "Environment variables". Double-click on PATH line in "System variables" panel, and add ;%GTKDIR%\bin at the end of the text.

    技术分享

    技术分享

  3. Optionally, open a console (Start -> Run -> "cmd" or Start -> search for "cmd") and type the following commands :

  4. pango-querymodules > %GTKDIR%\etc\pango\pango.modules
  5. gdk-pixbuf-query-loaders > %GTKDIR%\lib\gdk-pixbuf-2.0\2.10.0\loaders.cache
  6. gtk-query-immodules-3.0 > %GTKDIR%\lib\gtk-3.0\3.0.0\immodules.cache
  7. Let‘s test ! Still in a console or in the "Run" window, run the demo : gtk3-demo

    技术分享

Developing with GTK+3

MinGW

You should have a working installation, i.e. "gcc.exe" already in your PATH.

  1. In the console, verify that "pkg-config" prints out something reasonable by typing :

    pkg-config --cflags --libs gtk+-3.0

    技术分享

  2. Use this output in your further compilation commands, like this one :

    gcc -o gtk3.exe gtk3.c -mms-bitfields -Ic:/gtk3/include/gtk-3.0 -Ic:/gtk3/include/atk-1.0 -Ic:/gtk3/include/cairo [...]

    技术分享

  3. Test the resulting executable (here gtk3.exe) :

    技术分享

MSVC

  1. Open the Visual Studio Command Prompt :

    技术分享

  2. In the console, verify that "pkg-config" prints out something reasonable by typing :

    pkg-config --cflags gtk+-3.0

    技术分享

  3. Use this output in your further compilation commands, like this one, modifying the following : 

    • delete the "-mms-bitfields" switch ;
    • add the "-Dinline= /link /libpath:%GTKDIR% gtk-win32-3.0.lib gobject-2.0.lib" switches at the end.

     

    For instance :

    cl gtk3.c -mms-bitfields -Ic:/gtk3/include/gtk-3.0 -Ic:/gtk3/include/atk-1.0 [...] -Dinline= /link /libpath:c:/gtk3/lib gtk-win32-3.0.lib gobject-2.0.lib

    技术分享

    ("gtk-win32-3.0.lib gobject-2.0.lib" are a minimal requirement. You may want to add other .lib files as you need them)

  4. Test the resulting executable (here gtk3.exe) :

    技术分享

GTK:Installation and usage tutorial for Windows

标签:

原文地址:http://www.cnblogs.com/faeriesoft/p/4220307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!