cl-grep

Simple implementation of grep
Log | Files | Refs

grep.asd (854B)


      1 ;; these new features only work when defined here in this file
      2 ;; putting into a separate file and loading into sbcl in the makefile
      3 ;; does not work
      4 
      5 ;; comment this to disable logging at compile time
      6 (pushnew :logging *features*)
      7 
      8 (asdf:defsystem grep
      9   :version "0.0.1"
     10   :author "Chander Govindarajan"
     11   :serial t
     12   :components ((:file "package")
     13                (:file "options")
     14                (:file "log")
     15                (:file "mmap")
     16                (:file "grep"))
     17   :depends-on (:uiop
     18                :filesystem-utils
     19                :pathname-utils
     20                (:feature :logging :vom)
     21                :lparallel
     22                :bordeaux-threads
     23                :cl-string-match
     24                :mmap
     25                :unix-opts
     26                :anaphora)
     27   :build-operation "program-op"
     28   :build-pathname "cl-grep"
     29   :entry-point "cl-grep:main")