summaryrefslogtreecommitdiff
path: root/build/win32
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2014-07-01 16:12:06 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2014-07-01 16:12:06 +0800
commit2f1ef02ecb4446ae176f6b8c8426ef5ee956117f (patch)
tree3bcd4947d2c017fc20f24b2cca3cd57b8149c922 /build/win32
parenta215b076e1896cd2bd5f11d0ec90ed0c0c6690ed (diff)
downloadgdk-pixbuf-2f1ef02ecb4446ae176f6b8c8426ef5ee956117f.tar.gz
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.
Diffstat (limited to 'build/win32')
-rw-r--r--build/win32/Makefile.am8
-rw-r--r--build/win32/vs11/Makefile.am28
-rw-r--r--build/win32/vs12/Makefile.am28
3 files changed, 61 insertions, 3 deletions
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