Move this to the root folder; it seems this is where it belongs

This commit is contained in:
Benson Chu 2024-09-21 07:37:45 -05:00
parent 165982fa0a
commit 3645f6e477

View file

@ -6,11 +6,14 @@
:build-operation "program-op"
:entry-point "pegrep:entry"
:depends-on ("alexandria")
:components ((:file "pegrep"))
:components
((:module "./src"
:serial t
:components ((:file "pegrep"))))
,@args))
(def-pegrep :pegrep
:build-pathname "../build/pegrep"
:build-pathname "./build/pegrep"
:around-compile (lambda (next)
(proclaim '(optimize
(safety 3)
@ -19,7 +22,7 @@
(funcall next)))
(def-pegrep :pegrep/faf
:build-pathname "../build/pegrep-faf"
:build-pathname "./build/pegrep-faf"
:around-compile (lambda (next)
(proclaim '(optimize
(safety 0)
@ -28,7 +31,7 @@
(funcall next)))
(def-pegrep :pegrep/debug
:build-pathname "../build/pegrep-debug"
:build-pathname "./build/pegrep-debug"
:around-compile (lambda (next)
(proclaim '(optimize
(safety 3)
@ -40,6 +43,6 @@
:depends-on (:pegrep :fiveam)
:perform (test-op (o s)
(uiop:symbol-call :pegrep-tests :test-pegrep))
:components ((:module "../test"
:components ((:module "./test"
:serial t
:components ((:file "main")))))