mirror of
https://github.com/mitb-archive/filebot
synced 2025-01-08 12:28:04 -05:00
Add *.exe resources for Windows Portable ZIP package
This commit is contained in:
parent
c51c9f5fa3
commit
c86b1e5c7a
16
build.xml
16
build.xml
@ -328,6 +328,22 @@
|
||||
</target>
|
||||
|
||||
|
||||
<target name="zip" depends="revision" description="Build Windows Portable ZIP package">
|
||||
<property name="dir.staging" location="${dir.dist}/zip" />
|
||||
|
||||
<copy-replace todir="${dir.staging}">
|
||||
<fileset dir="${dir.installer}/zip" includes="*.ini" />
|
||||
</copy-replace>
|
||||
|
||||
<zip destfile="${dir.dist}/${release}-portable.zip" encoding="utf-8">
|
||||
<zipfileset dir="${dir.installer}/zip" includes="*.exe" />
|
||||
<zipfileset dir="${dir.staging}" includes="*.ini" />
|
||||
<zipfileset prefix="jar" dir="${dir.dist}/lib" />
|
||||
<zipfileset prefix="lib" dir="${dir.lib}/native/win32-x64" />
|
||||
</zip>
|
||||
</target>
|
||||
|
||||
|
||||
<target name="mas" depends="revision">
|
||||
<property name="dir.staging" location="${dir.dist}/mas" />
|
||||
|
||||
|
@ -1,7 +1,11 @@
|
||||
# Default Java Options
|
||||
#@{java.application.options}
|
||||
#@{windows.application.options}
|
||||
#@{windows.portable.application.options}
|
||||
@{java.application.options}
|
||||
|
||||
# Default Windows Java Options
|
||||
@{windows.application.options}
|
||||
|
||||
# Default Windows Portable Java Options
|
||||
@{windows.portable.application.options}
|
||||
|
||||
# Deployment Options
|
||||
-Dapplication.deployment=portable
|
||||
|
@ -1,7 +1,11 @@
|
||||
# Default Java Options
|
||||
#@{java.application.options}
|
||||
#@{windows.application.options}
|
||||
#@{windows.portable.application.options}
|
||||
@{java.application.options}
|
||||
|
||||
# Default Windows Java Options
|
||||
@{windows.application.options}
|
||||
|
||||
# Default Windows Portable Java Options
|
||||
@{windows.portable.application.options}
|
||||
|
||||
# Deployment Options
|
||||
-Dapplication.deployment=portable
|
||||
|
Loading…
Reference in New Issue
Block a user