initial import
Annotate for file qt.mbd
2009-04-05 tobias 1 ;;;; -*- Mode: lisp; indent-tabs-mode: nil -*-
17:56:16 ' 2
' 3 ;;; SYSDEF.CMAKE
' 4 (defpackage :sysdef.cmake
' 5 (:use :cl :sysdef)
' 6 (:export :cmake-file :cmake-library))
' 7
' 8 (in-package :sysdef.cmake)
' 9 (defclass sysdef.cmake:cmake-file (source-file)
' 10 ()
' 11 (:default-initargs :type "txt"))
' 12
' 13 (defclass sysdef.cmake:cmake-library (component)
' 14 ())
' 15 ;;; end SYSDEF.CMAKE
' 16
' 17 (in-package :sysdef-user)
' 18 (eval-when (:compile-toplevel :load-toplevel :execute)
' 19 (use-package :sysdef.cmake))
' 20
' 21 (define-system :qt ()
' 22 (:version 0 0 1)
' 23 (:documentation "Smoke Qt bindings.")
' 24 (:keywords "GUI" "Qt")
' 25 (:author "Tobias Rautenkranz")
' 26 (:components
' 27 ("CMakeLists" sysdef.cmake:cmake-file)
' 28 ("src" module
' 29 (:needs "CMakeLists")
' 30 (:components
' 31 ("CMakeLists.txt" static-file)
' 32 "package"
' 33 ("lib" module
' 34 (:needs "package")
' 35 (:components
' 36 ("libqt-smoke-extra" sysdef.cmake:cmake-library)
' 37
' 38 ("CMakeLists.txt" static-file)
' 39 ("qt-smoke.cpp" static-file)
' 40 ("lisp-object.h" static-file)
' 41 ("lisp-object.cpp" static-file)
' 42 ("qstring.cpp" static-file)
' 43 ("qstringlist.cpp" static-file)))
' 44
' 45 ("qt" (:needs "package" "lib"))
' 46 ("object" (:needs "qt"))
' 47 ("application" (:needs "qt"))
' 48 ("qstring" (:needs "qt"))
' 49 ("msg-handler" (:needs "lib"))
' 50 ("painter" (:needs "qt"))
' 51 ("i18n" (:needs "qt"))
' 52 ("lisp-object" (:needs "qt" "lib"))
' 53 ("signal-slot" module
' 54 (:needs "lisp-object")
' 55 (:serial t)
' 56 (:components
' 57 "signal-slot"
' 58 "translate"
' 59 "signal"
' 60 "slot"
' 61 "connect"))
' 62 ("string-list" (:needs "qt" "lib" "qstring"))
' 63 ("variant" (:needs "qt" "qstring" "lisp-object"))
' 64 ("properties" (:needs "variant")))))
' 65 (:needs :smoke :sysdef.cmake :cffi))