You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
677 B
26 lines
677 B
|
|
|
|
|
|
# Determine Qt GUI.
|
|
IF(APPLE)
|
|
# must use Carbon on the Mac to interface with Qt
|
|
VTK_DEPENDENT_OPTION(VTK_USE_QVTK "Build QVTK widget and plugin for Qt" OFF
|
|
"VTK_USE_GUISUPPORT;VTK_USE_RENDERING;VTK_USE_CARBON" OFF)
|
|
ELSE(APPLE)
|
|
VTK_DEPENDENT_OPTION(VTK_USE_QVTK "Build QVTK widget and plugin for Qt" OFF
|
|
"VTK_USE_GUISUPPORT;VTK_USE_RENDERING" OFF)
|
|
ENDIF(APPLE)
|
|
|
|
IF(WIN32)
|
|
VTK_DEPENDENT_OPTION(VTK_USE_MFC "Build MFC classes for VTK" OFF
|
|
"VTK_USE_GUISUPPORT;VTK_USE_RENDERING" OFF)
|
|
ENDIF(WIN32)
|
|
|
|
IF(VTK_USE_QVTK)
|
|
SUBDIRS(Qt)
|
|
ENDIF(VTK_USE_QVTK)
|
|
|
|
IF(VTK_USE_MFC)
|
|
SUBDIRS(MFC)
|
|
ENDIF(VTK_USE_MFC)
|
|
|
|
|