/src/wrappers/gtk/examples/paned/paned_example.ace
Unknown | 43 lines | 32 code | 11 blank | 0 comment | 0 complexity | 3bca7b706f621c57896afd1e15ddc520 MD5 | raw file
1system "paned_example" 2 3root PANED_EXAMPLE: make 4 5default -- 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 20cluster -- section 21 gdk: "${eiffel_libraries}/eiffel-gdk/loadpath.se" 22 gtk: "${eiffel_libraries}/eiffel-gtk/loadpath.se" 23 glib: "${eiffel_libraries}/eiffel-glib/loadpath.se" 24 gobject: "${eiffel_libraries}/eiffel-gobject/loadpath.se" 25 pando: "${eiffel_libraries}/eiffel-pango/loadpath.se" 26 27 assistant_demo: "." 28 29 standard: "${path_lib}/loadpath.se" 30 31external -- section for elements written in another language 32 33 34generate -- section 35 no_strip(no); 36 no_split(no); 37 clean(no); 38 39 c_compiler_options : "$(pkg-config --cflags gtk+-2.0)" 40 41 linker_options : "$(pkg-config --libs gtk+-2.0)" 42 43end