/src/wrappers/gtk/examples/status_bar/status_bar_demo.ace

http://github.com/tybor/Liberty · Unknown · 52 lines · 36 code · 16 blank · 0 comment · 0 complexity · 62177712aae7c965c940107e15883600 MD5 · raw file

  1. system "status_bar_demo"
  2. root STATUS_BAR_DEMO: make
  3. default -- section of the system
  4. assertion (all);
  5. -- Choose the appropriate value: boost, no, require, ensure, invariant, loop, check, all.
  6. assertion_flat_check (no);
  7. debug (yes);
  8. trace (no);
  9. collect (yes);
  10. -- Choose yes here to add garbage collector support to your system.
  11. -- Choose no here to indicate that you don't want the garbage collector
  12. -- to be included in your system; no is the equivalent of the -no_gc
  13. -- flag in traditional command line mode.
  14. no_style_warning (no);
  15. no_warning (yes); -- shall be no
  16. verbose (no);
  17. manifest_string_trace (no);
  18. high_memory_compiler (no);
  19. profile (no);
  20. relax (yes);
  21. cluster -- section
  22. gtk: "${eiffel_libraries}/eiffel-gtk/loadpath.se"
  23. gdk: "${eiffel_libraries}/eiffel-gdk/loadpath.se"
  24. glib: "${eiffel_libraries}/eiffel-glib/loadpath.se"
  25. gobject: "${eiffel_libraries}/eiffel-gobject/loadpath.se"
  26. pango: "${eiffel_libraries}/eiffel-pango/loadpath.se"
  27. "."
  28. standard: "${path_lib}/loadpath.se"
  29. external -- section for elements written in another language
  30. generate -- section
  31. no_strip(no);
  32. no_split(no);
  33. clean(no);
  34. c_compiler_options : "$(pkg-config --cflags gtk+-2.0)"
  35. linker_options : "$(pkg-config --libs gtk+-2.0)"
  36. end