/src/wrappers/gtk/examples/iconview/icon_view_demo.ace
Unknown | 52 lines | 37 code | 15 blank | 0 comment | 0 complexity | 7b4835f1881c94680b6cbaad1cea22b5 MD5 | raw file
1system 2"icon_view_demo" 3 4root 5 6 ICON_VIEW_DEMO: make 7 8default -- section of the system 9 assertion (check); 10 -- Choose the appropriate value: boost, no, require, ensure, invariant, loop, check, all. 11 12 assertion_flat_check (no); 13 14 debug (no); 15 16 trace (no); 17 18 collect (yes); 19 -- Choose yes here to add garbage collector support to your system. 20 -- Choose no here to indicate that you don't want the garbage collector 21 -- to be included in your system; no is the equivalent of the -no_gc 22 -- flag in traditional command line mode. 23 24 no_style_warning (no); 25 no_warning (yes); -- shall be no 26 verbose (no); 27 manifest_string_trace (no); 28 high_memory_compiler (no); 29 profile (no); 30 relax (yes); 31 32cluster -- section 33 gtk: "${eiffel_libraries}/eiffel-gtk/loadpath.se" 34 gdk: "${eiffel_libraries}/eiffel-gdk/loadpath.se" 35 glib: "${eiffel_libraries}/eiffel-glib/loadpath.se" 36 gobject: "${eiffel_libraries}/eiffel-gobject/loadpath.se" 37 pango: "${eiffel_libraries}/eiffel-pango/loadpath.se" 38 39 icon_view_demo: "." 40 41 standard: "${path_lib}/loadpath.se" 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