/src/wrappers/gtk/examples/table/table_demo.ace
Unknown | 47 lines | 32 code | 15 blank | 0 comment | 0 complexity | f37ee57090271eabef237248a5143019 MD5 | raw file
1system "table_demo" 2 3root TABLE_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 no_style_warning (no); 17 no_warning (no); 18 verbose (no); 19 manifest_string_trace (no); 20 high_memory_compiler (no); 21 profile (no); 22 relax (yes); 23 24cluster -- section 25 gtk: "${eiffel_libraries}/eiffel-gtk/loadpath.se" 26 gdk: "${eiffel_libraries}/eiffel-gdk/loadpath.se" 27 glib: "${eiffel_libraries}/eiffel-glib/loadpath.se" 28 gobject: "${eiffel_libraries}/eiffel-gobject/loadpath.se" 29 pango: "${eiffel_libraries}/eiffel-pango/loadpath.se" 30 31 table_demo: "." 32 33 standard: "${path_lib}/loadpath.se" 34 35external -- section for elements written in another language 36 37 38generate -- section 39 no_strip(no); 40 no_split(no); 41 clean(no); 42 43 c_compiler_options : "$(pkg-config --cflags gtk+-2.0)" 44 45 linker_options : "$(pkg-config --libs gtk+-2.0)" 46 47end