Fixed name of opengl package. I thought this was committed already!
[cl-glfw/jecs.git] / cl-glfw.asd
blob6e6e2146f70768e52d850ce23014537462fbdf27
1 (defpackage #:cl-glfw-system
2   (:use #:asdf #:cl))
4 (in-package #:cl-glfw-system)
5  
6 (defsystem "cl-glfw"
7   :description "Common Lisp bindings for GLFW"
8   :version "0.1"
9   :author "William Robinson <airbaggins@users.sf.net>"
10   :licence "Public Domain"
11   :depends-on ("cffi")
12   :components ((:module "lib"
13                         :components ((:file "opengl")
14                                      (:file "opengl-convenience" :depends-on ("opengl"))
15                                      (:file "opengl-extensions" :depends-on ("opengl"))
16                                      (:file "glu" :depends-on ("opengl"))
17                                      (:file "glfw" :depends-on ("opengl"))))))