[glib] Fix the VS2010 project generation for GLib
- From: Chun-wei Fan <fanchunwei src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] Fix the VS2010 project generation for GLib
- Date: Thu, 24 Feb 2011 04:27:00 +0000 (UTC)
commit 701ac3cb3d7a603697570f085457af7e68d089fd
Author: Chun-wei Fan <fanchunwei src gnome org>
Date: Thu Feb 24 12:38:51 2011 +0800
Fix the VS2010 project generation for GLib
The scripts accently pick up gcc-only source files... this fixes that.
glib/Makefile.am | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/glib/Makefile.am b/glib/Makefile.am
index a76f25e..6c53e17 100644
--- a/glib/Makefile.am
+++ b/glib/Makefile.am
@@ -444,6 +444,8 @@ dist-hook: $(BUILT_EXTRA_DIST) ../build/win32/vs9/glib.vcproj ../build/win32/vs1
../build/win32/vs10/glib.vcxproj: $(top_srcdir)/build/win32/vs10/glib.vcxprojin
for F in $(libglib_2_0_la_SOURCES); do \
case $$F in \
+ *-gcc.c) \
+ ;; \
*.c) echo ' <ClCompile Include="..\..\..\glib\'$$F'" />' \
;; \
esac; \
@@ -454,6 +456,8 @@ dist-hook: $(BUILT_EXTRA_DIST) ../build/win32/vs9/glib.vcproj ../build/win32/vs1
../build/win32/vs10/glib.vcxproj.filters: $(top_srcdir)/build/win32/vs10/glib.vcxproj.filtersin
for F in $(libglib_2_0_la_SOURCES); do \
case $$F in \
+ *-gcc.c) \
+ ;; \
*.c) echo ' <ClCompile Include="..\..\..\glib\'$$F'"><Filter>Source Files</Filter></ClCompile>' \
;; \
esac; \
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]