+ pugixml makefile for windows

This commit is contained in:
kelson42 2011-06-08 19:31:40 +00:00
parent 9cefdd6ee4
commit 6e0627cafe

13
src/pugixml/Makefile.mvsc Normal file
View File

@ -0,0 +1,13 @@
CC=cl.exe
LD=link.exe
# Compiler and linker flags
CFLAGS=-O2 -Oi -I"./" -D"WIN32" -FD -EHsc -MT -Gy -nologo -c -Zi -TP
all: pugixml.lib
objs:
rm -f vc90*
$(CC) $(CFLAGS) *.cpp
pugixml.lib: objs
$(LD) -lib -NOLOGO -NODEFAULTLIB:"MSVCRT" -MACHINE:X86 -OUT:pugixml.lib $(LDFLAGS) *.obj