-
-
Save jgarte/54756c0ab073f8f6f7fbeb2242dcd32b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Package: ASDF-USER -*- | |
(in-package :asdf-user) | |
(defsystem :my-new-system | |
:description "" | |
:author "Ed L <[email protected]>" | |
:license "MIT" | |
:depends-on (#:alexandria | |
#:uiop | |
#:serapeum | |
#:hunchentoot | |
#:yason) | |
:serial t | |
:components ((:file "main"))) ;;; looks for main.lisp in the current directory |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment