Does anyone have a makefile to build your irrlicht application for all platforms from a linux platform (cross compiling)
-diho
Makefile all platforms
Re: Makefile all platforms
Or at least cross compile it for windows?
Re: Makefile all platforms
The default makefile works for me with mingw. EDIT: oh you mean your app and not irr itself. You just need to link some windows-specific libs in that case.
LIBS += -lole32 -luuid -lcomctl32 -lwsock32 -lopengl32 -lwinmm
LIBS += -luser32 -lgdi32 -ldxguid
LIBS += -lole32 -luuid -lcomctl32 -lwsock32 -lopengl32 -lwinmm
LIBS += -luser32 -lgdi32 -ldxguid
Re: Makefile all platforms
Thanks Hendu, linking those extra libs did the trick!