link_GDK.xcpjh


//////////////////// GDK //////////////////////
/*
GDK (GIMP Drawing Kit) is a computer graphics library that acts as a wrapper around the low-level 
drawing and windowing functions provided by the underlying graphics system. Originally developed on 
the X Window System for the GIMP raster graphics editor,[3] GDK lies between the display server and 
the GTK+ library, handling basic rendering such as drawing primitives, raster graphics (bitmaps), 
cursors, fonts, as well as window events and drag-and-drop functionality.

Like GTK+, GDK is licensed under the GNU Lesser General Public License.

The GDK-Pixbuf is a toolkit for image loading and pixel buffer manipulation. It is used by GTK+ 2 and 
GTK+ 3 to load and manipulate images. In the past it was distributed as part of GTK+ 2 but it was 
split off into a separate package in preparation for the transition to GTK+ 3.
*/

@if (IsWindowsPlatform)
{    
    +cpp("Win32")
    {
        /I "$(GTKPLUS_WIN32_INCLUDE)/gdk-pixbuf-2.0" 
    }
    +cpp("x64")
    {
        /I "$(GTKPLUS_WIN64_INCLUDE)/gdk-pixbuf-2.0" 
    }

    +link("Win32")
    {
        "$(GTKPLUS_WIN32_LIB)/libgdk-3-0.lib"
        "$(GTKPLUS_WIN32_LIB)/libgdk_pixbuf-2.0-0.lib"
    }
    +link("x64")
    {
        "$(GTKPLUS_WIN64_LIB)/libgdk-3-0.lib"
        "$(GTKPLUS_WIN64_LIB)/libgdk_pixbuf-2.0-0.lib"
    }
}