1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
-- This ace file fragment should be included in the SmartEiffel ace file for any project
-- that uses eGTK
--------------------------------------- clusters section -------------------------------------
-- eGTK clusters
egtk: "${EGTK}/lib/glib";
egtk_se: "${EGTK}/lib/glib/se";
egtk_eifc: "${EGTK}/lib/eifc";
egtk_eifc_se: "${EGTK}/lib/eifc/se";
egtk_eifc_ext: "${EGTK}/lib/eifc/externals";
egtk_gdk: "${EGTK}/lib/gdk";
egtk_gdk_se: "${EGTK}/lib/gdk/se";
egtk_gdk_ext: "${EGTK}/lib/gdk/externals";
egtk_gtk: "${EGTK}/lib/gtk";
egtk_gtk_se: "${EGTK}/lib/gtk/se";
egtk_gtk_ext: "${EGTK}/lib/gtk/externals";
egtk_egtk: "${EGTK}/lib/egtk";
egtk_egtk_se: "${EGTK}/lib/egtk/se";
egtk_gnome: "${EGTK}/lib/gnome";
egtk_gtk_se: "${EGTK}/lib/gnome/se";
egtk_gtk_canvas: "${EGTK}/lib/gnome/canvas";
egtk_gtk_ext: "${EGTK}/lib/gnome/externals";
egtk_mozembed: "${EGTK}/lib/mozembed";
egtk_mozembed_ext: "${EGTK}/lib/mozembed/externals";
egtk_mozembed_se: "${EGTK}/lib/mozembed/se";
egtk_mozilla: "${EGTK}/lib/mozilla";
egtk_mozilla_ext: "${EGTK}/lib/mozilla/externals";
egtk_mozilla_se: "${EGTK}/lib/mozilla/se";
--------------------------------------- external section -------------------------------------
-- these lines should be added to or edited into the external section of the ace file
external_object_files: "${EGTK}/C/se/eif_gtk.a"
external_c_files: "${EGTK}/C/se/eif_gtk_se.c"
cecil ("${EGTK}/C/se/cecil.se")
-- These lines should be modified according to the output of "gtk-config --libs"
external_lib_path: "-L/usr/lib -L/usr/X11R6/lib"
external_lib: "-lgtk -lgdk -rdynamic -lgmodule -lglib -ldl -lXi -lXext -lX11 -lm"
--------------------------------------- generate section -------------------------------------
-- This line should be modified according to the output of "gtk-config --cflags"
c_compiler_options : "-I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/X11R6/include"
|