Hi,
I'm using C::B (a Nightly build from 2 month) under Linux, using le GTK and the libglade.
When you use the libglade, you needs a flag (for gcc) to get the signals handlers.
LibGlade doc :
Libglade can also automatically connect signal handlers in the user interface. It does this by matching handler names specified in the glade file with symbols in the executable looked up with the gmodule library (this requires that applications be linked with the --export-dynamic flag).
If i try with the command line :
gcc -export-dynamic $(pkg-config --libs --cflags gtk+-2.0) $(pkg-config --libs --cflags libglade-2.0) main.c -o monAppliGlade
There is no problem, it works perfectly !
My problem is that I don't know where to put this option on C::B.
I've try on the "Project \ Build options \ MyProjets (on the tree) \ Other options \ -export-dynamic"
The project compilation is ok. No errors. But when I lanch the prog... my prog doesn't cautch the signal.
So Where do you put such a flag into a C::B project ?
Thanks