jfc's patch for reorganising cl-glfw-opengl and cl-glfw packages. Changed need propog...
[cl-glfw.git] / cl-glfw-opengl.asd
blobe6538867388ab61abca552327548b1dc6aab503d
1 (defpackage #:cl-glfw-opengl-system
2   (:use #:asdf #:cl))
4 (in-package #:cl-glfw-opengl-system)
5  
6 (defsystem cl-glfw-opengl
7   :description "Common Lisp bindings for OpenGL (cl-glfw version)"
8   :version "0.3"
9   :author "William Robinson <airbaggins@users.sf.net>"
10   :licence "Public Domain"
11   :depends-on (cffi)
12   :components ((:module lib 
13                         :serial t
14                         :components 
15                         ((:file "opengl-package")
16                          (:file "opengl-types")
17                          (:file "opengl")
18                          (:file "opengl-convenience")
19                          (:file "opengl-extensions")))))
22 (pushnew (merge-pathnames
23           #P"lib/"
24           (make-pathname :name nil 
25                          :type nil 
26                          :version nil
27                          :defaults
28                          (truename (asdf:system-definition-pathname '#:cl-glfw-opengl))))
29          asdf:*central-registry*)