Uh oh!
There was an error while loading. Please reload this page.
forked from pythonnet/pythonnet
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpythonnet.build
More file actions
Latest commit
74 lines (58 loc) · 1.7 KB
/
Copy pathpythonnet.build
File metadata and controls
74 lines (58 loc) · 1.7 KB
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
<?xml version="1.0"?>
<projectname="Python for .NET"default="build-2.0"basedir=".">
<propertyname="project.name"value="pythonnet"/>
<targetname="build-1.0">
<propertyname="project.version"value="1.0.0"/>
<echomessage="Building ${project.name}-${project.version}"/>
</target>
<targetname="build-2.0"depends="runtime, console, testdll, clrmodule,
oldmodule">
<propertyname="project.version"value="2.0.0"/>
<echomessage="Building ${project.name}-${project.version}"/>
</target>
<targetname="test">
</target>
<targetname="console"depends="runtime" >
<csctarget="exe"output="./python.exe" >
<references>
<includename="python.runtime.dll" />
</references>
<sources>
<includename="src/console/*.cs" />
</sources>
</csc>
</target>
<targetname="runtime">
<csctarget="library"output="python.runtime.dll"unsafe="true">
<sources>
<includename="src/runtime/*.cs" />
</sources>
</csc>
</target>
<targetname="testdll">
<csctarget="library"output="python.test.dll">
<references>
<includename="python.runtime.dll" />
</references>
<sources>
<includename="src/testing/*.cs" />
</sources>
</csc>
</target>
<targetname="oldmodule">
<ilasmtarget="dll"output="CLR.dll">
<sources>
<includename="src/runtime/oldmodule.il" />
</sources>
</ilasm>
</target>
<targetname="clrmodule">
<ilasmtarget="dll"output="clr.dll">
<sources>
<includename="src/runtime/clrmodule.il" />
</sources>
</ilasm>
</target>
<targetname="dist">
</target>
</project>