DEADSOFTWARE

поправил скрипты запуска примеров с учетом положения среды, закомментрировал в HostGn...
[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 cd BlackBox
23 ./switch-target `uname -s` GUI
24 ./build
26 To run BlackBox (after build):
28 ./run-BlackBox
29 or
30 ./run-BlackBox-2
32 To create BlackBox assembly (after build):
34 ./export <outputDirectory>
36 Example: build, create assembly in /tmp, run BlackBox from assembly:
37 cd BlackBox
38 ./switch-target `uname -s` GUI
39 ./build
40 ./export /tmp/BlackBox-`uname -s`
41 cd /tmp/BlackBox-`uname -s`
42 ./run-BlackBox