DEADSOFTWARE

clean fps example and update README
[bbcp.git] / README
1 Ducumentation (Russian):
3 http://gitlab.molpit.org/blackbox/freenix/wikis/home
5 Directories structure:
7 BlackBox/
8 universal development environment
9 based on BlackBox 1.7-beta1
11 examples/
12 encoder/
13 encoding BlackBox subsystem by StdCoder from command line interface
14 fpstest/
15 loop test
16 server/
17 static single-thread web-server
19 Installation of required packages in Ubuntu 14.04 (should work also with other Debian-based OS):
21 32-bit version:
22 sudo apt-get install libgtk2.0-0 gtk2-engines gtk2-engines-murrine libcanberra-gtk-module
23 sudo apt-get install libgnomeui-0
25 64-bit version:
26 sudo apt-get install libc6-dev-i386
27 sudo dpkg --add-architecture i386
28 sudo apt-get update
29 sudo apt-get install libgtk2.0-0:i386 gtk2-engines:i386 gtk2-engines-murrine:i386 libcanberra-gtk-module:i386
30 sudo apt-get install libgnomeui-0:i386
32 Comments:
33 'libc6-dev-i386' is required for compilation of 'loader', after build it can be replaced by 'libc6-i386'
34 'libgnomeui-0:i386' is required only for run blackbox by 'run-BlackBox-2' starter
37 To build BlackBox:
38 cd BlackBox
39 ./switch-target `uname -s` GUI
40 ./build
42 To run BlackBox (after build):
44 ./run-BlackBox
45 for Linux version also you can run
46 ./blackbox
48 To create BlackBox assembly (after build):
50 ./export <outputDirectory>
52 To clean the BlackBox folder:
53 ./switch-target none
54 ./clean
56 Example: build, create assembly and run BlackBox from assembly:
57 cd BlackBox
58 ./switch-target `uname -s` GUI
59 ./build
60 ./export ../`uname -s`_GUI
61 ./switch-target none
62 ./clean
63 cd ../`uname -s`_GUI
64 ./run-BlackBox