README 810 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Ducumentation (Russian):
  2. http://gitlab.molpit.com/idenisov/blackbox-linux/wikis/home
  3. Directories structure:
  4. new/
  5. universal development environment
  6. synchronized with original BlackBox 1.6
  7. examples/ (all axamples are not tested on `new` version yet)
  8. server/
  9. static web-server as the example of an application for Linux OS
  10. console/
  11. simple console application
  12. fpstest/
  13. loop test
  14. To build BlackBox:
  15. cd new
  16. ./switch-target `uname -s` GUI
  17. ./build
  18. To run BlackBox (after build):
  19. cd new
  20. ./run-BlackBox
  21. To create BlackBox assembly (after build):
  22. cd ./new
  23. ./export <outputDirectory>
  24. Example: build, create assembly in /tmp, run BlackBox from assembly:
  25. cd new
  26. ./switch-target `uname -s` GUI
  27. ./build
  28. ./export /tmp/BlackBox-`uname -s`
  29. cd /tmp/BlackBox-`uname -s`
  30. ./run-BlackBox