-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Davide Ciani
committed
Nov 22, 2016
1 parent
551a175
commit b26597b
Showing
1,347 changed files
with
71,306 additions
and
47,740 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,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry excluding="eu/engys/vtk/actors/" kind="src" path="src"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> |
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 @@ | ||
/bin/ |
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,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>HELYX-OS</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.jdt.core.javabuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
</natures> | ||
</projectDescription> |
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 |
---|---|---|
@@ -1,22 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<project default="dist" name="Create Runnable Jar for Project HELYXOS with libraries in sub-folder"> | ||
<project default="dist" name="Create Jar for HELYX-OS"> | ||
|
||
<property name="component.name" value="HelyxOS_MOD" /> | ||
<property name="component.version" value="2.3.1" /> | ||
<property name="component.vendor" value="" /> | ||
|
||
<property name="version" value="ocfd" /> | ||
<property name="version.name" value="OCFD" /> | ||
<property name="component.name" value="HELYX-OS" /> | ||
<property name="component.vendor" value="Engys" /> | ||
<property name="component.mail" value="[email protected]" /> | ||
<property name="component.site" value="http://engys.github.io/HELYX-OS/" /> | ||
<property name="component.copyright" value="Copyright © ENGYS Ltd 2016. All rights reserved." /> | ||
<property name="component.launcher" value="eu.engys.launcher.Launcher" /> | ||
<property name="component.version" value="2.4.0" /> | ||
|
||
<property name="jar.name" value="${component.name}.jar" /> | ||
|
||
<property name="src.dir" value="src" /> | ||
<property name="build.dir" value="build" /> | ||
|
||
<property name="lib.dir" value="lib" /> | ||
<property name="dist.dir" value="dist" /> | ||
|
||
<path id="main.path"> | ||
<path id="build.path"> | ||
<fileset dir="${lib.dir}"> | ||
<include name="**/*.jar" /> | ||
</fileset> | ||
|
@@ -29,32 +27,34 @@ | |
<target name="compile" depends="init"> | ||
<javac debug="true" destdir="${build.dir}" target="1.7" source="1.7" verbose="false" srcdir="${src.dir}" includeantruntime="false" includejavaruntime="yes"> | ||
<include name="eu/engys/**/*.java" /> | ||
<include name="vtk/**/*.java" /> | ||
<classpath refid="main.path" /> | ||
<classpath refid="build.path" /> | ||
</javac> | ||
<copy todir="${build.dir}"> | ||
<fileset dir="${src.dir}" includes="**/resources/**/*, **/*.png, **/*.jpeg, **/*.jpg, **/*.gif, **/*.properties" /> | ||
</copy> | ||
<touch file="${build.dir}/eu/engys/resources/version.properties" /> | ||
<propertyfile file="${build.dir}/eu/engys/resources/version.properties"> | ||
<entry key="name" value="${component.name}" /> | ||
<entry key="vendor" value="${component.vendor}" /> | ||
<entry key="version" value="${component.version}" /> | ||
<entry key="build" type="date" value="now" pattern="yyyy-MM-dd" /> | ||
</propertyfile> | ||
<touch file="${build.dir}/eu/engys/resources/version.properties" /> | ||
<propertyfile file="${build.dir}/eu/engys/resources/version.properties"> | ||
<entry key="name" value="${component.name}" /> | ||
<entry key="vendor" value="${component.vendor}" /> | ||
<entry key="version" value="${component.version}" /> | ||
<entry key="mail" value="${component.mail}" /> | ||
<entry key="site" value="${component.site}" /> | ||
<entry key="copyright" value="${component.copyright}" /> | ||
<entry key="build" type="date" value="now" pattern="yyyy-MM-dd" /> | ||
|
||
</propertyfile> | ||
</target> | ||
|
||
<target name="jar" depends="compile" description=""> | ||
<target name="dist" depends="compile" description=""> | ||
<pathconvert property="main.class.path" pathsep=" "> | ||
<path refid="main.path" /> | ||
<path refid="build.path" /> | ||
<mapper> | ||
<chainedmapper> | ||
<flattenmapper /> | ||
</chainedmapper> | ||
</mapper> | ||
</pathconvert> | ||
|
||
<!-- set the date --> | ||
<tstamp> | ||
<format property="TODAY" pattern="yyyy-MM-dd" /> | ||
</tstamp> | ||
|
@@ -64,7 +64,7 @@ | |
<!-- define MANIFEST.MF --> | ||
<manifest> | ||
<attribute name="Built-By" value="${user.name}" /> | ||
<attribute name="Main-Class" value="eu.engys.helyx.gui.Launcher" /> | ||
<attribute name="Main-Class" value="${component.launcher}" /> | ||
<attribute name="Specification-Title" value="${component.name}" /> | ||
<attribute name="Specification-Version" value="${component.version}" /> | ||
<attribute name="Specification-Vendor" value="${component.vendor}" /> | ||
|
@@ -73,25 +73,11 @@ | |
<attribute name="Implementation-Vendor" value="${component.vendor}" /> | ||
|
||
<attribute name="Class-Path" value="${main.class.path}" /> | ||
<attribute name="SplashScreen-Image" value="eu/engys/helyx/gui/resources/splash.png" /> | ||
<attribute name="SplashScreen-Image" value="${component.name}.png" /> | ||
</manifest> | ||
</jar> | ||
</target> | ||
|
||
<target name="dist" depends="jar"> | ||
<mkdir dir="${lib.dir}/old" /> | ||
<move todir="${lib.dir}/old"> | ||
<fileset file="${lib.dir}/core-util.jar" /> | ||
<fileset file="${lib.dir}/core.jar" /> | ||
<fileset file="${lib.dir}/core-gui.jar" /> | ||
<fileset file="${lib.dir}/core-vtk.jar" /> | ||
<fileset file="${lib.dir}/commonCFD.jar" /> | ||
<fileset file="${lib.dir}/StandardCFD.jar" /> | ||
<fileset file="${lib.dir}/standardVOF.jar" /> | ||
<fileset file="${lib.dir}/HELYX-OS.jar" /> | ||
</move> | ||
</target> | ||
|
||
<target name="clean"> | ||
<delete dir="${build.dir}" /> | ||
<delete quiet="true"> | ||
|
Oops, something went wrong.