﻿--- include dir --- (C/C++ - General - Additional Include Directories)
..\..\include
..\..\uget-gtk
D:\devpack\gtk2\lib\glib-2.0\include
D:\devpack\gtk2\lib\gtk-2.0\include
D:\devpack\gtk2\include\glib-2.0
D:\devpack\gtk2\include\gtk-2.0
D:\devpack\gtk2\include\pango-1.0
D:\devpack\gtk2\include\atk-1.0
D:\devpack\gtk2\include\cairo
D:\devpack\gtk2\include
D:\devpack\curl-msvc\include

--- lib dir --- (Linker - General - Additional Library Directories)
D:\devpack\gtk2\lib
D:\devpack\curl-msvc\lib

--- lib --- (Linker - Input - Additional Dependencies)
glib-2.0.lib
gmodule-2.0.lib
gthread-2.0.lib
gobject-2.0.lib
gdk_pixbuf-2.0.lib
gdk-win32-2.0.lib
gtk-win32-2.0.lib
pango-1.0.lib
pangowin32-1.0.lib
atk-1.0.lib
cairo.lib
intl.lib
libcurl.lib
Ws2_32.lib
Winmm.lib

--- project (solution) ---
1. Caeate
  Name     : ProjectName
  Location : path\ProjectDir
  Don't "Create directory for solution"

2. Rename path\ProjectDir\ProjectName to path\ProjectDir\msvc

3. Commit follow file only
  *.sln
  *.vcproj

--- project type ---
1. Windows Console
   (Linker - System - SubSystem) - Select "Console"
   (C/C++ - Preprocessor - Preprocessor Definitions) - add "_CONSOLE", remove "_WINDOWS"

2. Windows GUI
   (Linker - System - SubSystem) - Select "Windows"
   (C/C++ - Preprocessor - Preprocessor Definitions) - add "_WINDOWS", remove "_CONSOLE"

3. Windows Dynamic Library (DLL)
   (General - Configuration Type) - Select "Dynamic Library (.dll)"
   (C/C++ - Preprocessor - Preprocessor Definitions) - add "_USRDLL"

4. Windows Static Library (LIB)
   (General - Configuration Type) - Select "Static Library (.lib)"
   (C/C++ - Preprocessor - Preprocessor Definitions) - add "_LIB"

--- debug ---
   (Debug - Environment) - add "PATH=C:\Program Files\GTK2-Runtime\bin"
                        or add "PATH=C:\Program Files\Common Files\GTK\2.0\bin"
