VTK/Building/MacOSX: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Daviddoria (talk | contribs) m (moved Building VTK On Mac OS X to VTK/Building/MacOSX) |
|||
Line 1: | Line 1: | ||
== Installing Qt == | == Installing Qt == | ||
[http://download.qt-project.org/official_releases/qt/5.2/5.2.1/qt-opensource-mac-x64-clang-5.2.1.dmg Download the Qt5.2 Installer] and install into a directory of your choosing. | |||
Later when you configure VTK, remember to pass the option | |||
cmake -DQT_QMAKE_EXECUTABLE:PATH=/path/to/qmake /path/to/VTK | |||
== Installing CMake == | == Installing CMake == |
Revision as of 19:36, 28 April 2014
Installing Qt
Download the Qt5.2 Installer and install into a directory of your choosing.
Later when you configure VTK, remember to pass the option
cmake -DQT_QMAKE_EXECUTABLE:PATH=/path/to/qmake /path/to/VTK
Installing CMake
Installing VTK
Configure
ccmake ../VTK -G "UNIX Makefiles" \ -DVTK_USE_QVTK:BOOL=ON \ -DVTK_USE_CARBON:BOOL=ON \ -DCMAKE_INSTALL_PREFIX=/usr/local \ -DVTK_USE_GUISUPPORT:BOOL=ON
Build
make
Install
make install