initial import
cl-smoke.benchmark.mbd
Mon May 25 16:59:32 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* initial import
--- old-benchmark/cl-smoke.benchmark.mbd 1970-01-01 01:00:00.000000000 +0100
+++ new-benchmark/cl-smoke.benchmark.mbd 2014-10-30 07:07:31.000000000 +0100
@@ -0,0 +1,33 @@
+;;;; -*- 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 :cl-smoke.benchmark ()
+ (:version 0 0 1)
+ (:documentation "Benchmark cl-smoke agains C++."
+ (:serial t)
+ (:components
+ "package"
+ ("CMakeLists" sysdef.cmake:cmake-file)
+ ("libcl-smoke-benchmark" sysdef.cmake:cmake-library)
+ "cxx"
+ "lisp-benchmark"
+ "benchmark")
+ (:needs :qt :cffi :sysdef.cmake))