-
juergen authored
git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2458 5a81b35b-ba03-0410-adc8-b2c5c5119f08
juergen authoredgit-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2458 5a81b35b-ba03-0410-adc8-b2c5c5119f08
Installing OpenStructure
This document describes how to install OpenStructure from source. If you are not planning to develop code for OpenStructure, you might be better off with one of the binaries available for download.
Installing the Dependencies
OpenStructure uses a bunch of OpenSource libraries. If you haven't already installed them, please install them now!
When you enable support for image processing, you will need:
If you would like to use the graphical user interface, also install:
In case you are compiling under Windows you have to install Visualstudio 2008. to compile the dependecies and OpenStructure. We recommend to compile the dependecies manually. Enter the directories where the dependencies are located in Tools->Options->Projects and Solutions->VC++ directories. Choose 'bin' directories to enter program paths to cmake, qmake and python, 'lib' directories to point to the location(s) of your dependencies.
Checking out the Source
You can checkout the source from SVN. The repository is located at
https://dng.biozentrum.unibas.ch/svn/openstructure/trunk
If you are using the commandline client, type in your shell
svn co https://dng.biozentrum.unibas.ch/svn/openstructure/trunk
On Windows install svn clients like tortoisesvn and use the function 'checkout' then enter the above mention URL.
Configuring
OpenStructure uses CMake for compiling and building the project. The next required step is to configure the build environment using cmake. You can do that by invoking cmake in the project directory (On Windows choose Tools->visualstudio commandline prompt from within visualstudio) :
cmake . <options>
There are two kinds of options: Options that let you control the building behaviour, enabling and disabling the compilation of certain modules and options that let you tell CMake where to find the dependencies. All of them are passed to CMake with via -D<opt>=<value>.
Flag to choose build system
On Windows make sure you specify -G"Visual Studio 9 2008"!
Flags to Control the Dependencies
By default, CMake searches the standard directories for dependencies. However, on some systems, this might not be enough. Here is a short description of how CMake figures out what dependencies to take and how you can influence it.
- Boost is mainly controlled via the BOOST_ROOT option. If boost wasn't found, it should be set to the prefix of the boost installation.
- QT_QMAKE_EXECUTABLE defines the exact Qt installation to take. It should be set to the full path to qmake.
- PYTHON_ROOT is the Python equivalent of BOOST_ROOT. It should be set to the prefix path containing the python binary, headers and libraries.
- SYS_ROOT controls the general prefix for searching libraries and headers. By default, it is set to /.
Build Options
- ENABLE_UI controls whether to build the graphical user interface module. By default it is set to true.
- ENABLE_IMG controls whether to build the image processing module. This will enable support for density maps, and general image processing in 1, 2 an 3 dimensions. By default it is set to true.
- ENABLE_GFX controls whether to build the graphics module. By default, this is set to true. If set to none, this implies ENABLE_UI=NO.
- Shader support is controlled with USE_SHADER. By default, no shaders are used.
- If OPTIMIZE is set to 1, an optimized version of OpenStructure is built.
Building the Project
Type make. If you are using a multi-core machine, you can use the -j flag to run multiple jobs at once.
On Windows run 'Build OpenStructure' from the build menu.