-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
56 lines (42 loc) · 2.42 KB
/
README
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Welcome to Lumen!
Lumen is (or will be someday) a GUI toolkit for Ada.
It is written entirely in Ada (with a few insignificant exceptions, like in
the Linux joystick code, no direct calling of ioctl from Ada yet), based on
OpenGL and thus expected to be portable across OS's (currently runs on X11
sytems like Linux and the *BSD's).
Once somebody steps up and writes the low-level portions for Windows, it
will run there too.
The root of the documentation source is "doc/index.markdown".
Enjoy, and visit the public git repository at either of these two places:
https://github.com/darkestkhan/lumen2
There are a number of simple demo applications that show off various aspects
of Lumen; they are available here:
https://github.com/darkestkhan/lumen2-demos
To build with different than default CPU switches add "-XCPU=switches" to
gprbuild command. Defualt CPU switches are: "-march=native -fPIC"
To build lumen2 on Debian-like systems you will need to install these packages:
libx11-dev
libglu1-mesa-dev
libgl1-mesa-dev
libdlrestrictions-dev
To build projects depending on lumen you will need to add following linker
switches:
-lX11 -GL -lGLU -ldl
This is a fork of original lumen, hosted at:
https://github.com/karakalo/Lumen
Entire library is covered by ISC license.
------------------------------------------------------------------------------
-- Copyright © 2015 - 2016 darkestkhan --
------------------------------------------------------------------------------
-- Permission to use, copy, modify, and/or distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- The software is provided "as is" and the author disclaims all warranties --
-- with regard to this software including all implied warranties of --
-- merchantability and fitness. In no event shall the author be liable for --
-- any special, direct, indirect, or consequential damages or any damages --
-- whatsoever resulting from loss of use, data or profits, whether in an --
-- action of contract, negligence or other tortious action, arising out of --
-- or in connection with the use or performance of this software. --
------------------------------------------------------------------------------