Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « NUnit « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b16e7affcf18aa409be4866059939ee5e15aa434 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98

ADDIN_BUILD = $(top_builddir)/build/AddIns/NUnit
ASSEMBLY = $(ADDIN_BUILD)/MonoDevelop.NUnit.dll
REFS =  \
	$(GLADE_SHARP_LIBS) \
	$(GTK_SHARP_LIBS) \
	$(MONO_ADDINS_LIBS) \
	-r:$(top_builddir)/build/bin/MonoDevelop.Components.dll \
	-r:$(top_builddir)/build/bin/MonoDevelop.Core.dll \
	-r:$(top_builddir)/build/bin/MonoDevelop.Core.Gui.dll \
	-r:$(top_builddir)/build/bin/MonoDevelop.Ide.dll \
	-r:$(top_builddir)/build/bin/MonoDevelop.Projects.dll \
	-r:$(top_srcdir)/src/addins/NUnit/lib/nunit.core.dll \
	-r:$(top_srcdir)/src/addins/NUnit/lib/nunit.framework.dll \
	-r:System \
	-r:System.Xml

FILES =  \
	AssemblyInfo.cs \
	Commands/NUnitCommands.cs \
	Gui/CircleImage.cs \
	Gui/NUnitAssemblyGroupConfigurationNodeBuilder.cs \
	Gui/NUnitAssemblyGroupNodeBuilder.cs \
	Gui/NUnitOptionsPanel.cs \
	Gui/TestAssemblyNodeBuilder.cs \
	Gui/TestChart.cs \
	Gui/TestNodeBuilder.cs \
	Gui/TestPad.cs \
	Gui/TestResultsPad.cs \
	Gui/UnitTestOptionsDialog.cs \
	Project/NUnitAssemblyGroupFileFormat.cs \
	Project/NUnitAssemblyGroupProject.cs \
	Project/TestAssembly.cs \
	Project/TestAssemblyCollection.cs \
	Services/CombineTestGroup.cs \
	Services/ExternalTestRunner.cs \
	Services/GeneralTestOptions.cs \
	Services/IResultsStore.cs \
	Services/ITestProgressMonitor.cs \
	Services/ITestProvider.cs \
	Services/NUnitAssemblyTestSuite.cs \
	Services/NUnitOptions.cs \
	Services/NUnitProjectTestSuite.cs \
	Services/NUnitService.cs \
	Services/NUnitTestCase.cs \
	Services/NUnitTestSuite.cs \
	Services/SystemTestProvider.cs \
	Services/TestContext.cs \
	Services/UnitTest.cs \
	Services/UnitTestCollection.cs \
	Services/UnitTestGroup.cs \
	Services/UnitTestResult.cs \
	Services/UnitTestResultsStore.cs \
	Services/UnitTestStatus.cs \
	Services/XmlResultsStore.cs

RES =  \
	Gui/NUnit.Failed.png \
	Gui/NUnit.Loading.png \
	Gui/NUnit.None.png \
	Gui/NUnit.NotRun.png \
	Gui/nunit.png \
	Gui/NUnit.Running.png \
	Gui/NUnit.Success.png \
	Gui/NUnit.SuccessAndFailed.png \
	Gui/nunit-overlay-32.png \
	MonoDevelopNUnit.addin.xml \
	nunit.glade \
	templates/NUnitAssemblyGroup.xpt.xml \
	templates/NUnitProject.xpt.xml \
	templates/NUnitTestClass.xft.xml


NUNIT_FILES = \
nunit.core.dll \
nunit.framework.dll

SRC_NUNIT_FILES = $(addprefix $(srcdir)/lib/, $(NUNIT_FILES))
BUILD_NUNIT_FILES = $(addprefix $(ADDIN_BUILD)/, $(NUNIT_FILES))

all: $(ASSEMBLY) $(BUILD_NUNIT_FILES)

$(ADDIN_BUILD)/%: $(srcdir)/lib/%
	mkdir -p $(ADDIN_BUILD)
	cp $< $@

$(ASSEMBLY): $(FILES) $(build_resources)
	mkdir -p $(ADDIN_BUILD)
	$(CSC) $(CSC_FLAGS) $(REFS) $(build_resources:%=/resource:%) $(build_sources) -out:$@ -target:library


assemblydir = $(MD_ADDIN_DIR)/NUnit
assembly_DATA = $(ASSEMBLY) $(SRC_NUNIT_FILES)

CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb $(BUILD_NUNIT_FILES)
EXTRA_DIST = $(FILES) $(RES) $(SRC_NUNIT_FILES)

include $(top_srcdir)/Makefile.include