build: Fix compiler parameters in gio and gtk-gio samples
Having parameters starting with a forward slash seems to break when building with MinGW on Windows. So we use a dash to be consistent with other Makefiles. Also use the CSFLAGS variable in the sample/gio Makefile, instead of hardcoding the debug flag.
This commit is contained in:
parent
49295c119b
commit
2fcd276b9c
2 changed files with 4 additions and 4 deletions
|
@ -6,13 +6,13 @@ assemblies = \
|
|||
$(top_builddir)/glib/glib-sharp.dll \
|
||||
$(top_builddir)/gio/gio-sharp.dll
|
||||
|
||||
references=$(addprefix /r:, $(assemblies))
|
||||
references=$(addprefix -r:, $(assemblies))
|
||||
|
||||
noinst_SCRIPTS = $(TARGETS)
|
||||
CLEANFILES = $(TARGETS) $(DEBUGS)
|
||||
|
||||
.cs.exe: $(assemblies)
|
||||
$(CSC) /debug /out:$@ $(references) $<
|
||||
$(CSC) $(CSFLAGS) /out:$@ $(references) $<
|
||||
|
||||
EXTRA_DIST = \
|
||||
AppInfo.cs \
|
||||
|
|
|
@ -11,13 +11,13 @@ assemblies = \
|
|||
$(top_builddir)/pango/pango-sharp.dll \
|
||||
$(top_builddir)/atk/atk-sharp.dll
|
||||
|
||||
references=$(addprefix /r:, $(assemblies))
|
||||
references=$(addprefix -r:, $(assemblies))
|
||||
|
||||
noinst_SCRIPTS = $(TARGETS)
|
||||
CLEANFILES = $(TARGETS) $(DEBUGS)
|
||||
|
||||
.cs.exe: $(assemblies)
|
||||
$(CSC) /out:$@ $(references) $<
|
||||
$(CSC) $(CSFLAGS) /out:$@ $(references) $<
|
||||
|
||||
EXTRA_DIST = \
|
||||
MountOperation.cs
|
||||
|
|
Loading…
Reference in a new issue