Additional Comment: Even without libglademm there are the samer errors.
I reduced the files to:
-----------------------------------------------------------------
main.cpp:
-----------------------------------------------------------------
#include <gtkmm.h>
int main (int argc, char** argv)
{
}
-----------------------------------------------------------------
Makefile:
-----------------------------------------------------------------
LIBS= gtkmm-2.4
CFLAGS=`pkg-config --cflags $(LIBS)`
LDFLAGS=`pkg-config --libs $(LIBS)`
CPP=g++
SRC=main.cpp
BIN=programm.exe
$(BIN): $(SRC)
$(CPP) $(CFLAGS) $(LDFLAGS) -o $(BIN) $(SRC)
-----------------------------------------------------------------
So it is not a problem with libglademm but with gtkmm. So I'll try to
mail it to the gtkmm mailing list.
Viktor Dick schrieb:
I found a port of libglademm, gtkmm etc. for win32 at http://www.pcpm.ucl.ac.be/~gustin/win32_ports/I wrote a simple program (without glademm/code generation, see attachments).Under linux a simple 'make' does the job. It works fine. But under windows 'make' gives the result you can see in make.out. Who can help? I have installed MinGW, MSYS, gtk-win32-devel-2.6.7-rc1, gtkmm-devel-2.6.1-1. P.S: I do not use autotools to keep the project clear.
Attachment:
make.out.zip
Description: Binary data