Skip to content

Instantly share code, notes, and snippets.

@jgarte
Forked from fiddlerwoaroof/minimal.asd
Created September 2, 2022 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgarte/54756c0ab073f8f6f7fbeb2242dcd32b to your computer and use it in GitHub Desktop.
Save jgarte/54756c0ab073f8f6f7fbeb2242dcd32b to your computer and use it in GitHub Desktop.
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Package: ASDF-USER -*-
(in-package :asdf-user)
(defsystem :my-new-system
:description ""
:author "Ed L <edward@elangley.org>"
: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