/src/wrappers/gtk/examples/iconview/icon_view_demo.ace

http://github.com/tybor/Liberty · Unknown · 52 lines · 37 code · 15 blank · 0 comment · 0 complexity · 7b4835f1881c94680b6cbaad1cea22b5 MD5 · raw file

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