-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
34 lines (30 loc) · 988 Bytes
/
build.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
<project default="compile" basedir=".">
<target name="compile" description="compile the source">
<exec executable="platformio">
<arg value="-f"/>
<arg value="-c"/>
<arg value="intellij"/>
<arg value="run"/>
</exec>
</target>
<target name="clean" description="clean the source">
<exec executable="platformio">
<arg value="-f"/>
<arg value="-c"/>
<arg value="intellij"/>
<arg value="run"/>
<arg value="--target"/>
<arg value="clean"/>
</exec>
</target>
<target name="upload" description="upload binaries to the device" depends="compile">
<exec executable="platformio">
<arg value="-f"/>
<arg value="-c"/>
<arg value="intellij"/>
<arg value="run"/>
<arg value="--target"/>
<arg value="upload"/>
</exec>
</target>
</project>