forked from AuroraMiddleware/gtk
6423a02c55
We need to rename the projects so that when these projects are added into an all-in-one solution file that will build the GTK+ 2/3 stack, the names of the projects will not collide with the GTK+-2.x ones, especially as GTK+-2.x and GTK+-3.x are done to co-exist on the same system. This is due to the case that the MSVC projects are directly carried over from the GTK+-2.x ones and was then updated for 3.x. We still need to update the GUIDs of the projects, so that they won't conflict with the GTK+-2.x ones.
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
GENERATED_ITEMS = \
|
|
gdk3-win32.vcproj \
|
|
gdk3-broadway.vcproj \
|
|
broadwayd.vcproj \
|
|
gdk-3.vcproj \
|
|
gtk-3.vcproj \
|
|
gtk3-demo.vcproj \
|
|
gtk3-demo-application.vcproj \
|
|
gtk3-icon-browser.vcproj \
|
|
gailutil-3.vcproj \
|
|
gtk3-install.vsprops \
|
|
gtk3-version-paths.vsprops
|
|
|
|
EXTRA_DIST += \
|
|
README.txt \
|
|
gtk+.sln \
|
|
gtk3-prebuild.vcproj \
|
|
gdk3-win32.vcprojin \
|
|
gdk-3.vcprojin \
|
|
gtk-3.vcprojin \
|
|
gtk-encode-symbolic-svg.vcproj \
|
|
gtk3-demo.vcprojin \
|
|
gtk3-demo-application.vcprojin \
|
|
gtk3-icon-browser.vcprojin \
|
|
gailutil-3.vcprojin \
|
|
gtk3-install.vcproj \
|
|
broadwayd.vcprojin \
|
|
gdk3-broadway.vcprojin \
|
|
gtk3-build-defines.vsprops \
|
|
gtk3-copy-gdk-broadway.vsprops \
|
|
gtk3-gen-srcs.vsprops \
|
|
gtk3-ignore-broadway.vsprops \
|
|
gtk3-install.vspropsin \
|
|
gtk3-version-paths.vsprops.in \
|
|
$(GENERATED_ITEMS)
|
|
|
|
gtk3-install.vsprops: $(top_srcdir)/build/win32/vs9/gtk3-install.vspropsin
|
|
$(CPP) -P - <$(top_srcdir)/build/win32/vs9/gtk3-install.vspropsin >$@
|
|
rm gdk-3.headers
|
|
rm gdk3-win32.headers
|
|
rm gdk3-broadway.headers
|
|
rm gtk-3.headers
|
|
rm gailutil-3.headers
|
|
|
|
DISTCLEANFILES = $(GENERATED_ITEMS)
|
|
|
|
-include $(top_srcdir)/git.mk
|