Where should a Quicklisp QUICKLOAD go in my source? Nowhere?

前端 未结 4 2261
[愿得一人]
[愿得一人] 2021-02-15 10:11

Let\'s say I build an application on top of net.aserve and bordeaux-threads. My package declaration might look like this:

(defpackage :         


        
4条回答
  •  离开以前
    2021-02-15 10:54

    Use quickproject (accessible via (ql:quickload :quickproject)) to create a system for your application. As z_axis described, you can then fill the list of dependencies in the defsystem declaration (if you missed any when you called quickproject:make-project).

    If you create your new project in the local-projects path of you Quicklisp installation, you can quickload your project too (even if it's not part of the Quicklisp distribution yet). Quickloading your project will of course download the dependencies (if they are part of the Quicklisp distribution), then load them.

提交回复
热议问题