diff --git a/CMake/PackageDepends/MITK_Boost_Config.cmake b/CMake/PackageDepends/MITK_Boost_Config.cmake
index 1f2eb572f2..0414b37a77 100644
--- a/CMake/PackageDepends/MITK_Boost_Config.cmake
+++ b/CMake/PackageDepends/MITK_Boost_Config.cmake
@@ -1,29 +1,29 @@
if(MITK_USE_Boost)
if(NOT MITK_USE_SYSTEM_Boost)
set(Boost_NO_SYSTEM_PATHS 1)
endif()
set(Boost_USE_MULTITHREADED 1)
set(Boost_USE_STATIC_LIBS 0)
set(Boost_USE_STATIC_RUNTIME 0)
if(MITK_USE_Boost_LIBRARIES)
if(NOT MITK_USE_SYSTEM_Boost)
set(BOOST_INCLUDEDIR ${CMAKE_BINARY_DIR}/../Boost-install/include)
set(BOOST_LIBRARYDIR ${CMAKE_BINARY_DIR}/../Boost-install/lib)
- set(Boost_ADDITIONAL_VERSIONS 1.55)
+ set(Boost_ADDITIONAL_VERSIONS 1.56)
endif()
- find_package(Boost 1.55.0 REQUIRED COMPONENTS ${MITK_USE_Boost_LIBRARIES} QUIET)
+ find_package(Boost 1.56.0 REQUIRED COMPONENTS ${MITK_USE_Boost_LIBRARIES} QUIET)
else()
- find_package(Boost 1.55.0 REQUIRED QUIET)
+ find_package(Boost 1.56.0 REQUIRED QUIET)
endif()
list(APPEND ALL_INCLUDE_DIRECTORIES ${Boost_INCLUDE_DIRS})
if(Boost_LIBRARIES)
list(APPEND ALL_LIBRARIES ${Boost_LIBRARIES})
link_directories(${Boost_LIBRARY_DIRS})
endif()
endif(MITK_USE_Boost)
diff --git a/CMakeExternals/SOFA.cmake b/CMakeExternals/SOFA.cmake
index ea2caaa3ca..78974ecf1a 100644
--- a/CMakeExternals/SOFA.cmake
+++ b/CMakeExternals/SOFA.cmake
@@ -1,100 +1,100 @@
#-----------------------------------------------------------------------------
# SOFA
#-----------------------------------------------------------------------------
if(MITK_USE_SOFA)
# Sanity checks
if(DEFINED SOFA_DIR AND NOT EXISTS ${SOFA_DIR})
message(FATAL_ERROR "SOFA_DIR variable is defined but corresponds to non-existing directory")
endif()
set(proj SOFA)
set(proj_DEPENDENCIES Boost GLEW)
set(SOFA_DEPENDS ${proj})
set(preconfigure_cmake_args
-DGLEW_DIR:PATH=${GLEW_DIR}
-DSOFA-APPLICATION_MODELER:BOOL=OFF
-DSOFA-APPLICATION_RUNSOFA:BOOL=OFF
-DSOFA-APPLICATION_SOFABATCH:BOOL=OFF
-DSOFA-EXTERNAL_BOOST:BOOL=ON
-DSOFA-EXTERNAL_BOOST_PATH:PATH=${CMAKE_BINARY_DIR}/Boost-install/lib
-DSOFA-EXTERNAL_CSPARSE:BOOL=ON
-DSOFA-EXTERNAL_GLEW:BOOL=ON
-DSOFA-EXTERNAL_PNG:BOOL=OFF
-DSOFA-EXTERNAL_ZLIB:BOOL=OFF
-DSOFA-LIB_COMPONENT_SPARSE_SOLVER:BOOL=ON
-DSOFA-LIB_GUI_GLUT:BOOL=OFF
-DSOFA-LIB_GUI_QT:BOOL=OFF
-DSOFA-LIB_GUI_QTVIEWER:BOOL=OFF
-DSOFA-TUTORIAL_CHAIN_HYBRID:BOOL=OFF
-DSOFA-TUTORIAL_COMPOSITE_OBJECT:BOOL=OFF
-DSOFA-TUTORIAL_MIXED_PENDULUM:BOOL=OFF
-DSOFA-TUTORIAL_ONE_PARTICLE:BOOL=OFF
-DSOFA-TUTORIAL_ONE_TETRAHEDRON:BOOL=OFF
)
if(NOT APPLE)
list(APPEND proj_DEPENDENCIES GLUT)
list(APPEND preconfigure_cmake_args
-DSOFA-EXTERNAL_FREEGLUT:BOOL=ON
-DGLUT_DIR:PATH=${GLUT_DIR}
)
endif()
if(NOT MITK_USE_SYSTEM_Boost)
list(APPEND preconfigure_cmake_args
-DBoost_NO_SYSTEM_PATHS:BOOL=ON
-DBOOST_INCLUDEDIR:PATH=${CMAKE_BINARY_DIR}/Boost-install/include
-DBOOST_LIBRARYDIR:PATH=${CMAKE_BINARY_DIR}/Boost-install/lib
- -DBoost_ADDITIONAL_VERSIONS:STRING=1.55
+ -DBoost_ADDITIONAL_VERSIONS:STRING=1.56
)
endif()
if(MITK_USE_SOFA_PLUGINS_DIR)
list(APPEND preconfigure_cmake_args
-DSOFA_APPLICATIONS_PLUGINS_DIR:PATH=${MITK_USE_SOFA_PLUGINS_DIR}
)
foreach(plugin ${MITK_USE_SOFA_PLUGINS})
string(TOUPPER ${plugin} plugin)
list(APPEND preconfigure_cmake_args
-DSOFA-PLUGIN_${plugin}:BOOL=ON
)
endforeach()
endif()
set(rev "10669")
set(SOFA_PATCH_COMMAND ${CMAKE_COMMAND} -DTEMPLATE_FILE:FILEPATH=${MITK_SOURCE_DIR}/CMakeExternals/EmptyFileForPatching.dummy -P ${MITK_SOURCE_DIR}/CMakeExternals/PatchSOFA-rev${rev}.cmake)
set(SOFA_PRECONFIGURE_COMMAND ${CMAKE_COMMAND} -G${gen} ${ep_common_args} ${preconfigure_cmake_args} ${boost_cmake_args} ${CMAKE_BINARY_DIR}/${proj}-src)
if(NOT DEFINED SOFA_DIR)
ExternalProject_Add(${proj}
SOURCE_DIR ${CMAKE_BINARY_DIR}/${proj}-src
BINARY_DIR ${proj}-build
PREFIX ${proj}-cmake
URL ${MITK_THIRDPARTY_DOWNLOAD_PREFIX_URL}/SOFA-rev${rev}.tar.gz
URL_MD5 d01a194f54b933f4cdfdfc75b2f81a2f
PATCH_COMMAND ${SOFA_PATCH_COMMAND}
INSTALL_COMMAND ""
CMAKE_GENERATOR ${gen}
CMAKE_ARGS
${ep_common_args}
DEPENDS ${proj_DEPENDENCIES}
)
ExternalProject_Add_Step(${proj} preconfigure
COMMAND ${SOFA_PRECONFIGURE_COMMAND}
WORKING_DIRECTORY ${proj}-build
DEPENDEES patch
DEPENDERS configure
LOG 1
)
set(SOFA_DIR ${CMAKE_CURRENT_BINARY_DIR}/${proj}-build)
else()
mitkMacroEmptyExternalProject(${proj} "${proj_DEPENDENCIES}")
endif()
endif()
diff --git a/Documentation/Doxygen/DeveloperManual/Starting/SettingUpMITK/BuildInstructions.dox b/Documentation/Doxygen/DeveloperManual/Starting/SettingUpMITK/BuildInstructions.dox
index 67fa18d753..dab91b2be2 100644
--- a/Documentation/Doxygen/DeveloperManual/Starting/SettingUpMITK/BuildInstructions.dox
+++ b/Documentation/Doxygen/DeveloperManual/Starting/SettingUpMITK/BuildInstructions.dox
@@ -1,204 +1,204 @@
/**
\page BuildInstructionsPage Build Instructions
\tableofcontents
\section BuildInstructions_Introduction Introduction
The MITK build system (which is based on CMake) supports a "superbuild" process, meaning that it will download, configure, and build
all required third-party libraries (except Qt) automatically. These instructions will show you how to use the MITK superbuild.
\note This page explains explicitly how to build MITK itself. If you want to create your own project based on MITK, the process
described below is completely automated. Please see \ref HowToNewProject.
For more advanced users, the last sections explain how to inject custom build libraries into the superbuild process.
\section BuildInstructions_Prerequisites Prerequisites
You need:
-# Git from http://git-scm.com (there are also numerous third-party graphical clients available). We recomment using
Git, but see below for a way how to get the current source code without using it.
-# CMake (version \minimumCMakeVersion or higher)
-# Qt 4.x if you plan to develop Qt-based applications
(version \minimumQt4Version or above is required, Qt 5.x is only supported experimentally for a very limited number of modules)
-# If you are using Mac OS X you need an Xcode installation as this provides the neccessary compilers and SDKs
\section BuildInstructions_Qt A note about Qt
Nokia provides several binary packages for Qt. You must make sure that the package you download matches
your toolchain. On Linux, getting Qt by installing the packages provided by your Linux package manager is the preferred way.
On Windows, the Nokia provided binaries are compiled for 32bit architectures. You cannot build your own project for a 64bit machine and
use the 32bit Qt libraries. You have two options for a 64bit Qt-based application:
-# Download an inofficial 64bit installer, for example here. Note
that we cannot offer support for problems with MITK due to the usage of this kind of installers.
-# Compile Qt yourself. This is shortly described below.
To compile Qt on Windows using Visual Studio, follow the steps below:
-# Download the Qt sources and unpack them, e.g. to C:/qt-everywhere-opensource-src-4.7.4
-# Open a Visual Studio command prompt. Make sure to use the appropriate command prompt for either a 32 bit or 64 bit build.
Note that Visual Studio Express does not come with 64bit compilers out of the box (the Professional version does).
-# Configure Qt by executing the configure.exe command in your Qt source directory. The following configure options will
build a Qt compatible with MITK:
\verbatim
configure.exe -prefix C:\Qt\4.7.4_vc9_x64 -debug-and-release -qt-sql-sqlite -no-multimedia -no-audio-backend -no-phonon -no-phonon-backend -no-declarative -mp -nomake examples -nomake demos -nomake docs
\endverbatim
-# Build and install the Qt libraries
\verbatim
nmake
nmake install
\endverbatim
After "nmake install" completed successfully, you may delete your Qt source directory.
\section BuildInstructions_Get_Source Get a source tree
Since MITK is under active development we recommend to use git to check out
the latest stable release from the homepage. If you decide to use the most current nightly
release, make sure to get a stable tree: Check the
MITK dashboard
before checking out. If the build tree is not clean, you can specify an
older revision for the checkout or get a stable tar ball from
www.mitk.org.
If you don't want to use Git, you may also download the current source code (or any other older version)
as a tar.gz package by clicking on the
snapshot link. You can then
skip the clone step below.
To clone MITK's current git repository do:
\code
git clone http://git.mitk.org/MITK.git
\endcode
\section BuildInstructions_Build_With_CMake Build MITK with CMake
Create a new directory for the superbuild binary tree, change to it and call CMake:
In the shell (assuming you current directory is the same as the one where you
issued the git clone command):
\code
mkdir MITK-superbuild
cd MITK-superbuild
ccmake ../MITK
\endcode
If you use Windows, then you just start the CMake GUI and enter the location of the source and of the binary tree,
choose a suitable generator and configure the project.
If you use Mac OS X you will have to tweak the CMake configuration:
- First of all you have to check the selected compilers, i.e.:
- CMAKE_CXX_COMPILER
- CMAKE_C_COMPILER
- both should be either apple's clang or apple's gcc compiler
- Next you have to assure hat CMAKE_OSX_SYSROOT points to the correct SDK location:
- This is either /Developer/SDKs/Developer/SDKs/MacOSX10.7.sdk or if you have installed Xcode 4.3+ it is located in /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/
CMake will present you a couple of options, these are the most important ones:
- MITK_USE_ACVD Build MITK code which depends on ACVD (this will download and build ACVD)
- MITK_USE_BLUEBERRY Build the BlueBerry application framework
- - MITK_USE_Boost Build MITK code which depends on Boost (this will download Boost 1.55)
+ - MITK_USE_Boost Build MITK code which depends on Boost (this will download Boost 1.56)
- MITK_USE_Boost_LIBRARIES If you need binary Boost libraries, specify them here.
- MITK_USE_OpenCV Build MITK code which depends on OpenCV (this will download and build OpenCV 2.4)
- MITK_USE_Python Enables Python wrapping in MITK. This will also configure ITK, VTK, and OpenCV (if enabled) to build Python wrappers.
- MITK_USE_QT Build MITK code which depends on Qt
- MITK_USE_SOFA Build MITK code which depends on SOFA (this will download and build SOFA)
- QT_QMAKE_EXECUTABLE The path to the qmake executable of your Qt installation
If you are satisfied with the configuration of your MITK superbuild, generate the project files with
CMake by pressing "Generate".
Linux and Mac OS X users usually just enter "make" (optionally supplying the number threads to be used for
a parallel build):
\code
make -j4
\endcode
\note On Mac OS X: If you follow these steps CMake will produce Makefiles and therefore you cannot use Xcode but you have to use e.g. the QtCreator for programming. At the moment developing MITK with Xcode is not supported and using Xcode the superbuild doesn't complete without errors.
Windows users using Visual Studio can open the generated MITK-superbuild.sln solution file
in the MITK-superbuild directory and start the build by building the BUILD_ALL project.
\section BuildInstructions_Customize Customize your MITK superbuild
The MITK superbuild configured MITK with all needed external libraries. The build directories of these libraries,
and of MITK itself are located inside the MITK-superbuild directory. For example, the directory layout may
look like:
\code
MITK-superbuild
|- ITK-build
|- VTK-build
|- MITK-build
\endcode
To change the configuration of the MITK build, choose the MITK-build directory as the binary directory in the
CMake GUI. After generating the project files, build the MITK project by either issuing "make" in the MITK-build
directory (Linux), or by opening MITK-build/MITK.sln and building the project with Visual Studio.
You may also change the configuration of any project configured via the superbuild process. Make sure to also build
the changed project and also the projects which depend on it.
\section BuildInstructions_Running Running Applications
On Linux, just execute the application you want to run. MITK executables are located in
MITK-superbuild/MITK-build/bin
On Windows, the PATH environment variable must contain the directories containging third-party libraries.
The MITK build system generated Windows Batch files in the MITK-build directory which set up a correct
environment and opens the appropriate Visual Studio solution file. Use (and maybe modify/enhance) these Batch files
to be able to start and debug MITK applications from inside Visual Studio.
\section BuildInstructions_Documentation Documentation
If you have the Doxygen documentation tool installed, you get a new project
(Visual Studio) or "make" target named "doc". You can build this to generate the HTML documentation of MITK in
the Documentation/Doxygen directory of your MITK-build binary tree or in the MITK_DOXYGEN_OUTPUT_DIR CMake variable
(if specified).
\section BuildInstructions_Extending Extend MITK on your own (using the application framework BlueBerry)
Please see \ref NewPluginPage
\section BuildInstructions_As_Toolkit Use MITK in your own project (as a toolkit)
To use MITK in your external project, add the CMake command find_package(MITK REQUIRED)
to your CMakeLists.txt and make use of the CMake macros MITK_CHECK_MODULE(result_var )
and MITK_USE_MODULE()
provided by MITK.
Here is an example CMakeLists.txt (from the Examples/QtAppExample/ directory) which allows you
to create a Qt based application using MITK to display an image.
\include QtAppExample/CMakeLists.txt
\section BuildInstructions_Advanced_Customization Superbuild Customization
You can inject pre-build third-party libraries into the MITK superbuild by setting certain CMake variables before
the first configure step. MITK will then use these third-party libraries instead of downloading and building them
itself. Note you must take care to configure those libraries with all options MITK requires.
The variables listed below are provided for injecting third-party libraries. Their occurrence in the CMake GUI or
in ccmake may depend on specific MITK_USE_* options set to ON. You may also use the variable names below without the
EXTERNAL_ prefix, for example when providing their values on a command line call to CMake.
- EXTERNAL_BOOST_ROOT Set this variable to your custom Boost installation
- EXTERNAL_CTK_DIR Set this variable to your CTK binary tree (the directory containing the CTKConfig.cmake file)
- EXTERNAL_CableSwig_DIR Set this variable to your CableSwig binary tree for Python wrapping (the directory containing the CableSwigConfig.cmake file)
- EXTERNAL_DCMTK_DIR Set this variable to your DCMTK binary tree (the directory containing the DCMTKConfig.cmake file)
- EXTERNAL_GDCM_DIR Set this variable to your GDCM binary tree (the directory containing the GDCMConfig.cmake file)
- EXTERNAL_ITK_DIR Set this variable to your ITK binary tree (the directory containing the ITKConfig.cmake file)
- EXTERNAL_OpenCV_DIR Set this variable to your OpenCV binary tree (the directory containing the OpenCVConfig.cmake file)
- EXTERNAL_SOFA_DIR Set this variable to your SOFA binary tree (the directory containing the SOFAConfig.cmake file)
- EXTERNAL_VTK_DIR Set this variable to your VTK binary tree (the directory containing the VTKConfig.cmake file)
To set CMake options before the first configure step is invoked, supply them on the command line, i.e.
\code
ccmake -DITK_DIR:PATH=/opt/ITK-release ../MITK
\endcode
See the following link for more information about how to configure third-party libraries:
\subpage BuildToolkits "How to build ITK, VTK and QT"
*/