Skip to content

Commit

Permalink
Added package prefix to defsystem call and fixed indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralith committed Jan 6, 2010
1 parent 04951a4 commit 4836a7c
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions glop.asd
@@ -1,27 +1,27 @@
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; indent-tabs-mode: nil -*-

(defsystem glop
(asdf:defsystem glop
:license "MIT"
:version "git"
:description "Direct FFI bindings for OpenGL window and context management"
:author "Morgan Veyret <patzy at appart kicks-ass net>"
:depends-on (cffi)
:depends-on (:cffi)
:components
((:module "src"
:serial t
:components
((:file "package")
(:file "utils")
#+unix(:module "x11"
:serial t
:components ((:file "xlib")
(:file "glx")
(:file "display-ctrl")
(:file "glop-x11")))
#+win32(:module "win32"
:serial t
:components
((:file "package")
(:file "utils")
#+unix(:module "x11"
:serial t
:components ((:file "win32")
(:file "wgl")
(:file "glop-win32")))
(:file "glop")))))
:components ((:file "xlib")
(:file "glx")
(:file "display-ctrl")
(:file "glop-x11")))
#+win32(:module "win32"
:serial t
:components ((:file "win32")
(:file "wgl")
(:file "glop-win32")))
(:file "glop")))))

0 comments on commit 4836a7c

Please sign in to comment.