diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2014-06-03 18:28:35 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2014-06-03 18:28:35 +0200 |
commit | 9fda153cc21db0c4bbb00265cb9acff902f5b791 (patch) | |
tree | 18f6e3e3986054abf1397148ea291ee8a38e62fe /boost/makefile | |
parent | 59933d511ad16a8ea012508da86fbf6c8932f53a (diff) |
Support for VC12 (2013), initial work
Diffstat (limited to 'boost/makefile')
-rw-r--r-- | boost/makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/boost/makefile b/boost/makefile index 1f5fcfa..e8f7b41 100644 --- a/boost/makefile +++ b/boost/makefile @@ -82,9 +82,9 @@ $(dist): export name := $(name) $(dist): export odb_header_stem := $(basename $(odb_hdr)) $(dist): export extra_dist := README \ $(call vc8projs,$(name)) $(call vc9projs,$(name)) $(call vc10projs,$(name)) \ -$(call vc11projs,$(name)) \ +$(call vc11projs,$(name)) $(call vc12projs,$(name)) \ $(call vc8slns,$(name)) $(call vc9slns,$(name)) $(call vc10slns,$(name)) \ -$(call vc11slns,$(name)) +$(call vc11slns,$(name)) $(call vc12slns,$(name)) $(dist): $(call dist-data,$(sources) $(headers) README database.hxx) $(call meta-automake,../template/Makefile.am) @@ -92,10 +92,12 @@ $(dist): $(call meta-vc9projs,$(name),$(name)) $(call meta-vc10projs,$(name),$(name)) $(call meta-vc11projs,$(name),$(name)) + $(call meta-vc12projs,$(name),$(name)) $(call meta-vc8slns,$(name)) $(call meta-vc9slns,$(name)) $(call meta-vc10slns,$(name)) $(call meta-vc11slns,$(name)) + $(call meta-vc12slns,$(name)) # Test. # @@ -130,10 +132,12 @@ $(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/vc8proj.make) $(call include,$(bld_root)/meta/vc9proj.make) $(call include,$(bld_root)/meta/vc10proj.make) $(call include,$(bld_root)/meta/vc11proj.make) +$(call include,$(bld_root)/meta/vc12proj.make) $(call include,$(bld_root)/meta/automake.make) $(call include,$(bld_root)/cxx/standard.make) # cxx_standard |