mirror of
https://github.com/paulscherrerinstitute/ch.psi.imagej.hdf5.git
synced 2025-04-21 05:30:02 +02:00
added: build file, plugins.config, README
git-svn-id: http://imagej-hdf.googlecode.com/svn/trunk@4 1917c786-bb84-a533-1332-c8e2925cefa8
This commit is contained in:
parent
bf2005f5cb
commit
9baf015e1f
33
README
Normal file
33
README
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
####################################################################
|
||||||
|
# INSTALL NOTES #
|
||||||
|
####################################################################
|
||||||
|
- For linux 32bit:
|
||||||
|
Edit the "run" file in your ImageJ installation directory that it
|
||||||
|
looks like the following
|
||||||
|
./jre/bin/java -Djava.library.path=./lib/linux32
|
||||||
|
-Xmx512m -jar ij.jar
|
||||||
|
|
||||||
|
- For linux 64bit:
|
||||||
|
Edit the "run" file in your ImageJ installation directory that it
|
||||||
|
looks like the following
|
||||||
|
java -Djava.library.path=./lib/linux64
|
||||||
|
-Xmx512m -jar ij.jar
|
||||||
|
|
||||||
|
Note: You must have 64bit JRE installed!
|
||||||
|
|
||||||
|
- For windows 32bit:
|
||||||
|
Edit the "ImageJ.cfg" file in your ImageJ installation directory
|
||||||
|
that it looks like the following
|
||||||
|
C:\Programme\Java\jdk1.5.0_14\bin\javaw.exe
|
||||||
|
-Djava.library.path=lib\win32 -Xmx640m -cp ij.jar ij.ImageJ
|
||||||
|
|
||||||
|
- For Mac 32bit (tested on Snow Leopard):
|
||||||
|
Edit the "run" file in your ImageJ installation directory that it
|
||||||
|
looks like the following
|
||||||
|
java -Djava.library.path=./lib/mac32
|
||||||
|
-Xmx512m -jar ij.jar
|
||||||
|
|
||||||
|
Note: You must have 32bit JRE installed or force the JVM to use a
|
||||||
|
32bit data model (-d32)!
|
||||||
|
|
||||||
|
####################################################################
|
91
build.xml
Normal file
91
build.xml
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
<project name="ImageJ-HDF Plugin" default="dist" basedir=".">
|
||||||
|
<description>
|
||||||
|
"Build file for ImageJ-HDF Plugin"
|
||||||
|
</description>
|
||||||
|
<!-- set global properties for this build -->
|
||||||
|
<property name="src" location="src"/>
|
||||||
|
<property name="build" location="build"/>
|
||||||
|
<property name="dist" location="dist"/>
|
||||||
|
<property environment="env"/>
|
||||||
|
|
||||||
|
<!-- set class path properties for this build -->
|
||||||
|
<path id="project.class.path">
|
||||||
|
<pathelement path="${classpath}"/>
|
||||||
|
<fileset dir="hdf-java">
|
||||||
|
<include name="**/*.jar"/>
|
||||||
|
</fileset>
|
||||||
|
<filelist refid="third-party_jars"/>
|
||||||
|
</path>
|
||||||
|
|
||||||
|
<!-- Set the path for the hdf-java library -->
|
||||||
|
<path id="lib.hdf.path">
|
||||||
|
<fileset dir="hdf-java" includes="*.jar"/>
|
||||||
|
</path>
|
||||||
|
|
||||||
|
<!-- Check if IJCLASSPATH is set -->
|
||||||
|
<fail message="You have to set $IJCLASSPATH / %IJCLASSPATH% before
|
||||||
|
running Ant!">
|
||||||
|
<condition>
|
||||||
|
<equals arg1="${env.IJCLASSPATH}" arg2=""/>
|
||||||
|
</condition>
|
||||||
|
</fail>
|
||||||
|
|
||||||
|
<target name="init">
|
||||||
|
<!-- Create the time stamp -->
|
||||||
|
<tstamp/>
|
||||||
|
<!-- Create the build directory structure used by compile -->
|
||||||
|
<mkdir dir="${build}"/>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<!-- Compile the java code -->
|
||||||
|
<target name="compile" depends="init"
|
||||||
|
description="compile the source " >
|
||||||
|
<!-- Compile the java code from ${src} into ${build} -->
|
||||||
|
<javac
|
||||||
|
srcdir="${src}"
|
||||||
|
destdir="${build}"
|
||||||
|
source="1.6"
|
||||||
|
target="1.6"
|
||||||
|
classpath="${toString:lib.hdf.path}:${env.IJCLASSPATH}">
|
||||||
|
<compilerarg value="-Xlint:all -deprecation"/>
|
||||||
|
</javac>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<!-- Build the plugin jar file -->
|
||||||
|
<target name="buildjar" depends="compile"
|
||||||
|
description="generate the distribution" >
|
||||||
|
<!-- Create the distribution directory -->
|
||||||
|
<mkdir dir="${dist}/plugins"/>
|
||||||
|
<!-- Put everything in one jar file -->
|
||||||
|
<jar jarfile="${dist}/plugins/imagej-hdf-${DSTAMP}_.jar">
|
||||||
|
<fileset dir="" includes="plugins.config,README"/>
|
||||||
|
<fileset dir="${build}" includes="*.class"/>
|
||||||
|
<zipgroupfileset dir="hdf-java" includes="*.jar" />
|
||||||
|
</jar>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<!-- Create on zip file including all libraries -->
|
||||||
|
<target name="dist" depends="buildjar"
|
||||||
|
description="generate the distribution" >
|
||||||
|
<!-- Copy the c libraries to the distribution directory -->
|
||||||
|
<copy todir="${dist}/lib">
|
||||||
|
<fileset dir="hdf-java/lib">
|
||||||
|
<Exclude name="**/*.java"/>
|
||||||
|
</fileset>
|
||||||
|
</copy>
|
||||||
|
<!-- zip everything in one file -->
|
||||||
|
<zip zipfile="${dist}/imagej-hdf-${DSTAMP}.zip">
|
||||||
|
<fileset dir="" includes="README"/>
|
||||||
|
<fileset dir="${dist}"/>
|
||||||
|
</zip>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<!-- Clean everything -->
|
||||||
|
<target name="clean"
|
||||||
|
description="clean up" >
|
||||||
|
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||||
|
<delete dir="${build}"/>
|
||||||
|
<delete dir="${dist}"/>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
</project>
|
5
plugins.config
Normal file
5
plugins.config
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
File>Import, "HDF5...", HDF5_Reader_
|
||||||
|
File>Save As, "HDF5", HDF5_Writer_
|
||||||
|
Plugins>HDF5, "Load HDF5 File", HDF5_Reader_
|
||||||
|
Plugins>HDF5, "Save HDF5 File", HDF5_Writer_
|
||||||
|
Plugins>HDF5, "HDF5 Preferences", HDF5_Config
|
Loading…
x
Reference in New Issue
Block a user