-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.main.xml
41 lines (33 loc) · 1.74 KB
/
build.main.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<project name="MoBL" default="all">
<!-- Key input modules -->
<property name="sdfmodule" value="MoBL"/>
<property name="esvmodule" value="MoBL"/>
<property name="strmodule" value="mobl"/>
<!-- Project directories -->
<property name="trans" location="trans"/>
<property name="src-gen" location="editor/java"/>
<property name="syntax" location="syntax"/>
<property name="include" location="include"/>
<property name="lib" location="lib"/>
<property name="build" location="bin"/>
<property name="dist" location="bin/dist"/>
<!-- Imports -->
<property name="build.sdf.imports" value=""/>
<property name="build.stratego.args" value="--library
-I "${trans}" -I "${basedir}"
-la stratego-lib -la stratego-sglr -la stratego-gpp -la stratego-xtc -la stratego-aterm"/>
<!-- External .def and .jar locations
<property name="externaldef" location="syntax/${sdfmodule}.def"/>
<property name="externaljar" value="../lib.jar"/>
<property name="externaljarflags" value="-la org.lib"/>
-->
<!-- Environment configuration for command-line builds -->
<condition property="build.strategoxt.sdf" value="${eclipse.spoofaximp.nativeprefix}" else="">
<isset property="eclipse.spoofaximp.nativeprefix"/>
</condition>
<property name="build.strategoxt.stratego" location="${user.home}/.nix-profile/bin"/>
<import file="build.generated.xml"/>
<!-- Main target -->
<target name="all" depends="spoofaximp.default"/>
</project>