Update detectenv-msvc.mak (#316)
authorGregory Morse <gregory.morse@live.com>
Mon, 12 Sep 2016 08:22:15 +0000 (10:22 +0200)
committerBehdad Esfahbod <behdad@behdad.org>
Mon, 12 Sep 2016 08:22:15 +0000 (01:22 -0700)
Windows x86 ARM capability

win32/detectenv-msvc.mak

index a94ab84..83d8786 100644 (file)
@@ -119,6 +119,9 @@ CFLAGS_ADD = /MDd /Od
 
 !if "$(PLAT)" == "x64"
 LDFLAGS_ARCH = /machine:x64
+!elseif "$(PLAT)" == "arm"
+LDFLAGS_ARCH = /machine:arm
+CFLAGS_ADD = $(CFLAGS_ADD) /DWINAPI_FAMILY=3
 !else
 LDFLAGS_ARCH = /machine:x86
 !endif