mirror of
https://github.com/kiwix/kiwix-tools.git
synced 2025-09-22 03:12:20 -04:00
+ pugixml makefile for windows
This commit is contained in:
parent
9cefdd6ee4
commit
6e0627cafe
13
src/pugixml/Makefile.mvsc
Normal file
13
src/pugixml/Makefile.mvsc
Normal 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
|
Loading…
x
Reference in New Issue
Block a user