/src/wrappers/gtk/examples/dnd/gdk_events.ace

http://github.com/tybor/Liberty · Unknown · 67 lines · 52 code · 15 blank · 0 comment · 0 complexity · 823e526e330f8fdbfe2f57e4063ec6af MD5 · raw file

  1. system
  2. "gdk_events"
  3. root
  4. GDK_EVENTS: 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. gdk: "${eiffel_libraries}/eiffel-gdk/loadpath.se"
  21. gtk: "${eiffel_libraries}/eiffel-gtk/loadpath.se"
  22. glib: "${eiffel_libraries}/eiffel-glib/loadpath.se"
  23. gobject: "${eiffel_libraries}/eiffel-gobject/loadpath.se"
  24. pango: "${eiffel_libraries}/eiffel-pango/loadpath.se"
  25. gdk_events: "."
  26. -- optional_cluster_name: "cluster_path_using_system_file_notation_here"
  27. -- default -- at this cluster level
  28. -- assertion (require)
  29. -- debug (no);
  30. -- trace (no);
  31. -- option -- for this cluster
  32. -- assertion (loop) : CLASS_NAME1, CLASS_NAME2;
  33. -- assertion (all) : CLASS_NAME3, CLASS_NAME4;
  34. -- -- ...
  35. -- debug (yes) : CLASS_NAME1, CLASS_NAME2, ...;
  36. -- debug ("KEY") : CLASS_NAME1, CLASS_NAME2, ...;
  37. -- -- ...
  38. -- trace : CLASS_NAME1, CLASS_NAME2;
  39. -- trace : CLASS_NAME3, CLASS_NAME4;
  40. -- -- ...
  41. -- end -- of one cluster
  42. -- Pull in SmartEiffel's standard library. Always put this last so
  43. -- that you can override options for parts of the library.
  44. standard: "${path_lib}/loadpath.se"
  45. external -- section for elements written in another language
  46. generate -- section
  47. no_strip(no);
  48. no_split(no);
  49. clean(no);
  50. c_compiler_options : "$(pkg-config --cflags gtk+-2.0)"
  51. linker_options : "$(pkg-config --libs gtk+-2.0)"
  52. end