README 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Ducumentation (Russian):
  2. http://gitlab.molpit.org/blackbox/freenix/wikis/home
  3. Directories structure:
  4. BlackBox/
  5. universal development environment based on BlackBox 1.7
  6. examples/
  7. encoder/ - encoding BlackBox subsystem by StdCoder from command line interface
  8. fpstest/ - loop and fonts test
  9. server/ - static single-thread web-server
  10. Installation of required packages in Ubuntu 14.04 (should work also with other Debian-based OS):
  11. 32-bit version:
  12. sudo apt-get install libgtk2.0-0 gtk2-engines gtk2-engines-murrine libcanberra-gtk-module
  13. sudo apt-get install libgnomeui-0 gnome-icon-theme-full
  14. 64-bit version:
  15. sudo dpkg --add-architecture i386
  16. sudo apt-get update
  17. sudo apt-get install libgtk2.0-0:i386 gtk2-engines:i386 gtk2-engines-murrine:i386 libcanberra-gtk-module:i386
  18. sudo apt-get install libgnomeui-0:i386 gnome-icon-theme-full
  19. To build BlackBox:
  20. cd BlackBox
  21. ./switch-target `uname -s` GUI
  22. ./build
  23. To run BlackBox (after build):
  24. ./run-BlackBox
  25. for Linux version also you can run
  26. ./blackbox
  27. To create BlackBox assembly (after build):
  28. ./export <outputDirectory>
  29. To clean the BlackBox folder:
  30. ./switch-target none
  31. ./clean
  32. Example: build, create assembly and run BlackBox from assembly:
  33. cd BlackBox
  34. ./switch-target `uname -s` GUI
  35. ./build
  36. ./export ../`uname -s`_GUI
  37. ./switch-target none
  38. ./clean
  39. cd ../`uname -s`_GUI
  40. ./run-BlackBox