Difference between revisions of "Common Lisp Creating A New Project"
From copec
Line 21: | Line 21: | ||
==== Creates Files ==== | ==== Creates Files ==== | ||
− | + | ~/org.unaen.dev.src/lisp/newproject/ | |
− | * | + | * package.lisp |
− | * | + | * newproject.lisp |
− | * | + | * newproject.asd |
+ | * README.txt |
Revision as of 12:07, 15 September 2016
Contents
Overview
Template procedure on how to create new Common Lisp project.
Project Creation (Steps)
Make Sure Environment is Setup
Install quickproject
CL-USER> (ql:quickload "quickproject")
Create Project
CL-USER> (quickproject:make-project "~/org.unaen.dev.src/lisp/newproject/" :depends-on '(vecto hunchentoot)) "newproject"
Creates Files
~/org.unaen.dev.src/lisp/newproject/
- package.lisp
- newproject.lisp
- newproject.asd
- README.txt