chiark / gitweb /
Fixed memory corruption problem in KEYVAL-NAME
[clg] / gtk / gtk.asd
CommitLineData
205d5028 1;;; -*- Mode: lisp -*-
2
3(asdf:oos 'asdf:load-op :clg-tools)
4
5(defpackage "GTK-SYSTEM"
a006ed60 6 (:use "COMMON-LISP" "ASDF" "PKG-CONFIG"))
205d5028 7
8(in-package "GTK-SYSTEM")
9
5f1ff326 10(pkg-exists-p "gtk+-2.0" :atleast-version "2.4.0" :error t)
ac40261e 11
205d5028 12(defsystem gtk
5f1ff326 13 :depends-on (gffi glib gdk pango atk)
205d5028 14 :components ((:file "defpackage")
f1acb822 15 (:library "libgtk-2.0"
4ef334a0 16 :libdir #.(pkg-libdir "gtk+-2.0")
f1acb822 17 :libname #-win32 "libgtk-x11-2.0"
18 #+win32 "libgtk-win32-2.0-0")
205d5028 19 (:unix-dso "alien"
8666965a 20 :ldflags #.(pkg-libs "gtk+-2.0")
205d5028 21 :components ((:c-source-file "glue"
22 :cflags #.(pkg-cflags "gtk+-2.0")))
f1acb822 23 :depends-on (#+cmu "libgtk-2.0"))
205d5028 24 (:file "gtkobject"
f1acb822 25 :depends-on ("defpackage" "alien" "libgtk-2.0"))
205d5028 26 (:file "gtktypes" :depends-on ("gtkobject"))
27 (:file "gtkwidget" :depends-on ("gtktypes"))
28 (:file "gtkcontainer" :depends-on ("gtktypes"))
985713d7 29 (:file "gtktree" :depends-on ("gtktypes"))
5227ca48 30 (:file "gtktext" :depends-on ("gtktypes"))
9b112b7e 31 (:file "gtkaction" :depends-on ("gtktypes" "gtk"))
5ac91f56 32 (:file "gtkselection" :depends-on ("gtktypes"))
18ffc6e0 33 (:file "gtkstyle" :depends-on ("gtktypes"))
5f1ff326 34 (:file "gtk" :depends-on ("gtktypes" "gtkcontainer"))
205d5028 35 (:file "gtkutils" :depends-on ("gtk"))
5ac91f56 36 (:file "export" :depends-on ("gtktypes" "gtkwidget" "gtkcontainer" "gtk" "gtktree" "gtkaction" "gtkselection" "gtkutils" "gtkstyle"))))