mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
15 lines
670 B
Makefile
15 lines
670 B
Makefile
MCS_FLAGS = -debug $(MONO_NUNIT_LIBS)
|
|
|
|
ASSEMBLY_NAME = gstreamer-tests
|
|
ASSEMBLY = $(ASSEMBLY_NAME).dll
|
|
ASSEMBLY_CSFILES = $(srcdir)/ApplicationTest.cs $(srcdir)/BinTest.cs $(srcdir)/BufferTest.cs $(srcdir)/CapsTest.cs $(srcdir)/PadTest.cs $(srcdir)/ElementTest.cs $(srcdir)/MessageTest.cs $(srcdir)/PipelineTest.cs
|
|
|
|
$(ASSEMBLY): $(ASSEMBLY_CSFILES)
|
|
$(CSC) $(MCS_FLAGS) -out:$@ -target:library -r:$(top_builddir)/gstreamer-sharp/gstreamer-sharp.dll $(ASSEMBLY_CSFILES) $(GLIBSHARP_LIBS)
|
|
|
|
run-test: $(ASSEMBLY)
|
|
MONO_PATH="../gstreamer-sharp/" $(MONO) $(NUNIT_TESTER) -labels $(ASSEMBLY)
|
|
|
|
CLEANFILES = $(ASSEMBLY) *.mdb *.pdb TestResult.xml
|
|
DISTCLEANFILES = Makefile.in
|
|
|