1 (defpackage #:cl-glfw-opengl-system
4 (in-package #:cl-glfw-opengl-system)
6 (defsystem cl-glfw-opengl
7 :description "Common Lisp bindings for OpenGL (cl-glfw version)"
9 :author "William Robinson <airbaggins@users.sf.net>"
10 :licence "Public Domain"
11 :depends-on (cffi cl-glfw-types)
12 :components ((:module lib
15 ((:file "scaffolding")
16 (:file "opengl-package") ; template-expanded
17 (:file "opengl-type-map") ; template-expanded
18 (:file "opengl-library")
19 (:file "opengl") ; template-expanded
20 (:file "opengl-convenience")
21 (:file "opengl-extensions")))))
24 (pushnew (merge-pathnames
26 (make-pathname :name nil
30 (truename (asdf:system-definition-pathname '#:cl-glfw-opengl))))
31 asdf:*central-registry*)