/src/wrappers/gtk/examples/entries/boost_entries_demo.ace
Unknown | 55 lines | 38 code | 17 blank | 0 comment | 0 complexity | a38b89cd07f1ee9e88c1fa96c4e97a46 MD5 | raw file
1system 2"boosted_entries_demo" 3 4root 5 6 ENTRIES_DEMO: make 7 8default -- section of the system 9 assertion (boost); 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 (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 current_demo: "." 40 41 standard: "${path_lib}/loadpath.se" 42 43external -- section for elements written in another language 44 45 46generate -- section 47 no_strip(no); 48 no_split(no); 49 clean(no); 50 51 c_compiler_options : "$(pkg-config --cflags gtk+-2.0)" 52 53 linker_options : "$(pkg-config --libs gtk+-2.0)" 54 55end