summaryrefslogtreecommitdiff
path: root/generator
diff options
context:
space:
mode:
authorMaarten Bosmans <mkbosmans@gmail.com>2009-05-26 15:35:00 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-05-26 15:35:00 +0200
commitfebcfd772c169484d606e57e83815ea2179866fe (patch)
tree256f7a61f339997ee03c9fc4963f1b68f4ff42e5 /generator
parent35198f1773de85e1e19a955752bd1b95d70913db (diff)
Fix build on Windows
- use -option instead of /option - use path\file.cs for csc.exe and path/file.cs for mcs - don't build samples/gtk-video-player when using csc.exe
Diffstat (limited to 'generator')
-rw-r--r--generator/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/generator/Makefile.am b/generator/Makefile.am
index 64cfd30..d70fd55 100644
--- a/generator/Makefile.am
+++ b/generator/Makefile.am
@@ -64,5 +64,5 @@ EXTRA_DIST = \
$(dist_sources)
gst-gapi_codegen.exe: $(build_sources)
- $(CSC) /debug /out:gst-gapi_codegen.exe $(OFF_T_FLAGS) $(references) $(build_sources)
+ $(CSC) -debug -out:gst-gapi_codegen.exe $(OFF_T_FLAGS) $(references) $(build_sources)