Newer
Older
cl-todo / cl-todo.asd
;;;;
;;;; A simple TODO app for the GNOME desktop
;;;; (mainly written to try out GTK+Lisp)
;;;;
;;;; Copy this directory to $QUICKLISP_DIR/local_projects, then run
;;;; (ql:quickload "cl-todo") to load.
;;;;
;;;; (c) Daniel Vedder 2020
;;;; Licensed under the terms of the MIT license
;;;;

(asdf:defsystem :cl-todo
	:long-name "cl-todo"
	:description "A simple TODO widget for the GNOME desktop"
	:author "Daniel Vedder <daniel@terranostra.one>"
	:homepage "https://git.synoikos.de/daniel/cl-todo"
	:license "MIT"
	:version "0.1"
	:depends-on (:uiop :cl-cffi-gtk)
	:serial t
	:components
	((:file "package")
		(:file "gtk-ui")
		(:file "cl-todo"))
	:build-operation "program-op"
	:build-pathname "cl-todo"
	:entry-point "cl-todo:launch")