oomph-setups/README.md

35 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2018-04-04 20:41:24 +02:00
# oomph-setups
The repo contains OOMPH setup files for MINRES projects and tools to ease jump start working with these projects.
# How to use
## Download the eclipse installer
Download the Eclipse Installer from [here](https://www.eclipse.org/downloads/eclipse-packages/?show_instructions=TRUE) and install it
according to the instructions given there.
2018-04-09 10:07:11 +02:00
## Use the MINRES setups permanently with the eclipse installer
2018-04-09 10:07:11 +02:00
Open the eclipse_inst.ini file being part of the Eclipse Installer (on MacOS it is located at 'Eclipse Installer.app/Contents/Eclipse'). Add the following line at the end:
2018-04-09 10:07:11 +02:00
```
2018-06-11 07:17:33 +02:00
-Doomph.redirection.setups=index:/->https://git.minres.com/Tooling/oomph-setups/raw/branch/master/
```
2020-12-03 22:45:45 +01:00
## Use the MINRES setups (temporarily) with the eclipse installer
Run the eclipse installer with additional command line arguments:
```
2018-06-11 07:17:33 +02:00
eclipse-inst -vmargs '-Doomph.redirection.setups=index:/->https://git.minres.com/Tooling/oomph-setups/raw/branch/master/'
```
2020-12-03 22:45:45 +01:00
or with a local copy of the repo:
```
mkdir -f $HOME/git
cd $HOME/git
git clone https://git.minres.com/Tooling/oomph-setups.git
eclipse-inst -vmargs '-Doomph.redirection.setups=index:/->file:///'$HOME'/git/oomph-setups/'
````