initial import
qt.examples.mbd
Sun Apr 5 17:36:46 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* initial import
--- old-qt.examples/qt.examples.mbd 1970-01-01 01:00:00.000000000 +0100
+++ new-qt.examples/qt.examples.mbd 2014-10-30 07:39:35.000000000 +0100
@@ -0,0 +1,38 @@
+;;;; -*- 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.examples ()
+ (:version 0 0 1)
+ (:documentation "Qt examples.")
+ (:author "Tobias Rautenkranz")
+ (:needs :qt :qt.webkit :qt.uitools :sysdef.cmake)
+ (:components
+ ("src" module
+ (:components
+ ("CMakeLists" cmake-file)
+ "package"
+ ("hello-world" (:needs "package"))
+ ("hello-world-quit" (:needs "package"))
+ ("i18n-hello-world" (:needs "package" "CMakeLists"))
+ ("tick-tack-toe" (:needs "package"))
+ ("launcher" (:needs "package"))
+ ("ui" (:needs "package"))
+ ("repl" (:needs "package"))
+ ("class-browser" (:needs "package"))))))