-
Microsoft Windows 7 or above recommended
-
Supported Microsoft Visual Studio versions:
- Visual Studio 2013
- Visual Studio 2010 Professional
- Visual Studio 2008 Professional + SP1
- Visual Studio 2010 Express + hot-fix KB2280741 + Windows SDK 7
-
CMake, version 3.0 or above
-
Qt, version 4.8.7: one line build.
-
Setting up your git account:
-
Create a Github account.
-
Setup your SSH keys following these instructions at the exception of
step 2where you should NOT enter a passphrase. -
Setup your git username and your git email.
-
- Start Git Bash
- Checkout the source code into a directory
C:\W\by typing the following commands:
cd /c
mkdir W
cd /c/W
git clone https://github.com/KitwareMedical/VesselView.git VesselViewNote: use short source and build directory names to avoid the maximum path length limitation.
Note: The build process will take approximately 3 hours.
Option 1: CMake GUI and Visual Studio (Recommended)
- Start CMake GUI, select source directory
C:\W\VesselViewand set build directory toC:\W\VesselView-rel. - Add an entry
QT_QMAKE_EXECUTABLEpointing toC:\D\Support\qt-4.8.7-64-vs2013-rel. - Generate the project.
- Open
C:\W\VesselView-rel\VesselView.sln, selectReleaseand build the project.
Option 2: Command Line
- Start the Command Line Prompt
- Configure and build the project in
C:\W\VesselView-relby typing the following commands:
cd C:\W\
mkdir VesselView-rel
cd VesselView-rel
cmake -G "Visual Studio 9 2008 (Win64)" -DQT_QMAKE_EXECUTABLE:PATH=C:\D\Support\qt-4.8.7-64-vs2013-rel\bin\qmake.exe ..\VesselView
cmake --build . --config ReleaseInstall NSIS 2
Option 1: CMake and Visual Studio (Recommended)
- In the
C:\W\VesselView-rel\S-bld\Slicer-builddirectory, openSlicer.slnand build thePACKAGEtarget
Option 2: Command Line
- Start the Command Line Prompt
- Build the
PACKAGEtarget by typing the following commands:
cd C:\W\VesselView-rel\S-bld\Slicer-build
cmake --build . --config Release --target PACKAGE