From 3c62e12e25bc7c6f67d993c02b67f2800af6b39f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 16 Sep 2012 13:21:48 +0200 Subject: Add support for Visual Studio 2012 --- libodb-vc11.sln | 26 ++++++ makefile | 2 +- odb/libodb-vc11.vcxproj | 177 ++++++++++++++++++++++++++++++++++++++++ odb/libodb-vc11.vcxproj.filters | 21 +++++ odb/makefile | 5 +- 5 files changed, 229 insertions(+), 2 deletions(-) create mode 100644 libodb-vc11.sln create mode 100644 odb/libodb-vc11.vcxproj create mode 100644 odb/libodb-vc11.vcxproj.filters diff --git a/libodb-vc11.sln b/libodb-vc11.sln new file mode 100644 index 0000000..6368225 --- /dev/null +++ b/libodb-vc11.sln @@ -0,0 +1,26 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libodb", "odb\libodb-vc11.vcxproj", "{1C53C543-8038-4C8A-8AB1-65E74FD7DE2E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1C53C543-8038-4C8A-8AB1-65E74FD7DE2E}.Debug|Win32.ActiveCfg = Debug|Win32 + {1C53C543-8038-4C8A-8AB1-65E74FD7DE2E}.Debug|Win32.Build.0 = Debug|Win32 + {1C53C543-8038-4C8A-8AB1-65E74FD7DE2E}.Debug|x64.ActiveCfg = Debug|x64 + {1C53C543-8038-4C8A-8AB1-65E74FD7DE2E}.Debug|x64.Build.0 = Debug|x64 + {1C53C543-8038-4C8A-8AB1-65E74FD7DE2E}.Release|Win32.ActiveCfg = Release|Win32 + {1C53C543-8038-4C8A-8AB1-65E74FD7DE2E}.Release|Win32.Build.0 = Release|Win32 + {1C53C543-8038-4C8A-8AB1-65E74FD7DE2E}.Release|x64.ActiveCfg = Release|x64 + {1C53C543-8038-4C8A-8AB1-65E74FD7DE2E}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/makefile b/makefile index 25c3b90..d36559b 100644 --- a/makefile +++ b/makefile @@ -14,7 +14,7 @@ $(default): $(addprefix $(out_base)/,$(addsuffix /,$(dirs))) $(dist): export dirs := $(dirs) $(dist): export docs := GPLv2 LICENSE README NEWS version -$(dist): data_dist := INSTALL libodb-vc9.sln libodb-vc10.sln +$(dist): data_dist := INSTALL libodb-vc9.sln libodb-vc10.sln libodb-vc11.sln $(dist): exec_dist := bootstrap $(dist): export extra_dist := $(data_dist) $(exec_dist) $(dist): export version = $(shell cat $(src_root)/version) diff --git a/odb/libodb-vc11.vcxproj b/odb/libodb-vc11.vcxproj new file mode 100644 index 0000000..52e6439 --- /dev/null +++ b/odb/libodb-vc11.vcxproj @@ -0,0 +1,177 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {1C53C543-8038-4C8A-8AB1-65E74FD7DE2E} + Win32Proj + libodb + + + + DynamicLibrary + true + v110 + Unicode + + + DynamicLibrary + true + v110 + Unicode + + + DynamicLibrary + false + v110 + true + Unicode + + + DynamicLibrary + false + v110 + true + Unicode + + + + + + + + + + + + + + + + + + + true + ..\bin\ + odb-d-__value__(interface_version)-vc11 + + + true + ..\bin64\ + odb-d-__value__(interface_version)-vc11 + + + false + ..\bin\ + odb-__value__(interface_version)-vc11 + + + false + ..\bin64\ + odb-__value__(interface_version)-vc11 + + + + + + Level3 + Disabled + WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBODB_DYNAMIC_LIB;%(PreprocessorDefinitions) + .. + 4355;4800;4290;4251;%(DisableSpecificWarnings) + + + Windows + true + $(TargetPath) + ..\lib\odb-d.lib + + + + + + + Level3 + Disabled + WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBODB_DYNAMIC_LIB;%(PreprocessorDefinitions) + .. + 4355;4800;4290;4251;%(DisableSpecificWarnings) + + + Windows + true + $(TargetPath) + ..\lib64\odb-d.lib + + + + + Level3 + + + MaxSpeed + true + true + WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBODB_DYNAMIC_LIB;%(PreprocessorDefinitions) + .. + 4355;4800;4290;4251;%(DisableSpecificWarnings) + + + Windows + true + true + true + $(TargetPath) + ..\lib\odb.lib + + + + + Level3 + + + MaxSpeed + true + true + WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBODB_DYNAMIC_LIB;%(PreprocessorDefinitions) + .. + 4355;4800;4290;4251;%(DisableSpecificWarnings) + + + Windows + true + true + true + $(TargetPath) + ..\lib64\odb.lib + + + +__header_entries__(headers) +__header_entry__(details\config-vc.h) + + +__source_entries__(sources) +__source_entries__(win32_sources) +__source_entries__(win32_dll_sources) + + + + + diff --git a/odb/libodb-vc11.vcxproj.filters b/odb/libodb-vc11.vcxproj.filters new file mode 100644 index 0000000..1663f9d --- /dev/null +++ b/odb/libodb-vc11.vcxproj.filters @@ -0,0 +1,21 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cxx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hxx;ixx;txx + + + +__header_filter_entries__(headers) +__header_filter_entry__(details\config-vc.h) + + +__source_filter_entries__(sources) +__source_filter_entries__(win32_sources) + + diff --git a/odb/makefile b/odb/makefile index 5a5b48a..8b62d46 100644 --- a/odb/makefile +++ b/odb/makefile @@ -126,7 +126,8 @@ $(src_base)/details/win32 -name '*.hxx' -o -name '*.ixx' -o -name '*.txx')) $(dist): data_dist := details/config-vc.h $(dist): export extra_dist := $(data_dist) libodb-vc9.vcproj \ -libodb-vc10.vcxproj libodb-vc10.vcxproj.filters +libodb-vc10.vcxproj libodb-vc10.vcxproj.filters \ +libodb-vc11.vcxproj libodb-vc11.vcxproj.filters $(dist): export interface_version = $(shell sed -e \ 's/^\([0-9]*\.[0-9]*\).*/\1/' $(src_root)/version) @@ -136,6 +137,7 @@ $(win32_dll_sources) $(headers) $(posix_headers) $(win32_headers) \ $(data_dist) details/config.h.in) $(call meta-vc9proj,$(src_base)/libodb-vc9.vcproj) $(call meta-vc10proj,$(src_base)/libodb-vc10.vcxproj) + $(call meta-vc11proj,$(src_base)/libodb-vc11.vcxproj) $(call meta-automake) # Clean. @@ -162,6 +164,7 @@ endif $(call include,$(bld_root)/dist.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/automake.make) $(call include,$(bld_root)/cxx/o-l.make) -- cgit v1.1