Compiling the program passes without error but the programs crash when the window resizes at startup, any ideas why?
makefile for nmake
Code: Select all
TARGET = play.exe
SOURCES = main.cpp
INCLUDES = /I"C:\z_irrlicht\irrlicht-1.8.3\irrlicht-1.8.3\include"
all: $(TARGET)
$(TARGET):$(SOURCES)
cl /W4 /EHsc /Fe:$@ $** $(INCLUDES) C:\z_irrlicht\irrlicht-1.8.3\irrlicht-1.8.3\lib\Win32-visualstudio\Irrlicht.lib OpenGL32.lib GLu32.lib m.lib