initial import
Annotate for file qt.examples.mbd
2009-04-05 tobias 1 ;;;; -*- Mode: lisp; indent-tabs-mode: nil -*-
15:36:46 ' 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.examples ()
' 22 (:version 0 0 1)
' 23 (:documentation "Qt examples.")
' 24 (:author "Tobias Rautenkranz")
' 25 (:needs :qt :qt.webkit :qt.uitools :sysdef.cmake)
' 26 (:components
' 27 ("src" module
' 28 (:components
' 29 ("CMakeLists" cmake-file)
' 30 "package"
' 31 ("hello-world" (:needs "package"))
' 32 ("hello-world-quit" (:needs "package"))
' 33 ("i18n-hello-world" (:needs "package" "CMakeLists"))
' 34 ("tick-tack-toe" (:needs "package"))
' 35 ("launcher" (:needs "package"))
' 36 ("ui" (:needs "package"))
' 37 ("repl" (:needs "package"))
' 38 ("class-browser" (:needs "package"))))))