From 9baf015e1f0773ec6de9d0b58a7fbd7a2286e156 Mon Sep 17 00:00:00 2001 From: "matthiasch@googlemail.com" Date: Thu, 16 Jun 2011 06:01:56 +0000 Subject: [PATCH] added: build file, plugins.config, README git-svn-id: http://imagej-hdf.googlecode.com/svn/trunk@4 1917c786-bb84-a533-1332-c8e2925cefa8 --- README | 33 ++++++++++++++++++ build.xml | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++ plugins.config | 5 +++ 3 files changed, 129 insertions(+) create mode 100644 README create mode 100644 build.xml create mode 100644 plugins.config diff --git a/README b/README new file mode 100644 index 0000000..a300ee7 --- /dev/null +++ b/README @@ -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)! + +#################################################################### diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..5f7806c --- /dev/null +++ b/build.xml @@ -0,0 +1,91 @@ + + + "Build file for ImageJ-HDF Plugin" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/plugins.config b/plugins.config new file mode 100644 index 0000000..9468acb --- /dev/null +++ b/plugins.config @@ -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