From 19e909b1f86277a374b2c27f5257d26835a736a0 Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Mon, 16 Mar 2009 14:49:34 +0100 Subject: [PATCH] support loading of the dsv reading file. still need to convert to numeric. Signed-off-by: AJ Rossini --- lispstat.asd | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/lispstat.asd b/lispstat.asd index f2e4734..f6b0296 100644 --- a/lispstat.asd +++ b/lispstat.asd @@ -1,5 +1,5 @@ ;; -*- mode: lisp -*- -;;; Time-stamp: <2009-02-19 17:53:25 tony> +;;; Time-stamp: <2009-03-11 20:06:32 tony> ;;; Created: <2005-05-30 17:09:47 blindglobe> ;;; File: lispstat.asd ;;; Author: AJ Rossini @@ -114,18 +114,29 @@ :components ((:static-file "version" :pathname #p"version.lisp-expr") (:static-file "LICENSE") (:static-file "README") + + ;; reading in DSV files for data access + (:module + "csv-data" + :pathname "src/data/" + :components + ((:file "test-cybertiggyr") + (:file "dsv-cybertiggyr" :depends-on ( "test-cybertiggyr")))) - (:module "packaging" - :pathname #p"src/" - :components - ((:file "packages"))) + (:module + "packaging" + :pathname #p"src/" + :depends-on ("csv-data") + :components + ((:file "packages"))) - (:module "proto-objects" - :pathname "src/objsys/" - :serial t - :depends-on ("packaging") - :components - ((:lispstat-lsp-source-file "lsobjects"))) + (:module + "proto-objects" + :pathname "src/objsys/" + :serial t + :depends-on ("packaging") + :components + ((:lispstat-lsp-source-file "lsobjects"))) (:module "lispstat-core" :pathname "src/basics/" @@ -166,13 +177,6 @@ |# )) - ;; reading in DSV files for data access - (:module - "csv-data" - :pathname "src/data/" - :components - ((:file "test-cybertiggyr") - (:file "dsv-cybertiggyr" :depends-on ( "test-cybertiggyr")))) ;; prototype and CLOS approaches. (:module -- 2.11.4.GIT