aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2013-11-30 04:08:01 +0100
committerJay Berkenbilt <ejb@ql.org>2013-11-30 21:58:32 +0100
commit88c29873e56e69c83aa0d0798188cd792368059b (patch)
treeea8b1dfccea05098cd2eadd96d111e3a112b343a /make
parentb75b19589db35cbeeb43c147a24bfcda91fe008f (diff)
downloadqpdf-88c29873e56e69c83aa0d0798188cd792368059b.tar.zst
Add /FS flag (msvc) for parallel builds
Diffstat (limited to 'make')
-rw-r--r--make/msvc.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/msvc.mk b/make/msvc.mk
index 5e3bb570..bef53957 100644
--- a/make/msvc.mk
+++ b/make/msvc.mk
@@ -27,7 +27,7 @@ clean::
# 1 2
# Usage: $(call compile,src,includes)
define compile
- cl /nologo /Zi /Gy /EHsc /MD /TP /GR $(CPPFLAGS) $(CXXFLAGS) \
+ cl /nologo /O2 /Zi /Gy /EHsc /MD /TP /GR $(CPPFLAGS) $(CXXFLAGS) \
$(foreach I,$(2),-I$(I)) \
/c $(1) /Fo$(call src_to_obj,$(1))
endef