Added gio dependency
[clg] / gdk / gdk.asd
CommitLineData
a2f82d98 1;;; -*- Mode: lisp -*-
2
3(defpackage "GDK-SYSTEM"
b2ce569e 4 (:use "COMMON-LISP" "ASDF" "PKG-CONFIG"))
a2f82d98 5
6(in-package "GDK-SYSTEM")
7
f1acb822 8(pkg-exists-p "gdk-2.0" :atleast-version "2.4.0" :error t)
a181b855 9
a2f82d98 10(defsystem gdk
5cce23a0 11 :depends-on (gffi glib pango
12 #?(pkg-exists-p "gdk-2.0" :atleast-version "2.14.0")gio
13 #?(pkg-exists-p "gdk-2.0" :atleast-version "2.8.0")cairo)
a2f82d98 14 :components ((:file "defpackage")
b2ce569e 15 (:library "libgdk_pixbuf-2.0"
6930298a 16 :libdir #.(pkg-libdir "gdk-2.0")
5cce23a0 17 :libname #-win32 "libgdk_pixbuf-2.0"
6930298a 18 #+win32 "libgdk_pixbuf-2.0-0")
f1acb822 19 (:library "libgdk-2.0"
6930298a 20 :libdir #.(pkg-libdir "gdk-2.0")
21 :libname #-win32 "libgdk-x11-2.0"
22 #+win32 "libgdk-win32-2.0-0")
23 (:shared-object "gdk-alien" :pathname "alien/"
24 :ldflags #.(pkg-libs "gdk-2.0")
25 :components ((:c-source-file "glue"
26 :cflags #.(pkg-cflags "gdk-2.0")))
27 :depends-on (#+cmu "libgdk-2.0"))
28 (:file "gdktypes" :depends-on ("defpackage" "gdk-alien"
b2ce569e 29 "libgdk_pixbuf-2.0"
f1acb822 30 "libgdk-2.0"))
a2f82d98 31 (:file "gdkevents" :depends-on ("gdktypes"))
93cd8228 32 (:file "pixbuf" :depends-on ("gdktypes"))
a2f82d98 33 (:file "gdk" :depends-on ("gdkevents"))
49280b47 34 (:file "export" :depends-on ("gdktypes" "gdkevents" "pixbuf" "gdk"))))