-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change which JREs are included in different ZIP distributions for Win…
…dows - zip-win: only 64 bit JRE (in "jre" folder) - dir-word-addin: 64 bit JRE in "jre" folder and 32 bit JRE in "jre32" folder The 64 bit JRE is the default. The "jre" folder is automatically found by the launch script, the "jre32" folder isn't. The 32 bit JRE can optionally be used in order to get access to 32 bit TTS voices.
- Loading branch information
Showing
5 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0"?> | ||
<component> | ||
<fileSets> | ||
<fileSet> | ||
<directory>target/maven-jlink/classifiers/jre-win32</directory> | ||
<outputDirectory>jre</outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0"?> | ||
<component> | ||
<fileSets> | ||
<fileSet> | ||
<directory>target/maven-jlink/classifiers/jre-win64</directory> | ||
<outputDirectory>jre</outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters