chiark / gitweb /
Added function to get the GDK window associated to a Cairo xlib surface
[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
04725e4e 8(pkg-exists-p "gtk+-2.0" :atleast-version "2.4.0" :error t)
a181b855 9
a2f82d98 10(defsystem gdk
04725e4e 11 :depends-on (gffi glib pango #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0") cairo)
a2f82d98 12 :components ((:file "defpackage")
b2ce569e 13 (:library "libgdk_pixbuf-2.0"
14 :libdir #.(pkg-variable "gtk+-2.0" "libdir"))
15 (:library "libgdk-x11-2.0"
16 :libdir #.(pkg-variable "gtk+-2.0" "libdir"))
a2f82d98 17 (:unix-dso "alien"
b2ce569e 18 :components ((:c-source-file "glue"
a850cb62 19 :cflags #.(pkg-cflags "gtk+-2.0")))
20 :depends-on ("libgdk-x11-2.0"))
b2ce569e 21 (:file "gdktypes" :depends-on ("defpackage" "alien"
22 "libgdk_pixbuf-2.0"
23 "libgdk-x11-2.0"))
a2f82d98 24 (:file "gdkevents" :depends-on ("gdktypes"))
93cd8228 25 (:file "pixbuf" :depends-on ("gdktypes"))
a2f82d98 26 (:file "gdk" :depends-on ("gdkevents"))
27 (:file "export" :depends-on ("gdkevents" "gdktypes" "gdk"))))