aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-06-03 18:28:35 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2014-06-03 18:28:35 +0200
commit9fda153cc21db0c4bbb00265cb9acff902f5b791 (patch)
tree18f6e3e3986054abf1397148ea291ee8a38e62fe /makefile
parent59933d511ad16a8ea012508da86fbf6c8932f53a (diff)
Support for VC12 (2013), initial work
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/makefile b/makefile
index fb9aa3f..7e3ed4c 100644
--- a/makefile
+++ b/makefile
@@ -57,7 +57,7 @@ mssql-driver.bat mssql.options
$(dist): exec_dist := bootstrap tester.in
$(dist): export extra_dist := $(data_dist) $(exec_dist) test.bat \
$(call vc8slns,$(name)) $(call vc9slns,$(name)) $(call vc10slns,$(name)) \
-$(call vc11slns,$(name))
+$(call vc11slns,$(name)) $(call vc12slns,$(name))
$(dist): export version = $(shell cat $(src_root)/version)
$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(dist_dirs)))
@@ -70,6 +70,7 @@ $(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(dist_dirs)))
$(call meta-vc9slns,$(name))
$(call meta-vc10slns,$(name))
$(call meta-vc11slns,$(name))
+ $(call meta-vc12slns,$(name))
$(call meta-vctest,$(name)-mysql-vc10.sln,test.bat)
$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(build_dirs)))
@@ -80,6 +81,7 @@ $(call include,$(bld_root)/meta/vc8sln.make)
$(call include,$(bld_root)/meta/vc9sln.make)
$(call include,$(bld_root)/meta/vc10sln.make)
$(call include,$(bld_root)/meta/vc11sln.make)
+$(call include,$(bld_root)/meta/vc12sln.make)
$(call include,$(bld_root)/meta/vctest.make)
$(call include,$(bld_root)/meta/automake.make)
$(call include,$(bld_root)/meta/autoconf.make)