From 2f1ef02ecb4446ae176f6b8c8426ef5ee956117f Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Tue, 1 Jul 2014 16:12:06 +0800 Subject: Build: Provide Simple Support for MSVC 2012/2013 As the Visual Studio 2012/2013 are only slightly different from the Visual Studio 2010 projects, we can provide support for them by using scripts to copy the Visual Studio 2010 projects, and update the specific parts as necessary. Thus, there would be little maintenance overhead for these as only the 2010 projects need to be kept up-to-date as a result. This might change when we do get the stack working with WinRT/Metro, but that's going to be another totally different issue. --- build/win32/Makefile.am | 8 +++++--- build/win32/vs11/Makefile.am | 28 ++++++++++++++++++++++++++++ build/win32/vs12/Makefile.am | 28 ++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+), 3 deletions(-) create mode 100644 build/win32/vs11/Makefile.am create mode 100644 build/win32/vs12/Makefile.am (limited to 'build/win32') diff --git a/build/win32/Makefile.am b/build/win32/Makefile.am index f18e14c6a..cd43acbf7 100644 --- a/build/win32/Makefile.am +++ b/build/win32/Makefile.am @@ -1,5 +1,7 @@ -SUBDIRS = \ - vs9 \ - vs10 +SUBDIRS = \ + vs9 \ + vs10 \ + vs11 \ + vs12 -include $(top_srcdir)/git.mk diff --git a/build/win32/vs11/Makefile.am b/build/win32/vs11/Makefile.am new file mode 100644 index 000000000..2cf3c55c9 --- /dev/null +++ b/build/win32/vs11/Makefile.am @@ -0,0 +1,28 @@ +EXTRA_DIST = \ + README.txt \ + gdk-pixbuf.sln \ + gdk-pixbuf-version-paths.props \ + gdk-pixbuf-build-defines.props \ + gdk-pixbuf-gen-srcs.props \ + gdk-pixbuf-install.props \ + gdk-pixbuf.vcxproj \ + gdk-pixbuf.vcxproj.filters \ + gdk-pixbuf-csource.vcxproj \ + gdk-pixbuf-csource.vcxproj.filters \ + gdk-pixbuf-query-loaders.vcxproj \ + gdk-pixbuf-query-loaders.vcxproj.filters \ + gdk-pixbuf-pixdata.vcxproj \ + gdk-pixbuf-pixdata.vcxproj.filters \ + install.vcxproj + +DISTCLEANFILES = $(EXTRA_DIST) + +MSVC_SLN = gdk-pixbuf + +MSVC_VER = 11 + +MSVC_VER_LONG = 2012 + +include $(top_srcdir)/build/Makefile-newvs.am + +-include $(top_srcdir)/git.mk diff --git a/build/win32/vs12/Makefile.am b/build/win32/vs12/Makefile.am new file mode 100644 index 000000000..de3f4688b --- /dev/null +++ b/build/win32/vs12/Makefile.am @@ -0,0 +1,28 @@ +EXTRA_DIST = \ + README.txt \ + gdk-pixbuf.sln \ + gdk-pixbuf-version-paths.props \ + gdk-pixbuf-build-defines.props \ + gdk-pixbuf-gen-srcs.props \ + gdk-pixbuf-install.props \ + gdk-pixbuf.vcxproj \ + gdk-pixbuf.vcxproj.filters \ + gdk-pixbuf-csource.vcxproj \ + gdk-pixbuf-csource.vcxproj.filters \ + gdk-pixbuf-query-loaders.vcxproj \ + gdk-pixbuf-query-loaders.vcxproj.filters \ + gdk-pixbuf-pixdata.vcxproj \ + gdk-pixbuf-pixdata.vcxproj.filters \ + install.vcxproj + +DISTCLEANFILES = $(EXTRA_DIST) + +MSVC_SLN = gdk-pixbuf + +MSVC_VER = 12 + +MSVC_VER_LONG = 2013 + +include $(top_srcdir)/build/Makefile-newvs.am + +-include $(top_srcdir)/git.mk -- cgit v1.2.1