/src/wrappers/gtk/examples/calendar/calendar_demo.ace

http://github.com/tybor/Liberty · Unknown · 41 lines · 28 code · 13 blank · 0 comment · 0 complexity · e71c4f8c0b9ec9429f7b574ab5f2733c MD5 · raw file

  1. system "calendar_demo"
  2. root CALENDAR_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. no_style_warning (no);
  11. no_warning (no);
  12. verbose (no);
  13. manifest_string_trace (no);
  14. high_memory_compiler (no);
  15. profile (no);
  16. relax (yes);
  17. cluster -- section
  18. gtk: "${eiffel_libraries}/eiffel-gtk/loadpath.se"
  19. calendar_demo: "."
  20. standard: "${path_lib}/loadpath.se"
  21. external -- section for elements written in another language
  22. generate -- section
  23. no_strip(no);
  24. no_split(no);
  25. clean(no);
  26. c_compiler_options : "$(pkg-config --cflags gtk+-2.0)"
  27. linker_options : "$(pkg-config --libs gtk+-2.0)"
  28. end