/src/wrappers/gtk/examples/toolbar/tool_bar_demo.ace
Unknown | 52 lines | 36 code | 16 blank | 0 comment | 0 complexity | 6df1667e4762302ebbede4c7a285fc39 MD5 | raw file
1system "tool_bar_demo" 2 3root TOOL_BAR_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 13 trace (no); 14 15 collect (yes); 16 -- Choose yes here to add garbage collector support to your system. 17 -- Choose no here to indicate that you don't want the garbage collector 18 -- to be included in your system; no is the equivalent of the -no_gc 19 -- flag in traditional command line mode. 20 21 no_style_warning (no); 22 no_warning (yes); -- shall be no 23 verbose (no); 24 manifest_string_trace (no); 25 high_memory_compiler (no); 26 profile (no); 27 relax (yes); 28 29cluster -- section 30 gtk: "${eiffel_libraries}/eiffel-gtk/loadpath.se" 31 gdk: "${eiffel_libraries}/eiffel-gdk/loadpath.se" 32 glib: "${eiffel_libraries}/eiffel-glib/loadpath.se" 33 gobject: "${eiffel_libraries}/eiffel-gobject/loadpath.se" 34 pango: "${eiffel_libraries}/eiffel-pango/loadpath.se" 35 36 "." 37 38 standard: "${path_lib}/loadpath.se" 39 40external -- section for elements written in another language 41 42 43generate -- section 44 no_strip(no); 45 no_split(no); 46 clean(no); 47 48 c_compiler_options : "$(pkg-config --cflags gtk+-2.0)" 49 50 linker_options : "$(pkg-config --libs gtk+-2.0)" 51 52end