-
Notifications
You must be signed in to change notification settings - Fork 77
Configuring and Building DREAM.3D (Windows)
These prerequisites need to be completed before configuring and building DREAM.3D.
If you have already fulfilled all of these prerequisites, skip to the Setting Up DREAM.3D for CMake Configuration section.
A compatible compiler needs to be installed on your system to be able to build DREAM.3D.
For more information, please visit Installing a Compiler Suite.
The source code for DREAM.3D must be downloaded using Git.
For more information, please visit Downloading the DREAM.3D Source Code.
Developers of DREAM.3D must use the Superbuild build system to install a DREAM.3D SDK.
For more information, please visit Making an SDK.
Once the SDK is installed, a file with the name DREAM3D_SDK.cmake can be found in the DREAM3D_SDK directory at C:\DREAM3D_SDK\DREAM3D_SDK.cmake. This file defines all the installed locations for all of the dependent libraries.
Open the DREAM3D_SDK.cmake file in the DREAM3D_SDK folder. Check that the path to every dependency is set correctly. For example, the paths to Qt, HDF5, Boost, Qwt, and others may be written incorrectly and may need to be updated to whatever path each one is located at on the file system.
-
Open CMake and set the Where is the source code path to C:\[YOUR-USER-FOLDER]\Workspace\DREAM3D.
-
Set the Where to build the binaries path to C:\[YOUR-USER-FOLDER]\Workspace\Builds\DREAM3D-Build\Debug.
-
We are going to create a CMake variable. Press the Add Entry button.
-
Set the Name to DREAM3D_SDK. Set the Type to PATH and set the Value to C:\DREAM3D_SDK
-
You should now have one variable, DREAM3D_SDK.
-
Press the Configure button in CMake.
-
Set the generator to be compatible with whatever method you'll be using to work with DREAM.3D. For example:
- For Visual Studio 2013, set it to Visual Studio 12 2013 Win64.
- For Visual Studio 2015, set it to Visual Studio 14 2015 Win64.
- For command line use, set it to Unix Makefiles or, if installed, Ninja. Any generator can be used for command line, but these are the recommended ones.
Make sure Use default native compilers is checked.
-
When the configuration is finished, make sure that CMAKE_BUILD_TYPE is set to Debug.
-
Press the Configure button in CMake again. You may need to click Configure a few times until all the red highlights are gone.
-
Press the Generate button in CMake to generate the build files.
-
Repeat steps 1-10, except use path C:\[YOUR-USER-FOLDER]\Workspace\Builds\DREAM3D-Build\Release for step 2 and set CMAKE_BUILD_TYPE to Release in step 9.
Once you have configured DREAM.3D, simply build DREAM.3D in your preferred IDE, or open the Windows Command Line and build DREAM.3D without an IDE.
Next Page: Creating a Filter.
Previous Page: Installing the DREAM.3D SDK.