Skip to content

Instantly share code, notes, and snippets.

@jmercouris
Created December 27, 2017 15:13
Show Gist options
  • Save jmercouris/8c7ff859c3b6b4fc51c44c1a48188321 to your computer and use it in GitHub Desktop.
Save jmercouris/8c7ff859c3b6b4fc51c44c1a48188321 to your computer and use it in GitHub Desktop.
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; next.asd
(defsystem :next
:serial t
:depends-on (:cl-strings :cl-string-match :puri :queues.simple-queue
:sqlite :parenscript :cl-json :swank
(:require "cocoa") (:require "webkit"))
:pathname "source/"
:components ((:file "package")
(:file "global")
(:file "macro")
(:file "utility")
(:file "mode")
(:file "keymap")
(:file "minibuffer")
(:file "buffer")
(:file "bookmark")
(:file "history")
(:file "search-buffer")
(:file "jump-heading")
(:file "link-hint")
(:file "completion")
(:file "application-mode")
(:file "document-mode")
(:file "help")
(:file "base")))
(defsystem :next/cocoa
:depends-on (:next (:require "cocoa") (:require "webkit"))
:pathname "source/"
:components ((:file "cocoa/repl")
(:file "cocoa/utility")
(:file "cocoa/cocoa")
(:file "cocoa/application")))
(defsystem :next/gtk
:depends-on (:next)
:pathname "source/"
:components ((:file "gtk/gtk")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment