iut-ibk / DynaMind-ToolBox

DynaMind-ToolBox
www.dance4water.org
GNU General Public License v2.0
9 stars 6 forks source link

Proper locations for make install #269

Closed christianurich closed 9 years ago

christianurich commented 9 years ago

Currently everything is put in output which works fine. However it would be great to install dynamited in th proper directories on linux and OS X type systems

christianurich commented 9 years ago

I implemented following structure

├── bin
│   ├── dynamind
│   └── dynamind-gui
├── doc
│ ├── include
│   └── dynamindcore
├── lib
│   ├── libdynamindcore.dylib
│   ├── libdynamindtoolbox.dylib
│   └── python2.7
│       └── site-packages
│           ├── _pydmtoolbox.so
│           ├── _pydynamind.so
│           ├── pydmtoolbox.py
│           └── pydynamind.py
└── share
    └── DynaMind
        ├── native_extensions
        │   ├── libdynamind-basicmodules.dylib
        │   ├── libdynamind-gdalmodules.dylib
        │   ├── libdynamind-sewer.dylib
        │   └── libdynamind-testmodules.dylib
        └── python_extensions

would that work for everybody?