Skip to content

Commit

Permalink
Added a defsystem for LispWorks.
Browse files Browse the repository at this point in the history
  • Loading branch information
tuscland committed May 24, 2017
1 parent 857336a commit 2b096fd
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions defsystem.lisp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
;;; -*- Mode: Lisp; Package: CL-USER; Syntax: ANSI-Common-Lisp -*-

(in-package :cl-user)

;;; File: defsystem.lisp
;;; Contents: LispWorks system definition
;;;
;;; This file is part of FSet. Copyright (c) 2007-2012 Scott L. Burson.
;;; FSet is licensed under the Lisp Lesser GNU Public License, or LLGPL.
;;; See: http://opensource.franz.com/preamble.html
;;; This license provides NO WARRANTY.


(defsystem "FSET"
(:default-pathname "Code")
:members ("defs"
"port"
"order"
"wb-trees"
"fset"
"tuples"
"reader"
"testing"
"interval"
"relations"
"complement-sets"
"bounded-sets"
"lispworks-inspect")
:rules ((:in-order-to :compile :all
(:requires (:load :previous)))))

0 comments on commit 2b096fd

Please sign in to comment.