-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcl-glfw-opengl-core.asd
More file actions
31 lines (27 loc) · 1.14 KB
/
cl-glfw-opengl-core.asd
File metadata and controls
31 lines (27 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
(defpackage #:cl-glfw-opengl-system
(:use #:asdf #:cl))
(in-package #:cl-glfw-opengl-system)
(defsystem cl-glfw-opengl-core
:description "Common Lisp bindings for OpenGL (cl-glfw version)"
:version "0.3"
:author "William Robinson <airbaggins@users.sf.net>"
:licence "Public Domain"
:depends-on (cffi cl-glfw-types)
:components ((:module lib
:serial t
:components
((:file "scaffolding")
(:file "opengl-package") ; template-expanded
(:file "opengl-type-map") ; template-expanded
(:file "opengl-library")
(:file "opengl-core") ; template-expanded
(:file "opengl-convenience")
(:file "opengl-extensions")))))
(pushnew (merge-pathnames
#P"lib/"
(make-pathname :name nil
:type nil
:version nil
:defaults
(truename (asdf:system-definition-pathname '#:cl-glfw-opengl-core))))
asdf:*central-registry*)