initial import
qt.mbd
Sun Apr 5 19:56:16 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* initial import
--- old-qt.core/qt.mbd 1970-01-01 01:00:00.000000000 +0100
+++ new-qt.core/qt.mbd 2014-11-11 13:36:34.000000000 +0100
@@ -0,0 +1,65 @@
+;;;; -*- Mode: lisp; indent-tabs-mode: nil -*-
+
+;;; SYSDEF.CMAKE
+(defpackage :sysdef.cmake
+ (:use :cl :sysdef)
+ (:export :cmake-file :cmake-library))
+
+(in-package :sysdef.cmake)
+(defclass sysdef.cmake:cmake-file (source-file)
+ ()
+ (:default-initargs :type "txt"))
+
+(defclass sysdef.cmake:cmake-library (component)
+ ())
+;;; end SYSDEF.CMAKE
+
+(in-package :sysdef-user)
+(eval-when (:compile-toplevel :load-toplevel :execute)
+ (use-package :sysdef.cmake))
+
+(define-system :qt ()
+ (:version 0 0 1)
+ (:documentation "Smoke Qt bindings.")
+ (:keywords "GUI" "Qt")
+ (:author "Tobias Rautenkranz")
+ (:components
+ ("CMakeLists" sysdef.cmake:cmake-file)
+ ("src" module
+ (:needs "CMakeLists")
+ (:components
+ ("CMakeLists.txt" static-file)
+ "package"
+ ("lib" module
+ (:needs "package")
+ (:components
+ ("libqt-smoke-extra" sysdef.cmake:cmake-library)
+
+ ("CMakeLists.txt" static-file)
+ ("qt-smoke.cpp" static-file)
+ ("lisp-object.h" static-file)
+ ("lisp-object.cpp" static-file)
+ ("qstring.cpp" static-file)
+ ("qstringlist.cpp" static-file)))
+
+ ("qt" (:needs "package" "lib"))
+ ("object" (:needs "qt"))
+ ("application" (:needs "qt"))
+ ("qstring" (:needs "qt"))
+ ("msg-handler" (:needs "lib"))
+ ("painter" (:needs "qt"))
+ ("i18n" (:needs "qt"))
+ ("lisp-object" (:needs "qt" "lib"))
+ ("signal-slot" module
+ (:needs "lisp-object")
+ (:serial t)
+ (:components
+ "signal-slot"
+ "translate"
+ "signal"
+ "slot"
+ "connect"))
+ ("string-list" (:needs "qt" "lib" "qstring"))
+ ("variant" (:needs "qt" "qstring" "lisp-object"))
+ ("properties" (:needs "variant")))))
+ (:needs :smoke :sysdef.cmake :cffi))