DEADSOFTWARE

Ubuntu (amd64) build and run dependencies added
[bbcp.git] / README
1 Ducumentation (Russian):
3 http://gitlab.molpit.com/oberon/blackbox-freenix/wikis/home
5 Directories structure:
7 BlackBox/
8 universal development environment
9 synchronized with original BlackBox 1.6
11 examples/
12 some outdated examples
13 console/
14 simple console application
15 fpstest/
16 loop test
17 server/
18 static web-server as the example of an application for Linux OS
20 To build BlackBox:
22 if you have 64-bit version of Ubuntu, do this:
23 sudo apt-get install libc6-dev-i386
24 sudo apt-get install libgtk2.0-0:i386
26 cd BlackBox
27 ./switch-target `uname -s` GUI
28 ./build
30 To run BlackBox (after build):
32 ./run-BlackBox
33 or
34 ./run-BlackBox-2
36 To create BlackBox assembly (after build):
38 ./export <outputDirectory>
40 Example: build, create assembly in /tmp, run BlackBox from assembly:
41 cd BlackBox
42 ./switch-target `uname -s` GUI
43 ./build
44 ./export /tmp/BlackBox-`uname -s`
45 cd /tmp/BlackBox-`uname -s`
46 ./run-BlackBox