aboutsummaryrefslogtreecommitdiff
path: root/common/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-09-16 13:21:50 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-09-16 13:21:50 +0200
commitf399873d8df0cda717d525de02f561c88eb17c01 (patch)
treecc418d583cf963318c37cc47ef8f6b292e416a7b /common/makefile
parent05f6238ddae9347de4c320424e3cd924b5f8a146 (diff)
Add support for Visual Studio 2012
Diffstat (limited to 'common/makefile')
-rw-r--r--common/makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/makefile b/common/makefile
index 9356327..3988260 100644
--- a/common/makefile
+++ b/common/makefile
@@ -61,11 +61,12 @@ $(dist): name := $(name)
$(dist): export dirs := $(filter-out include,$(tests))
$(dist): export thread_dirs := $(thread_tests)
$(dist): export extra_dist := test.bat $(call vc9slns,$(name)) \
-$(call vc10slns,$(name))
+$(call vc10slns,$(name)) $(call vc11slns,$(name))
$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(all_tests)))
$(call meta-automake)
$(call meta-vc9slns,$(name))
$(call meta-vc10slns,$(name))
+ $(call meta-vc11slns,$(name))
$(call meta-vctest,$(name)-mysql-vc10.sln,test.bat)
$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(build_tests)))
@@ -73,6 +74,7 @@ $(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(all_tests)))
$(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/vctest.make)
$(call include,$(bld_root)/meta/automake.make)