mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Tweak the generation of the file list in gio.vcproj
Visual Studio doesn't like slash as directory separator, so use backslash. While at it, sort the list of files put in the project file just for clarity.
This commit is contained in:
parent
8b6d2c1fc1
commit
3585e64be8
@ -524,7 +524,7 @@ dist-hook: $(BUILT_EXTRA_DIST) ../build/win32/vs9/gio.vcproj
|
||||
cp $$d/$$f $(distdir) || exit 1; done
|
||||
|
||||
../build/win32/vs9/gio.vcproj: $(top_srcdir)/build/win32/vs9/gio.vcprojin
|
||||
for F in $(libgio_2_0_la_SOURCES) $(win32_sources); do \
|
||||
for F in `echo $(libgio_2_0_la_SOURCES) $(win32_sources) | tr '/' '\\' | sort -u`; do \
|
||||
case $$F in \
|
||||
*.c) echo ' <File RelativePath="..\..\..\gio\'$$F'" />' \
|
||||
;; \
|
||||
|
Loading…
Reference in New Issue
Block a user