Ignore some temp files
[cl-glfw.git] / cl-glfw-opengl-core.asd
blob8294c6779b9413844d9f233660ba5e77541542f1
1 (defpackage #:cl-glfw-opengl-system
2   (:use #:asdf #:cl))
4 (in-package #:cl-glfw-opengl-system)
5  
6 (defsystem cl-glfw-opengl-core
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 cl-glfw-types)
12   :components ((:module lib 
13                         :serial t
14                         :components 
15                         ((:file "scaffolding")
16                          (:file "opengl-package") ; template-expanded
17                          (:file "opengl-type-map") ; template-expanded
18                          (:file "opengl-library")
19                          (:file "opengl-core") ; template-expanded
20                          (:file "opengl-convenience")
21                          (:file "opengl-extensions")))))
24 (pushnew (merge-pathnames
25           #P"lib/"
26           (make-pathname :name nil 
27                          :type nil 
28                          :version nil
29                          :defaults
30                          (truename (asdf:system-definition-pathname '#:cl-glfw-opengl-core))))
31          asdf:*central-registry*)