-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.xml
More file actions
26 lines (20 loc) · 1017 Bytes
/
build.xml
File metadata and controls
26 lines (20 loc) · 1017 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="handbrake" basedir=".">
<dirname property="app.basedir" file="${ant.file.handbrake}"/>
<property name="build.properties" value="${app.basedir}/build.properties"/>
<property file="${build.properties}"/>
<!-- Load Portapps core build -->
<property name="core.basedir" location="${app.basedir}\${core.dir}"/>
<fail unless="core.basedir" message="Core directory '${core.basedir}' not found in ${core.basedir}"/>
<echo message="Core found in ${core.basedir}" level="debug"/>
<!-- Import build-app.xml -->
<import file="${core.basedir}\.build\build-app.xml"/>
<!-- Targets -->
<target name="release" depends="release.app" description="Release"/>
<target name="prepare">
<copy file="${res.path}\portable.ini" todir="${extract.path}" overwrite="true"/>
<delete dir="${extract.path}\$PLUGINSDIR"/>
<delete file="${extract.path}\portable.ini.template"/>
<delete file="${extract.path}\uninst.exe.nsis"/>
</target>
</project>