add signal-slot benchmark & better graphs
Annotate for file cl-smoke.benchmark.mbd
2010-01-10 tobias 1 ;;;; -*- Mode: lisp; indent-tabs-mode: nil -*-
10:16:40 ' 2
' 3
' 4 ;;; SYSDEF.CMAKE
' 5 (defpackage :sysdef.cmake
' 6 (:use :cl :sysdef)
' 7 (:export :cmake-file :cmake-library))
' 8
' 9 (in-package :sysdef.cmake)
' 10 (defclass sysdef.cmake:cmake-file (source-file)
' 11 ()
' 12 (:default-initargs :type "txt"))
' 13
' 14 (defclass sysdef.cmake:cmake-library (component)
' 15 ())
' 16 ;;; end SYSDEF.CMAKE
' 17
' 18 (in-package :sysdef-user)
' 19 (eval-when (:compile-toplevel :load-toplevel :execute)
' 20 (use-package :sysdef.cmake))
' 21
' 22 (define-system :cl-smoke.benchmark ()
' 23 (:version 0 0 1)
2009-06-19 tobias 24 (:documentation "Benchmark cl-smoke agains C++.")
2010-01-10 tobias 25 (:serial t)
10:16:40 ' 26 (:components
' 27 "package"
' 28 ("CMakeLists" sysdef.cmake:cmake-file)
' 29 ("libcl-smoke-benchmark" sysdef.cmake:cmake-library)
' 30 "cxx"
' 31 "lisp-benchmark"
' 32 "benchmark")
2009-07-08 tobias 33 (:needs :qt :cffi :sysdef.cmake))