close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

source: branches/f4grobner/grobner.asd@ 86

Last change on this file since 86 was 86, checked in by Marek Rychlik, 9 years ago

* empty log message *

File size: 717 bytes
Line 
1;;; -*- mode: lisp -*-
2(in-package :cl-user)
3
4#+sbcl(require :asdf)
5
6(defpackage #:grobner-system
7 (:use #:asdf #:cl))
8
9(in-package #:grobner-system)
10
11(defsystem grobner
12 :author "Marek Rychlik"
13 :licence "LLGPL"
14 :components ((:file "gauss-package")
15 (:file "gauss-config")
16 (:file "request-parser")
17 (:file "complex-number-parser")
18 (:file "matlab-matrix-parser")
19 (:file "gauss")
20 (:file "gauss-html-report-gen")
21 (:file "gauss-text-report-gen")
22 (:file "gauss-demo"))
23
24 :perform (load-op :after (op gauss)
25 (pushnew :gauss cl:*features*))
26
27 :depends-on (:cl-ppcre)
28 )
Note: See TracBrowser for help on using the repository browser.