forked from lispgames/glop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
glop.asd
27 lines (25 loc) · 1010 Bytes
/
glop.asd
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
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; indent-tabs-mode: nil -*-
(defsystem glop
:license "MIT"
:version "git"
:description "Direct FFI bindings for OpenGL window and context management"
:author "Morgan Veyret <patzy at appart kicks-ass net>"
:depends-on (cffi)
:components
((:module "src"
:serial t
:components
((:file "package")
(:file "utils")
#+unix(:module "x11"
:serial t
:components ((:file "xlib")
(:file "glx")
(:file "display-ctrl")
(:file "glop-x11")))
#+win32(:module "win32"
:serial t
:components ((:file "win32")
(:file "wgl")
(:file "glop-win32")))
(:file "glop")))))