Difference between revisions of "Build on MacOS X"
Line 10: | Line 10: | ||
cd micromanager1.3<br> | cd micromanager1.3<br> | ||
</code> | </code> | ||
− | ...IF you have access to a proprietary section of the the source repository, check it out explicitly thus: | + | ...IF you have access to a proprietary section of the the source repository, check it out explicitly thus:<br> |
<code> | <code> | ||
svn --username YOURNAME --password YOURPASSWORD checkout https://valelab.ucsf.edu/svn/micromanager2/branches/micromanager1.3/SecretDeviceAdapters | svn --username YOURNAME --password YOURPASSWORD checkout https://valelab.ucsf.edu/svn/micromanager2/branches/micromanager1.3/SecretDeviceAdapters | ||
</code> | </code> | ||
− | continuing: | + | continuing:<br> |
<code> | <code> | ||
− | autoreconf -i -s --force | + | autoreconf -i -s --force<br> |
</code> | </code> | ||
− | ...now tell the configurator where the ImageJ jar and plugin directory is: | + | ...now tell the configurator where the ImageJ jar and plugin directory is:<br> |
<code> | <code> | ||
./configure --with-imagej=/Applications/Micro-Manager1.3/<br> | ./configure --with-imagej=/Applications/Micro-Manager1.3/<br> |
Revision as of 15:51, 22 April 2011
first of all, install the current µManager from http://micro-manager.org/downloads.php put it into a directory like /Applications/Micro-Manger1.3 for example this will install ImageJ for use below
cd
...IF you have access to a proprietary section of the the source repository, check it out explicitly thus:
mkdir projects
cd projects
svn checkout https://valelab.ucsf.edu/svn/micromanager2/branches/micromanager1.3
cd micromanager1.3
svn --username YOURNAME --password YOURPASSWORD checkout https://valelab.ucsf.edu/svn/micromanager2/branches/micromanager1.3/SecretDeviceAdapters
continuing:
autoreconf -i -s --force
...now tell the configurator where the ImageJ jar and plugin directory is:
./configure --with-imagej=/Applications/Micro-Manager1.3/
make
make install