Updated for GLFW 2.7
[cl-glfw.git] / cl-glfw.asd
blobf050e5c8d5963885ec77dc9b723d41b95dbd755a
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.3"
9   :author "William Robinson <airbaggins@users.sf.net>"
10   :licence "Public Domain"
11   :depends-on (cffi cl-glfw-types)
12   :components ((:module lib :serial t 
13                         :components ((:file "glfw-package")
14                                      (:file "glfw-lib")
15                                      (:file "glfw-macros")
16                                      (:file "glfw")))))