/src/wrappers/gtk/examples/text/text_demo.ace

http://github.com/tybor/Liberty · Unknown · 63 lines · 48 code · 15 blank · 0 comment · 0 complexity · 83ec2a238a83de1872fc32d28d784afe MD5 · raw file

  1. system
  2. "text_demo"
  3. root
  4. TEXT_DEMO: make
  5. default -- section of the system
  6. assertion (all);
  7. -- Choose the appropriate value: boost, no, require, ensure, invariant, loop, check, all.
  8. assertion_flat_check (no);
  9. debug (yes);
  10. trace (no);
  11. collect (yes);
  12. no_style_warning (no);
  13. no_warning (no);
  14. verbose (no);
  15. manifest_string_trace (no);
  16. high_memory_compiler (no);
  17. profile (no);
  18. relax (no);
  19. cluster -- section
  20. gtk: "${eiffel_libraries}/eiffel-gtk/loadpath.se"
  21. text_demo: "."
  22. -- optional_cluster_name: "cluster_path_using_system_file_notation_here"
  23. -- default -- at this cluster level
  24. -- assertion (require)
  25. -- debug (no);
  26. -- trace (no);
  27. -- option -- for this cluster
  28. -- assertion (loop) : CLASS_NAME1, CLASS_NAME2;
  29. -- assertion (all) : CLASS_NAME3, CLASS_NAME4;
  30. -- -- ...
  31. -- debug (yes) : CLASS_NAME1, CLASS_NAME2, ...;
  32. -- debug ("KEY") : CLASS_NAME1, CLASS_NAME2, ...;
  33. -- -- ...
  34. -- trace : CLASS_NAME1, CLASS_NAME2;
  35. -- trace : CLASS_NAME3, CLASS_NAME4;
  36. -- -- ...
  37. -- end -- of one cluster
  38. -- Pull in SmartEiffel's standard library. Always put this last so
  39. -- that you can override options for parts of the library.
  40. standard: "${path_lib}/loadpath.se"
  41. external -- section for elements written in another language
  42. generate -- section
  43. no_strip(no);
  44. no_split(no);
  45. clean(no);
  46. c_compiler_options : "$(pkg-config --cflags gtk+-2.0 gtk+-unix-print-2.0)"
  47. linker_options : "$(pkg-config --libs gtk+-2.0 gtk+-unix-print-2.0)"
  48. end