/src/wrappers/gtk/examples/expander/expander-demo.ace
Unknown | 46 lines | 32 code | 14 blank | 0 comment | 0 complexity | a15935f14a336b6f36944c6c0179f7ee MD5 | raw file
1system "expander_demo" 2 3root EXPANDER_DEMO: make 4 5default -- section of the system 6 assertion (all); 7 -- Choose the appropriate value: boost, no, require, ensure, invariant, loop, check, all. 8 9 assertion_flat_check (no); 10 11 debug (yes); 12 trace (no); 13 collect (yes); 14 no_style_warning (no); 15 no_warning (no); 16 verbose (no); 17 manifest_string_trace (no); 18 high_memory_compiler (no); 19 profile (no); 20 relax (yes); 21 22cluster -- section 23 gtk: "${eiffel_libraries}/eiffel-gtk/loadpath.se" 24 gdk: "${eiffel_libraries}/eiffel-gdk/loadpath.se" 25 glib: "${eiffel_libraries}/eiffel-glib/loadpath.se" 26 gobject: "${eiffel_libraries}/eiffel-gobject/loadpath.se" 27 pango: "${eiffel_libraries}/eiffel-pango/loadpath.se" 28 29 expander_demo: "." 30 31 32 standard: "${path_lib}/loadpath.se" 33 34external -- section for elements written in another language 35 36 37generate -- section 38 no_strip(no); 39 no_split(no); 40 clean(no); 41 42 c_compiler_options : "$(pkg-config --cflags gtk+-2.0)" 43 44 linker_options : "$(pkg-config --libs gtk+-2.0)" 45 46end