diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2015-08-25 17:41:55 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2015-09-15 18:51:33 +0800 |
commit | 6423a02c55db8ef5b497ca06188ab77ff6d8009a (patch) | |
tree | 3cd5bf3465c4070eed725fde40297b955cd747dd /libgail-util | |
parent | 908850c087d3a10aba0cc1e1bb2b08d027d6cefc (diff) | |
download | gtk+-6423a02c55db8ef5b497ca06188ab77ff6d8009a.tar.gz |
MSVC Builds: Massive Rename of Projects
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.
Diffstat (limited to 'libgail-util')
-rw-r--r-- | libgail-util/Makefile.am | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libgail-util/Makefile.am b/libgail-util/Makefile.am index a5709039e9..048fe33097 100644 --- a/libgail-util/Makefile.am +++ b/libgail-util/Makefile.am @@ -82,21 +82,21 @@ install-data-local: install-ms-lib install-def-file uninstall-local: uninstall-ms-lib uninstall-def-file # ------------------- MSVC Build Items ---------------- -MSVCPROJS = gailutil +MSVCPROJS = gailutil-3 -gailutil_FILES = $(libgailutil_3_la_SOURCES) +gailutil_3_FILES = $(libgailutil_3_la_SOURCES) -gailutil_EXCLUDES = dummy -gailutil_HEADERS_DIR = $(libgailutilincludedir) +gailutil_3_EXCLUDES = dummy +gailutil_3_HEADERS_DIR = $(libgailutilincludedir) -gailutil_HEADERS_INST = $(libgailutilinclude_HEADERS) +gailutil_3_HEADERS_INST = $(libgailutilinclude_HEADERS) -gailutil_HEADERS_EXCLUDES = dummy +gailutil_3_HEADERS_EXCLUDES = dummy include $(top_srcdir)/build/Makefile.msvcproj dist-hook: \ - $(top_builddir)/build/win32/vs9/gailutil.vcproj \ - $(top_builddir)/build/win32/vs9/gailutil.headers + $(top_builddir)/build/win32/vs9/gailutil-3.vcproj \ + $(top_builddir)/build/win32/vs9/gailutil-3.headers -include $(top_srcdir)/git.mk |