Visual Studio builds: Adapt to the Python-fied glib-genmarshal
[platform/upstream/atk.git] / win32 / Makefile-newvs.am
1 # Centralized autotools file
2 # Create the Visual Studio 2012/2013/2015 project files
3 # from the Visual Studio 2010 project files
4
5 # This autotools file, from GLib, can be used in other projects
6 # that have Visual Studio build support.
7
8 # Author: Fan, Chun-wei
9 # November 05, 2012
10
11 # MSVC_BASE_VER: Baseline MSVC 201x version to copy/process project files from (100 for 2010, 120 for 2013)
12 # MSVC_BASE_VER_LONG: Long Version of baseline Visual Studio 201x version (2010, 2012, 2013, 14, 15)
13 # MSVC_BASE_TOOLSET: Use if baseline MSVC toolset is not in the form v$(MSVC_BASE_VER)0, meaning v$(MSVC_BASE_TOOLSET)
14 # MSVC_VER_LONG: Long Version of target Visual Studio (2012, 2013, 14 and so on)
15 # MSVC_VER: Short Version of target Visual Studio (110 for 2012, 120 for 2013, 140 for 2015, 141 for 2017)
16 # MSVC_TOOLSET: Use if target MSVC toolsett is not in the form v $(MSVC_VER)0, meaning v$(MSVC_TOOLSET)
17
18 if MSVC_BASE_NO_TOOLSET_SET
19 MSVC_BASE_TOOLSET = $(MSVC_BASE_VER)0
20 endif
21
22 if MSVC_NO_TOOLSET_SET
23 MSVC_TOOLSET = $(MSVC_VER)0
24 endif
25
26 %.sln:
27         sed 's/11\.00/12\.00/g' < $(top_srcdir)/win32/vs$(MSVC_BASE_VER)/$@ > $(top_builddir)/win32/vs$(MSVC_VER)/$@.tmp
28         sed 's/$(MSVC_BASE_VER_LONG)/$(MSVC_VER_LONG)/g' < $(top_builddir)/win32/vs$(MSVC_VER)/$@.tmp > $(top_builddir)/win32/vs$(MSVC_VER)/$@
29         rm $(top_builddir)/win32/vs$(MSVC_VER)/$@.tmp
30
31 %.txt:
32         sed 's/vs$(MSVC_BASE_VER)/vs$(MSVC_VER)/g' < $(top_srcdir)/win32/vs$(MSVC_BASE_VER)/$@ > $(top_builddir)/win32/vs$(MSVC_VER)/$@.tmp
33         sed 's/VS$(MSVC_BASE_VER)/VS$(MSVC_VER)/g' < $(top_builddir)/win32/vs$(MSVC_VER)/$@.tmp > $(top_builddir)/win32/vs$(MSVC_VER)/$@
34         rm $(top_builddir)/win32/vs$(MSVC_VER)/$@.tmp
35
36 %.vcxproj:
37         if test -e $(top_srcdir)/win32/vs$(MSVC_BASE_VER)/$@; then \
38                 sed 's/v$(MSVC_BASE_TOOLSET)/v$(MSVC_TOOLSET)/g' < $(top_srcdir)/win32/vs$(MSVC_BASE_VER)/$@ > $(top_builddir)/win32/vs$(MSVC_VER)/$@; \
39         else \
40                 sed 's/v$(MSVC_BASE_TOOLSET)/v$(MSVC_TOOLSET)/g' < $(top_builddir)/win32/vs$(MSVC_BASE_VER)/$@ > $(top_builddir)/win32/vs$(MSVC_VER)/$@; \
41         fi
42
43 %.props: $(top_builddir)/win32/vs$(MSVC_BASE_VER)/Makefile
44         if test -e $(top_srcdir)/win32/vs$(MSVC_BASE_VER)/$@; then \
45                 sed 's/<VSVer>$(MSVC_BASE_VER)<\/VSVer>/<VSVer>$(MSVC_VER)<\/VSVer>/g' < $(top_srcdir)/win32/vs$(MSVC_BASE_VER)/$@ > $(top_builddir)/win32/vs$(MSVC_VER)/$@; \
46         else \
47                 sed 's/<VSVer>$(MSVC_BASE_VER)<\/VSVer>/<VSVer>$(MSVC_VER)<\/VSVer>/g' < $(top_builddir)/win32/vs$(MSVC_BASE_VER)/$@ > $(top_builddir)/win32/vs$(MSVC_VER)/$@; \
48         fi
49
50 %.vcxproj.filters:
51         if test -e $(top_srcdir)/win32/vs$(MSVC_BASE_VER)/$@; then \
52                 cp $(top_srcdir)/win32/vs$(MSVC_BASE_VER)/$@ $(top_builddir)/win32/vs$(MSVC_VER)/$@; \
53         else \
54                 cp $(top_builddir)/win32/vs$(MSVC_BASE_VER)/$@ $(top_builddir)/win32/vs$(MSVC_VER)/$@; \
55         fi