Fix the GLib Visual Studio Projects
[platform/upstream/glib.git] / build / Makefile-newvs.am
1 # Centralized autotools file
2 # Create the Visual Studio 2012 project files
3 # from the Visual Studio 2010 project files
4
5 # Author: Fan, Chun-wei
6 # November 05, 2012
7
8 # MSVC_SLN: name of root project
9
10 VCXPROJ_FILES =
11
12 $(MSVC_SLN).sln: $(top_srcdir)/build/win32/vs10/$(MSVC_SLN).sln create_vcxproj copy_filters
13         cat $(top_srcdir)/build/win32/vs10/$(MSVC_SLN).sln | sed 's/11\.00/12\.00/g' | sed 's/2010/2012/g' > $(top_builddir)/build/win32/vs11/$(MSVC_SLN).sln
14
15 $(MSVC_SLN).props: $(top_builddir)/build/win32/vs10/$(MSVC_SLN).props
16         cat $(top_builddir)/build/win32/vs10/$(MSVC_SLN).props | sed 's/10/11/g' > $(top_builddir)/build/win32/vs11/$(MSVC_SLN).props
17
18 README.txt: $(top_srcdir)/build/win32/vs10/README.txt
19         cat $(top_srcdir)/build/win32/vs10/README.txt | sed 's/vs10/vs11/g' | sed 's/VS10/VS11/g' > $(top_builddir)/build/win32/vs11/README.txt
20
21 create_vcxproj:
22         for F in `(cd $(top_builddir)/build/win32/vs10 && ls *.vcxproj)`; do \
23                 case $$F in \
24                         *)      cat $(top_builddir)/build/win32/vs10/$$F | sed 's/v100/v110/g' > $(top_builddir)/build/win32/vs11/$$F \
25                         ;; \
26                 esac; \
27         done
28
29 copy_filters:
30         cp  $(top_srcdir)/build/win32/vs10/*.vcxproj.filters $(top_builddir)/build/win32/vs11/
31
32