For another project, please consult its home page to locate the current issue tracker.
View Issue Details [ Jump to Notes ] | [ Print ] | ||||||||
ID | Project | Category | View Status | Date Submitted | Last Update | ||||
0011951 | ParaView | Feature | public | 2011-03-09 11:37 | 2016-08-12 09:58 | ||||
Reporter | David Partyka | ||||||||
Assigned To | David Partyka | ||||||||
Priority | normal | Severity | minor | Reproducibility | have not tried | ||||
Status | closed | Resolution | moved | ||||||
Platform | OS | OS Version | |||||||
Product Version | 3.10 | ||||||||
Target Version | Fixed in Version | ||||||||
Summary | 0011951: Make Xdmf optional | ||||||||
Description | Add build infrastructure to be able to build ParaView without Xdmf. | ||||||||
Tags | No tags attached. | ||||||||
Project | |||||||||
Topic Name | |||||||||
Type | |||||||||
Attached Files | ![]() From 74e99c5ce98b85bd61c0881fae2d9ecc2861ac9d Mon Sep 17 00:00:00 2001 From: Brian Panneton <brian.c.panneton@us.army.mil> Date: Wed, 20 Jul 2011 10:45:43 -0400 Subject: [PATCH] Added support to build ParaView without Xdmf support. CMake option is PARAVIEW_BUILD_Xdmf. The default for the option is 'ON'. By turning off, Xdmf will not be built into ParaView. Change-Id: I17733e553033b5cc1382b27444022f9c63cf6b99 --- Applications/ParaView/Testing/XML/CMakeLists.txt | 39 +++++++----- CMake/ParaViewCommon.cmake | 64 ++++++++++---------- CMakeLists.txt | 7 ++- .../ServerManager/Testing/Cxx/CMakeLists.txt | 4 +- .../ServerManager/vtkInitializationHelper.cxx | 6 ++ ParaViewCore/VTKExtensions/CMakeLists.txt | 9 ++- SuperBuild/CMakeLists.txt | 7 ++ Utilities/Doxygen/CMakeLists.txt | 16 ++++- Utilities/VTKClientServer/CMakeLists.txt | 4 +- 9 files changed, 101 insertions(+), 55 deletions(-) diff --git a/Applications/ParaView/Testing/XML/CMakeLists.txt b/Applications/ParaView/Testing/XML/CMakeLists.txt index 30446d1..5e335ea 100644 --- a/Applications/ParaView/Testing/XML/CMakeLists.txt +++ b/Applications/ParaView/Testing/XML/CMakeLists.txt @@ -102,25 +102,32 @@ SET (TESTS_WITH_BASELINES ${CMAKE_CURRENT_SOURCE_DIR}/VariableSelector.xml ${CMAKE_CURRENT_SOURCE_DIR}/VariableSelector1.xml ${CMAKE_CURRENT_SOURCE_DIR}/ViewSettingsDialog.xml - ${CMAKE_CURRENT_SOURCE_DIR}/XdmfRead.xml - ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadImageData.xml - ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadImageDataCollection.xml - ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadRectilinearGrid.xml - ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadRectilinearGridCollection.xml - ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadStructuredGrid.xml - ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadStructuredGridCollection.xml - ${CMAKE_CURRENT_SOURCE_DIR}/XdmfGridAttributes.xml ${CMAKE_CURRENT_SOURCE_DIR}/XYChart.xml ${CMAKE_CURRENT_SOURCE_DIR}/XYHistogram.xml ${CMAKE_CURRENT_SOURCE_DIR}/ZLibXDMF.xml # ${CMAKE_CURRENT_SOURCE_DIR}/XYBarChart.xml ) + IF(PARAVIEW_BUILD_Xdmf) + SET(TEST_WITH_BASELINES + ${TEST_WITH_BASELINES} + ${CMAKE_CURRENT_SOURCE_DIR}/XdmfRead.xml + ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadImageData.xml + ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadImageDataCollection.xml + ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadRectilinearGrid.xml + ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadRectilinearGridCollection.xml + ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadStructuredGrid.xml + ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadStructuredGridCollection.xml + ${CMAKE_CURRENT_SOURCE_DIR}/XdmfGridAttributes.xml + ) + ENDIF(PARAVIEW_BUILD_Xdmf) # Mark tests that change change state considerably requires a restart of the # test suite when grouping tests together for faster playback. SET (GlobalProperties_BREAK TRUE) # <-- since this changes global colors. -SET (XdmfReadImageData_BREAK TRUE) +IF(PARAVIEW_BUILD_Xdmf) + SET (XdmfReadImageData_BREAK TRUE) +ENDIF(PARAVIEW_BUILD_Xdmf) # <-- since this changes light kit. SET (UndoRedo3_BREAK TRUE) SET (UndoRedo6_BREAK TRUE) @@ -185,12 +192,14 @@ SET (Clip_DISABLE_CRS TRUE) # These Xdmf tests have wireframes, hence the increased thresholds. -SET (XdmfReadImageData_THRESHOLD 20) -SET (XdmfReadRectilinearGrid_THRESHOLD 20) -SET (XdmfReadRectilinearGridCollection_THRESHOLD 20) -SET (XdmfReadStructuredGrid_THRESHOLD 20) -SET (XdmfReadStructuredGridCollection_THRESHOLD 20) -SET (XdmfReadImageDataCollection_THRESHOLD 20) +IF(PARAVIEW_BUILD_Xdmf) + SET (XdmfReadImageData_THRESHOLD 20) + SET (XdmfReadRectilinearGrid_THRESHOLD 20) + SET (XdmfReadRectilinearGridCollection_THRESHOLD 20) + SET (XdmfReadStructuredGrid_THRESHOLD 20) + SET (XdmfReadStructuredGridCollection_THRESHOLD 20) + SET (XdmfReadImageDataCollection_THRESHOLD 20) +ENDIF(PARAVIEW_BUILD_Xdmf) # This test renders points and they are offsetted a bit differently on # different platforms so just increase the threshold diff --git a/CMake/ParaViewCommon.cmake b/CMake/ParaViewCommon.cmake index 3f072ee..1f4fa9e 100644 --- a/CMake/ParaViewCommon.cmake +++ b/CMake/ParaViewCommon.cmake @@ -220,12 +220,14 @@ SET(KWCommon_INSTALL_NO_RUNTIME ${PV_INSTALL_NO_RUNTIME}) SET(KWCommon_INSTALL_NO_DOCUMENTATION 1) # XDMF config -SET(XDMF_INSTALL_LIB_DIR ${PV_INSTALL_LIB_DIR}) -SET(XDMF_INSTALL_BIN_DIR ${PV_INSTALL_BIN_DIR}) -SET(XDMF_INSTALL_INCLUDE_DIR "${PV_INSTALL_INCLUDE_DIR}/Xdmf") -SET(XDMF_INSTALL_INCLUDE_VTK_DIR "${PV_INSTALL_INCLUDE_DIR}/Xdmf") -SET(XDMF_INSTALL_EXPORT_NAME ${PV_INSTALL_EXPORT_NAME}) -SET(XDMF_WRAP_PYTHON_INSTALL_DIR ${PV_INSTALL_LIB_DIR}/site-packages/Xdmf) +IF(PARAVIEW_BUILD_Xdmf) + SET(XDMF_INSTALL_LIB_DIR ${PV_INSTALL_LIB_DIR}) + SET(XDMF_INSTALL_BIN_DIR ${PV_INSTALL_BIN_DIR}) + SET(XDMF_INSTALL_INCLUDE_DIR "${PV_INSTALL_INCLUDE_DIR}/Xdmf") + SET(XDMF_INSTALL_INCLUDE_VTK_DIR "${PV_INSTALL_INCLUDE_DIR}/Xdmf") + SET(XDMF_INSTALL_EXPORT_NAME ${PV_INSTALL_EXPORT_NAME}) + SET(XDMF_WRAP_PYTHON_INSTALL_DIR ${PV_INSTALL_LIB_DIR}/site-packages/Xdmf) +ENDIF(PARAVIEW_BUILD_Xdmf) ######################################################################### # The client server wrapper macro needs this name for @@ -482,33 +484,33 @@ ENDIF(PARAVIEW_ENABLE_PYTHON AND PARAVIEW_USE_MPI) ######################################################################### # Configure Xdmf +IF(PARAVIEW_BUILD_Xdmf) + SET(XDMF_INSTALL_NO_DEVELOPMENT ${PV_INSTALL_NO_DEVELOPMENT}) + SET(XDMF_INSTALL_NO_RUNTIME ${PV_INSTALL_NO_RUNTIME}) + SET(XDMF_INSTALL_LIB_DIR ${PV_INSTALL_LIB_DIR}) + SET(XDMF_REGENERATE_YACCLEX OFF CACHE INTERNAL "" FORCE) + SET(XDMF_REGENERATE_WRAPPERS OFF CACHE INTERNAL "" FORCE) + # Xdmf needs packaging fixes for this to be enabled. + SET(XDMF_WRAP_PYTHON OFF CACHE INTERNAL "" FORCE) + MARK_AS_ADVANCED(FORCE XDMF_WRAP_PYTHON XDMF_WRAP_CSHARP) + MARK_AS_ADVANCED(XDMF_REGENERATE_WRAPPERS XDMF_REGENERATE_YACCLEX) + + SET(XDMF_WRAP_TCL OFF CACHE INTERNAL "" FORCE) + SET(XDMF_KITS_DIR "${ParaView_BINARY_DIR}/Utilities/Xdmf2/vtk/Utilities") + SET(XDMF_INCLUDE_DIRS + "${ParaView_SOURCE_DIR}/Utilities/Xdmf2/vtk" + "${ParaView_BINARY_DIR}/Utilities/Xdmf2/vtk") + SET(PARAVIEW_LINK_XDMF ON) -SET(XDMF_INSTALL_NO_DEVELOPMENT ${PV_INSTALL_NO_DEVELOPMENT}) -SET(XDMF_INSTALL_NO_RUNTIME ${PV_INSTALL_NO_RUNTIME}) -SET(XDMF_INSTALL_LIB_DIR ${PV_INSTALL_LIB_DIR}) -SET(XDMF_REGENERATE_YACCLEX OFF CACHE INTERNAL "" FORCE) -SET(XDMF_REGENERATE_WRAPPERS OFF CACHE INTERNAL "" FORCE) -# Xdmf needs packaging fixes for this to be enabled. -SET(XDMF_WRAP_PYTHON OFF CACHE INTERNAL "" FORCE) -MARK_AS_ADVANCED(FORCE XDMF_WRAP_PYTHON XDMF_WRAP_CSHARP) -MARK_AS_ADVANCED(XDMF_REGENERATE_WRAPPERS XDMF_REGENERATE_YACCLEX) - -SET(XDMF_WRAP_TCL OFF CACHE INTERNAL "" FORCE) -SET(XDMF_KITS_DIR "${ParaView_BINARY_DIR}/Utilities/Xdmf2/vtk/Utilities") -SET(XDMF_INCLUDE_DIRS - "${ParaView_SOURCE_DIR}/Utilities/Xdmf2/vtk" - "${ParaView_BINARY_DIR}/Utilities/Xdmf2/vtk") -SET(PARAVIEW_LINK_XDMF ON) - -IF (NOT PV_INSTALL_NO_LIBRARIES) - SET_PROPERTY(GLOBAL APPEND PROPERTY VTK_TARGETS Xdmf) -ENDIF (NOT PV_INSTALL_NO_LIBRARIES) -IF(XDMF_WRAP_PYTHON) - SET_PROPERTY(GLOBAL APPEND PROPERTY VTK_TARGETS _Xdmf) -Endif() - -ADD_SUBDIRECTORY(Utilities/Xdmf2) + IF (NOT PV_INSTALL_NO_LIBRARIES) + SET_PROPERTY(GLOBAL APPEND PROPERTY VTK_TARGETS Xdmf) + ENDIF (NOT PV_INSTALL_NO_LIBRARIES) + IF(XDMF_WRAP_PYTHON) + SET_PROPERTY(GLOBAL APPEND PROPERTY VTK_TARGETS _Xdmf) + Endif() + ADD_SUBDIRECTORY(Utilities/Xdmf2) +ENDIF(PARAVIEW_BUILD_Xdmf) ######################################################################### # Configure protobuf SET (PROTOBUF_INSTALL_BIN_DIR ${PV_INSTALL_BIN_DIR}) diff --git a/CMakeLists.txt b/CMakeLists.txt index 111c10d..2505a47 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -113,7 +113,12 @@ MARK_AS_ADVANCED(QT_QTMOTIF_INCLUDE_DIR QT_QTMOTIF_LIBRARY_DEBUG QT_QTMOTIF_LIBR IF (APPLE) MARK_AS_ADVANCED(CMAKE_OSX_ARCHITECTURES CMAKE_OSX_SYSROOT VTK_USE_CARBON VTK_USE_COCOA VTK_APPLE_RESOURCE) ENDIF(APPLE) -MARK_AS_ADVANCED(VTK_USE_MPEG2_ENCODER QT_PLUGINS_DIR QT_MKSPECS_DIR VTK_USE_MFC XDMF_BUILD_UTILS XDMF_USE_BZIP2 XDMF_USE_GZIP QT_QTDESIGNER_INCLUDE_DIR) +MARK_AS_ADVANCED(VTK_USE_MPEG2_ENCODER QT_PLUGINS_DIR QT_MKSPECS_DIR VTK_USE_MFC QT_QTDESIGNER_INCLUDE_DIR) + +# Build with Xdmf Support +SET(PARAVIEW_BUILD_Xdmf ON CACHE BOOL "Build ParaView with Xdmf Support") +MARK_AS_ADVANCED(PARAVIEW_BUILD_Xdmf XDMF_BUILD_UTILS XDMF_USE_BZIP2 +XDMF_USE_GZIP) ######################################################################### # Define a PARAVIEW_USE_MPI that is not advanced diff --git a/ParaViewCore/ServerManager/Testing/Cxx/CMakeLists.txt b/ParaViewCore/ServerManager/Testing/Cxx/CMakeLists.txt index f4706ef..65772b0 100644 --- a/ParaViewCore/ServerManager/Testing/Cxx/CMakeLists.txt +++ b/ParaViewCore/ServerManager/Testing/Cxx/CMakeLists.txt @@ -2,10 +2,12 @@ INCLUDE_DIRECTORIES( ${ParaView_BINARY_DIR} ${VTKCLIENTSERVER_INCLUDE_DIR} ${VTK_INCLUDE_DIR} - ${XDMF_INCLUDE_DIRS} ${CMAKE_CURRENT_BINARY_DIR} ${protobuf_SOURCE_DIR}/src ) +IF(PARAVIEW_BUILD_Xdmf) + INCLUDE_DIRECTORIES(${XDMF_INCLUDE_DIRS}) +ENDIF(PARAVIEW_BUILD_Xdmf) ADD_EXECUTABLE(TestSubProxy TestSubProxy.cxx) diff --git a/ParaViewCore/ServerManager/vtkInitializationHelper.cxx b/ParaViewCore/ServerManager/vtkInitializationHelper.cxx index e47b3da..f1843e1 100644 --- a/ParaViewCore/ServerManager/vtkInitializationHelper.cxx +++ b/ParaViewCore/ServerManager/vtkInitializationHelper.cxx @@ -72,7 +72,10 @@ extern "C" void vtkPVVTKExtensionsCS_Initialize(vtkClientServerInterpreter*); extern "C" void vtkPVClientServerCoreCS_Initialize(vtkClientServerInterpreter*); extern "C" void vtkPVServerImplementationCS_Initialize(vtkClientServerInterpreter*); extern "C" void vtkPVServerManager_Initialize(vtkClientServerInterpreter*); + +#ifdef PARAVIEW_BUILD_Xdmf extern "C" void vtkXdmfCS_Initialize(vtkClientServerInterpreter *); +#endif #ifdef PARAVIEW_USE_VISITBRIDGE extern "C" void vtkVisItAVTAlgorithmsCS_Initialize(vtkClientServerInterpreter *); @@ -215,7 +218,10 @@ void vtkInitializationHelperInit(vtkClientServerInterpreter* interp) vtkPVClientServerCoreCS_Initialize(interp); vtkPVServerImplementationCS_Initialize(interp); vtkPVServerManager_Initialize(interp); + +# ifdef PARAVIEW_BUILD_Xdmf vtkXdmfCS_Initialize(interp); +# endif # ifdef PARAVIEW_USE_VISITBRIDGE vtkVisItAVTAlgorithmsCS_Initialize(interp); diff --git a/ParaViewCore/VTKExtensions/CMakeLists.txt b/ParaViewCore/VTKExtensions/CMakeLists.txt index e0a67dc..05dfeab 100644 --- a/ParaViewCore/VTKExtensions/CMakeLists.txt +++ b/ParaViewCore/VTKExtensions/CMakeLists.txt @@ -293,8 +293,10 @@ INCLUDE_DIRECTORIES( ${VTK_INCLUDE_DIR} ${HDF5_INCLUDE_DIR} ${SPCTH_INCLUDE_DIR} - ${XDMF_INCLUDE_DIRS} ) +IF(PARAVIEW_BUILD_Xdmf) + INCLUDE_DIRECTORIES(${XDMF_INCLUDE_DIRS}) +ENDIF(PARAVIEW_BUILD_Xdmf) # The following was copy/paste from vtkIncludeDirectories.cmake # OpenGL include directories. @@ -390,7 +392,6 @@ VTK_ADD_LIBRARY(vtk${KIT} TARGET_LINK_LIBRARIES(vtk${KIT} vtkPVCommon vtkPVCommonCS - vtkXdmfCS vtkHybridCS vtkParallelCS vtkVolumeRenderingCS @@ -407,6 +408,10 @@ TARGET_LINK_LIBRARIES(vtk${KIT} ${OPENGL_gl_LIBRARY} ${PARAVIEW_ADDITIONAL_LIBRARIES} ) +IF(PARAVIEW_BUILD_Xdmf) + TARGET_LINK_LIBRARIES(vtk${KIT} vtkXdmfCS) +ENDIF(PARAVIEW_BUILD_Xdmf) + IF (VTK_USE_QVTK) TARGET_LINK_LIBRARIES(vtk${KIT} QVTK) ENDIF (VTK_USE_QVTK) diff --git a/SuperBuild/CMakeLists.txt b/SuperBuild/CMakeLists.txt index a89993e..bd4d1b0 100644 --- a/SuperBuild/CMakeLists.txt +++ b/SuperBuild/CMakeLists.txt @@ -326,6 +326,11 @@ set(VRPN_ARGS -DVRPN_LIBRARY:FILE_PATH=${VRPN_LIBRARY} -DVRPN_INCLUDE_DIR:PATH=${VRPN_INCLUDE_DIR}) +# Build Xdmf +if(PARAVIEW_BUILD_Xdmf) + set(XDMF_ARGS -DPARAVIEW_BUILD_Xdmf:BOOL=ON) +endif(PARAVIEW_BUILD_Xdmf) + if(WIN32) list(APPEND PARAVIEW_FIXUP_BUNDLE_SEARCH_PATHS ${VRPN_install}/lib) else() @@ -411,6 +416,8 @@ ExternalProject_Add(${proj} ${VISTRAILS_ARGS} # VRPN Plugin ${VRPN_ARGS} + # Xdmf + ${XDMF_ARGS} # zlib ${ZLIB_ARGS} # Documentation diff --git a/Utilities/Doxygen/CMakeLists.txt b/Utilities/Doxygen/CMakeLists.txt index 9d5df72..9a97648 100644 --- a/Utilities/Doxygen/CMakeLists.txt +++ b/Utilities/Doxygen/CMakeLists.txt @@ -18,8 +18,7 @@ IF (BUILD_DOCUMENTATION) SET(DOXYGEN_CVSWEB_CHECKOUT_SUFFIX "?cvsroot=ParaView3") SET(DOXYGEN_SOURCE_LOCATIONS_DIR "${ParaView_SOURCE_DIR}") SET(DOXYGEN_SOURCE_LOCATIONS - "\"${ParaView_SOURCE_DIR}/Utilities/Xdmf2/vtk\" \\ - \"${ParaView_SOURCE_DIR}/Utilities/VTKPythonWrapping/Executable\" \\ + "\"${ParaView_SOURCE_DIR}/Utilities/VTKPythonWrapping/Executable\" \\ \"${ParaView_SOURCE_DIR}/Utilities/VTKClientServer\" \\ \"${ParaView_SOURCE_DIR}/Qt/Core\" \\ \"${ParaView_SOURCE_DIR}/Common/KWCommon\" \\ @@ -28,12 +27,16 @@ IF (BUILD_DOCUMENTATION) \"${ParaView_SOURCE_DIR}/ParaViewCore/ServerImplementation\" \\ \"${ParaView_SOURCE_DIR}/ParaViewCore/ServerManager\" \\ \"${ParaView_SOURCE_DIR}/ParaViewCore/VTKExtensions\"") + IF(PARAVIEW_BUILD_Xdmf) + SET(DOXYGEN_SOURCE_LOCATIONS + "\"${ParaView_SOURCE_DIR}/Utilities/Xdmf2/vtk\" \\ + ${DOXYGEN_SOURCE_LOCATIONS}") + ENDIF(PARAVIEW_BUILD_Xdmf) SET(DOXYGEN_BINARY_LOCATIONS_DIR "${ParaView_BINARY_DIR}") SET(DOXYGEN_BINARY_LOCATIONS "") SET(DOXYGEN_PARSED_INPUT_DIRS - " \"${CMAKE_CURRENT_BINARY_DIR}/dox/Utilities/Xdmf2/vtk\" \\ - \"${CMAKE_CURRENT_BINARY_DIR}/dox/Utilities/VTKPythonWrapping/Executable\" \\ + " \"${CMAKE_CURRENT_BINARY_DIR}/dox/Utilities/VTKPythonWrapping/Executable\" \\ \"${CMAKE_CURRENT_BINARY_DIR}/dox/Qt/Core\" \\ \"${ParaView_SOURCE_DIR}/Qt/Core\" \\ \"${ParaView_SOURCE_DIR}/Qt/Components\" \\ @@ -49,6 +52,11 @@ IF (BUILD_DOCUMENTATION) \"${CMAKE_CURRENT_BINARY_DIR}/dox/ParaViewCore/ServerImplementation\" \\ \"${CMAKE_CURRENT_BINARY_DIR}/dox/ParaViewCore/ServerManager\" \\ \"${CMAKE_CURRENT_BINARY_DIR}/dox/ParaViewCore/VTKExtensions\"") + IF(PARAVIEW_BUILD_Xdmf) + SET(DOXYGEN_PARSED_INPUT_DIRS + " \"${CMAKE_CURRENT_BINARY_DIR}/dox/Utilities/Xdmf2/vtk\" \\ + "${DOXYGEN_PARSED_INPUT_DIRS}") + ENDIF(PARAVIEW_BUILD_Xdmf) SET(DOXYGEN_IGNORE_PREFIX "vtkPV vtkSM vtk pq vtkCP") diff --git a/Utilities/VTKClientServer/CMakeLists.txt b/Utilities/VTKClientServer/CMakeLists.txt index 729dcff..19d123c 100644 --- a/Utilities/VTKClientServer/CMakeLists.txt +++ b/Utilities/VTKClientServer/CMakeLists.txt @@ -117,7 +117,9 @@ ADD_SUBDIRECTORY(Widgets) # Build vtkClientServer wrappers for Xdmf if it is available. IF(PARAVIEW_SOURCE_DIR OR ParaView_SOURCE_DIR) - ADD_SUBDIRECTORY(Xdmf2) + IF(PARAVIEW_BUILD_Xdmf) + ADD_SUBDIRECTORY(Xdmf2) + ENDIF(PARAVIEW_BUILD_Xdmf) ENDIF(PARAVIEW_SOURCE_DIR OR ParaView_SOURCE_DIR) # Build vtkClientServer wrappers for Infovis if it is enabled -- 1.6.5.2 ![]() <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>Mobile Network Modeling - 0001-Added-support-to-build-ParaView-without-Xdmf-support.patch - Software Institutes</title> <meta name="description" content="Redmine" /> <meta name="keywords" content="issue,bug,tracker" /> <link href="/hsai/stylesheets/application.css?1266505879" media="all" rel="stylesheet" type="text/css" /> <script src="/hsai/javascripts/prototype.js?1266505879" type="text/javascript"></script> <script src="/hsai/javascripts/effects.js?1266505879" type="text/javascript"></script> <script src="/hsai/javascripts/dragdrop.js?1266505879" type="text/javascript"></script> <script src="/hsai/javascripts/controls.js?1266505879" type="text/javascript"></script> <script src="/hsai/javascripts/application.js?1266505879" type="text/javascript"></script> <link href="/hsai/stylesheets/jstoolbar.css?1266505879" media="screen" rel="stylesheet" type="text/css" /> <!--[if IE]> <style type="text/css"> * html body{ width: expression( document.documentElement.clientWidth < 900 ? '900px' : '100%' ); } body {behavior: url(/hsai/stylesheets/csshover.htc?1266505879);} </style> <![endif]--> <!-- page specific tags --> <link href="/hsai/stylesheets/scm.css?1266505879" media="screen" rel="stylesheet" type="text/css" /></head> <body> <div id="wrapper"> <div id="top-menu"> <div id="account"> <ul><li><a href="/hsai/my/account" class="my-account">My account</a></li> <li><a href="/hsai/logout" class="logout">Sign out</a></li></ul> </div> <div id="loggedas">Logged in as <a href="/hsai/users/105">brian.c.panneton</a></div> <ul><li><a href="/hsai/" class="home">Home</a></li> <li><a href="/hsai/my/page" class="my-page">My page</a></li> <li><a href="/hsai/projects" class="projects">Projects</a></li> <li><a href="http://www.redmine.org/guide" class="help">Help</a></li></ul></div> <div id="header"> <div id="quick-search"> <form action="/hsai/search/index/mnmi" method="get"> <a href="/hsai/search/index/mnmi" accesskey="4">Search</a>: <input accesskey="f" class="small" id="q" name="q" size="20" type="text" /> </form> <select onchange="if (this.value != '') { window.location = this.value; }"><option value=''>Jump to a project...</option><option value="" disabled="disabled">---</option><option selected="selected" value="/hsai/projects/mnmi?jump=attachments">Mobile Network Modeling</option><option value="/hsai/projects/phpc?jump=attachments">ProjectHPC</option><option value="/hsai/projects/xdmf?jump=attachments">XDMF</option></select> </div> <h1>Mobile Network Modeling</h1> <div id="main-menu"> <ul><li><a href="/hsai/projects/mnmi" class="overview">Overview</a></li> <li><a href="/hsai/projects/mnmi/activity" class="activity">Activity</a></li> <li><a href="/hsai/projects/mnmi/roadmap" class="roadmap">Roadmap</a></li> <li><a href="/hsai/projects/mnmi/issues" class="issues">Issues</a></li> <li><a href="/hsai/projects/mnmi/issues/new" accesskey="7" class="new-issue">New issue</a></li> <li><a href="/hsai/projects/mnmi/news" class="news">News</a></li> <li><a href="/hsai/projects/mnmi/documents" class="documents">Documents</a></li> <li><a href="/hsai/projects/mnmi/wiki" class="wiki">Wiki</a></li> <li><a href="/hsai/projects/mnmi/boards" class="boards">Forums</a></li> <li><a href="/hsai/projects/mnmi/files" class="files">Files</a></li> <li><a href="/hsai/projects/mnmi/repository" class="repository">Repository</a></li> <li><a href="/hsai/embedded/mnmi" class="embedded">DOxygen</a></li> <li><a href="/hsai/ical/index/mnmi" class="Calendar">Calendar</a></li> <li><a href="/hsai/projects/mnmi/settings" class="settings">Settings</a></li></ul> </div> </div> <div class="nosidebar" id="main"> <div id="sidebar"> </div> <div id="content"> <h2>0001-Added-support-to-build-ParaView-without-Xdmf-support.patch</h2> <div class="attachments"> <p> <span class="author">brian.c.panneton, 11/04/2011 11:20 am</span></p> <p><a href="/hsai/attachments/download/739/0001-Added-support-to-build-ParaView-without-Xdmf-support.patch">Download</a> <span class="size">(14.9 KB)</span></p> </div> <div class="autoscroll"> <table class="filecontent CodeRay"> <thead> <tr><th colspan="3" class="filename">b/Applications/ParaView/Testing/XML/CMakeLists.txt</th></tr> </thead> <tbody> <tr> <th class="line-num">102</th> <th class="line-num">102</th> <td class="line-code "> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/VariableSelector.xml</pre> </td> </tr> <tr> <th class="line-num">103</th> <th class="line-num">103</th> <td class="line-code "> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/VariableSelector1.xml</pre> </td> </tr> <tr> <th class="line-num">104</th> <th class="line-num">104</th> <td class="line-code "> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/ViewSettingsDialog.xml</pre> </td> </tr> <tr> <th class="line-num">105</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfRead.xml</pre> </td> </tr> <tr> <th class="line-num">106</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadImageData.xml</pre> </td> </tr> <tr> <th class="line-num">107</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadImageDataCollection.xml</pre> </td> </tr> <tr> <th class="line-num">108</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadRectilinearGrid.xml</pre> </td> </tr> <tr> <th class="line-num">109</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadRectilinearGridCollection.xml</pre> </td> </tr> <tr> <th class="line-num">110</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadStructuredGrid.xml</pre> </td> </tr> <tr> <th class="line-num">111</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadStructuredGridCollection.xml</pre> </td> </tr> <tr> <th class="line-num">112</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfGridAttributes.xml</pre> </td> </tr> <tr> <th class="line-num">113</th> <th class="line-num">105</th> <td class="line-code "> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XYChart.xml</pre> </td> </tr> <tr> <th class="line-num">114</th> <th class="line-num">106</th> <td class="line-code "> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XYHistogram.xml</pre> </td> </tr> <tr> <th class="line-num">115</th> <th class="line-num">107</th> <td class="line-code "> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/ZLibXDMF.xml</pre> </td> </tr> <tr> <th class="line-num">116</th> <th class="line-num">108</th> <td class="line-code "> <pre> # ${CMAKE_CURRENT_SOURCE_DIR}/XYBarChart.xml</pre> </td> </tr> <tr> <th class="line-num">117</th> <th class="line-num">109</th> <td class="line-code "> <pre>)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">110</th> <td class="line-code diff_in"> <pre> IF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">111</th> <td class="line-code diff_in"> <pre> SET(TEST_WITH_BASELINES</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">112</th> <td class="line-code diff_in"> <pre> ${TEST_WITH_BASELINES}</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">113</th> <td class="line-code diff_in"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfRead.xml</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">114</th> <td class="line-code diff_in"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadImageData.xml</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">115</th> <td class="line-code diff_in"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadImageDataCollection.xml</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">116</th> <td class="line-code diff_in"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadRectilinearGrid.xml</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">117</th> <td class="line-code diff_in"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadRectilinearGridCollection.xml</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">118</th> <td class="line-code diff_in"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadStructuredGrid.xml</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">119</th> <td class="line-code diff_in"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadStructuredGridCollection.xml</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">120</th> <td class="line-code diff_in"> <pre> ${CMAKE_CURRENT_SOURCE_DIR}/XdmfGridAttributes.xml</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">121</th> <td class="line-code diff_in"> <pre> )</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">122</th> <td class="line-code diff_in"> <pre> ENDIF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num">118</th> <th class="line-num">123</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">119</th> <th class="line-num">124</th> <td class="line-code "> <pre># Mark tests that change change state considerably requires a restart of the</pre> </td> </tr> <tr> <th class="line-num">120</th> <th class="line-num">125</th> <td class="line-code "> <pre># test suite when grouping tests together for faster playback.</pre> </td> </tr> <tr> <th class="line-num">121</th> <th class="line-num">126</th> <td class="line-code "> <pre>SET (GlobalProperties_BREAK TRUE)</pre> </td> </tr> <tr> <th class="line-num">122</th> <th class="line-num">127</th> <td class="line-code "> <pre> # <-- since this changes global colors.</pre> </td> </tr> <tr> <th class="line-num">123</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET (XdmfReadImageData_BREAK TRUE)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">128</th> <td class="line-code diff_in"> <pre>IF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">129</th> <td class="line-code diff_in"> <pre> SET (XdmfReadImageData_BREAK TRUE)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">130</th> <td class="line-code diff_in"> <pre>ENDIF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num">124</th> <th class="line-num">131</th> <td class="line-code "> <pre> # <-- since this changes light kit.</pre> </td> </tr> <tr> <th class="line-num">125</th> <th class="line-num">132</th> <td class="line-code "> <pre>SET (UndoRedo3_BREAK TRUE)</pre> </td> </tr> <tr> <th class="line-num">126</th> <th class="line-num">133</th> <td class="line-code "> <pre>SET (UndoRedo6_BREAK TRUE)</pre> </td> </tr> <tr class="spacing"> <th class="line-num">...</th><th class="line-num">...</th><td></td> </tr> <tr> <th class="line-num">192</th> <th class="line-num">199</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">193</th> <th class="line-num">200</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">194</th> <th class="line-num">201</th> <td class="line-code "> <pre># These Xdmf tests have wireframes, hence the increased thresholds.</pre> </td> </tr> <tr> <th class="line-num">195</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET (XdmfReadImageData_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num">196</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET (XdmfReadRectilinearGrid_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num">197</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET (XdmfReadRectilinearGridCollection_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num">198</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET (XdmfReadStructuredGrid_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num">199</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET (XdmfReadStructuredGridCollection_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num">200</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET (XdmfReadImageDataCollection_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">202</th> <td class="line-code diff_in"> <pre>IF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">203</th> <td class="line-code diff_in"> <pre> SET (XdmfReadImageData_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">204</th> <td class="line-code diff_in"> <pre> SET (XdmfReadRectilinearGrid_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">205</th> <td class="line-code diff_in"> <pre> SET (XdmfReadRectilinearGridCollection_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">206</th> <td class="line-code diff_in"> <pre> SET (XdmfReadStructuredGrid_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">207</th> <td class="line-code diff_in"> <pre> SET (XdmfReadStructuredGridCollection_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">208</th> <td class="line-code diff_in"> <pre> SET (XdmfReadImageDataCollection_THRESHOLD 20)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">209</th> <td class="line-code diff_in"> <pre>ENDIF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num">201</th> <th class="line-num">210</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">202</th> <th class="line-num">211</th> <td class="line-code "> <pre># This test renders points and they are offsetted a bit differently on</pre> </td> </tr> <tr> <th class="line-num">203</th> <th class="line-num">212</th> <td class="line-code "> <pre># different platforms so just increase the threshold</pre> </td> </tr> </tbody> </table> </div> <div class="autoscroll"> <table class="filecontent CodeRay"> <thead> <tr><th colspan="3" class="filename">b/CMake/ParaViewCommon.cmake</th></tr> </thead> <tbody> <tr> <th class="line-num">220</th> <th class="line-num">220</th> <td class="line-code "> <pre>SET(KWCommon_INSTALL_NO_DOCUMENTATION 1)</pre> </td> </tr> <tr> <th class="line-num">221</th> <th class="line-num">221</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">222</th> <th class="line-num">222</th> <td class="line-code "> <pre># XDMF config</pre> </td> </tr> <tr> <th class="line-num">223</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_INSTALL_LIB_DIR ${PV_INSTALL_LIB_DIR})</pre> </td> </tr> <tr> <th class="line-num">224</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_INSTALL_BIN_DIR ${PV_INSTALL_BIN_DIR})</pre> </td> </tr> <tr> <th class="line-num">225</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_INSTALL_INCLUDE_DIR "${PV_INSTALL_INCLUDE_DIR}/Xdmf")</pre> </td> </tr> <tr> <th class="line-num">226</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_INSTALL_INCLUDE_VTK_DIR "${PV_INSTALL_INCLUDE_DIR}/Xdmf")</pre> </td> </tr> <tr> <th class="line-num">227</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_INSTALL_EXPORT_NAME ${PV_INSTALL_EXPORT_NAME})</pre> </td> </tr> <tr> <th class="line-num">228</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_WRAP_PYTHON_INSTALL_DIR ${PV_INSTALL_LIB_DIR}/site-packages/Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">223</th> <td class="line-code diff_in"> <pre>IF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">224</th> <td class="line-code diff_in"> <pre> SET(XDMF_INSTALL_LIB_DIR ${PV_INSTALL_LIB_DIR})</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">225</th> <td class="line-code diff_in"> <pre> SET(XDMF_INSTALL_BIN_DIR ${PV_INSTALL_BIN_DIR})</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">226</th> <td class="line-code diff_in"> <pre> SET(XDMF_INSTALL_INCLUDE_DIR "${PV_INSTALL_INCLUDE_DIR}/Xdmf")</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">227</th> <td class="line-code diff_in"> <pre> SET(XDMF_INSTALL_INCLUDE_VTK_DIR "${PV_INSTALL_INCLUDE_DIR}/Xdmf")</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">228</th> <td class="line-code diff_in"> <pre> SET(XDMF_INSTALL_EXPORT_NAME ${PV_INSTALL_EXPORT_NAME})</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">229</th> <td class="line-code diff_in"> <pre> SET(XDMF_WRAP_PYTHON_INSTALL_DIR ${PV_INSTALL_LIB_DIR}/site-packages/Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">230</th> <td class="line-code diff_in"> <pre>ENDIF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num">229</th> <th class="line-num">231</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">230</th> <th class="line-num">232</th> <td class="line-code "> <pre>#########################################################################</pre> </td> </tr> <tr> <th class="line-num">231</th> <th class="line-num">233</th> <td class="line-code "> <pre># The client server wrapper macro needs this name for</pre> </td> </tr> <tr class="spacing"> <th class="line-num">...</th><th class="line-num">...</th><td></td> </tr> <tr> <th class="line-num">493</th> <th class="line-num">495</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">494</th> <th class="line-num">496</th> <td class="line-code "> <pre>#########################################################################</pre> </td> </tr> <tr> <th class="line-num">495</th> <th class="line-num">497</th> <td class="line-code "> <pre># Configure Xdmf</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">498</th> <td class="line-code diff_in"> <pre>IF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">499</th> <td class="line-code diff_in"> <pre> SET(XDMF_INSTALL_NO_DEVELOPMENT ${PV_INSTALL_NO_DEVELOPMENT})</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">500</th> <td class="line-code diff_in"> <pre> SET(XDMF_INSTALL_NO_RUNTIME ${PV_INSTALL_NO_RUNTIME})</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">501</th> <td class="line-code diff_in"> <pre> SET(XDMF_INSTALL_LIB_DIR ${PV_INSTALL_LIB_DIR})</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">502</th> <td class="line-code diff_in"> <pre> SET(XDMF_REGENERATE_YACCLEX OFF CACHE INTERNAL "" FORCE)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">503</th> <td class="line-code diff_in"> <pre> SET(XDMF_REGENERATE_WRAPPERS OFF CACHE INTERNAL "" FORCE)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">504</th> <td class="line-code diff_in"> <pre> # Xdmf needs packaging fixes for this to be enabled.</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">505</th> <td class="line-code diff_in"> <pre> SET(XDMF_WRAP_PYTHON OFF CACHE INTERNAL "" FORCE)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">506</th> <td class="line-code diff_in"> <pre> MARK_AS_ADVANCED(FORCE XDMF_WRAP_PYTHON XDMF_WRAP_CSHARP)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">507</th> <td class="line-code diff_in"> <pre> MARK_AS_ADVANCED(XDMF_REGENERATE_WRAPPERS XDMF_REGENERATE_YACCLEX)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">508</th> <td class="line-code diff_in"> <pre></pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">509</th> <td class="line-code diff_in"> <pre> SET(XDMF_WRAP_TCL OFF CACHE INTERNAL "" FORCE)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">510</th> <td class="line-code diff_in"> <pre> SET(XDMF_KITS_DIR "${ParaView_BINARY_DIR}/Utilities/Xdmf2/vtk/Utilities")</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">511</th> <td class="line-code diff_in"> <pre> SET(XDMF_INCLUDE_DIRS</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">512</th> <td class="line-code diff_in"> <pre> "${ParaView_SOURCE_DIR}/Utilities/Xdmf2/vtk"</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">513</th> <td class="line-code diff_in"> <pre> "${ParaView_BINARY_DIR}/Utilities/Xdmf2/vtk")</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">514</th> <td class="line-code diff_in"> <pre> SET(PARAVIEW_LINK_XDMF ON)</pre> </td> </tr> <tr> <th class="line-num">496</th> <th class="line-num">515</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">497</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_INSTALL_NO_DEVELOPMENT ${PV_INSTALL_NO_DEVELOPMENT})</pre> </td> </tr> <tr> <th class="line-num">498</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_INSTALL_NO_RUNTIME ${PV_INSTALL_NO_RUNTIME})</pre> </td> </tr> <tr> <th class="line-num">499</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_INSTALL_LIB_DIR ${PV_INSTALL_LIB_DIR})</pre> </td> </tr> <tr> <th class="line-num">500</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_REGENERATE_YACCLEX OFF CACHE INTERNAL "" FORCE)</pre> </td> </tr> <tr> <th class="line-num">501</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_REGENERATE_WRAPPERS OFF CACHE INTERNAL "" FORCE)</pre> </td> </tr> <tr> <th class="line-num">502</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre># Xdmf needs packaging fixes for this to be enabled.</pre> </td> </tr> <tr> <th class="line-num">503</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_WRAP_PYTHON OFF CACHE INTERNAL "" FORCE)</pre> </td> </tr> <tr> <th class="line-num">504</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>MARK_AS_ADVANCED(FORCE XDMF_WRAP_PYTHON XDMF_WRAP_CSHARP)</pre> </td> </tr> <tr> <th class="line-num">505</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>MARK_AS_ADVANCED(XDMF_REGENERATE_WRAPPERS XDMF_REGENERATE_YACCLEX)</pre> </td> </tr> <tr> <th class="line-num">506</th> <th class="line-num"></th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">507</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_WRAP_TCL OFF CACHE INTERNAL "" FORCE)</pre> </td> </tr> <tr> <th class="line-num">508</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_KITS_DIR "${ParaView_BINARY_DIR}/Utilities/Xdmf2/vtk/Utilities")</pre> </td> </tr> <tr> <th class="line-num">509</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(XDMF_INCLUDE_DIRS</pre> </td> </tr> <tr> <th class="line-num">510</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> "${ParaView_SOURCE_DIR}/Utilities/Xdmf2/vtk"</pre> </td> </tr> <tr> <th class="line-num">511</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> "${ParaView_BINARY_DIR}/Utilities/Xdmf2/vtk")</pre> </td> </tr> <tr> <th class="line-num">512</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>SET(PARAVIEW_LINK_XDMF ON)</pre> </td> </tr> <tr> <th class="line-num">513</th> <th class="line-num"></th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">514</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>IF (NOT PV_INSTALL_NO_LIBRARIES)</pre> </td> </tr> <tr> <th class="line-num">515</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> SET_PROPERTY(GLOBAL APPEND PROPERTY VTK_TARGETS Xdmf)</pre> </td> </tr> <tr> <th class="line-num">516</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>ENDIF (NOT PV_INSTALL_NO_LIBRARIES)</pre> </td> </tr> <tr> <th class="line-num">517</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>IF(XDMF_WRAP_PYTHON)</pre> </td> </tr> <tr> <th class="line-num">518</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> SET_PROPERTY(GLOBAL APPEND PROPERTY VTK_TARGETS _Xdmf)</pre> </td> </tr> <tr> <th class="line-num">519</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>Endif()</pre> </td> </tr> <tr> <th class="line-num">520</th> <th class="line-num"></th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">521</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>ADD_SUBDIRECTORY(Utilities/Xdmf2)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">516</th> <td class="line-code diff_in"> <pre> IF (NOT PV_INSTALL_NO_LIBRARIES)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">517</th> <td class="line-code diff_in"> <pre> SET_PROPERTY(GLOBAL APPEND PROPERTY VTK_TARGETS Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">518</th> <td class="line-code diff_in"> <pre> ENDIF (NOT PV_INSTALL_NO_LIBRARIES)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">519</th> <td class="line-code diff_in"> <pre> IF(XDMF_WRAP_PYTHON)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">520</th> <td class="line-code diff_in"> <pre> SET_PROPERTY(GLOBAL APPEND PROPERTY VTK_TARGETS _Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">521</th> <td class="line-code diff_in"> <pre> Endif()</pre> </td> </tr> <tr> <th class="line-num">522</th> <th class="line-num">522</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">523</th> <td class="line-code diff_in"> <pre> ADD_SUBDIRECTORY(Utilities/Xdmf2)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">524</th> <td class="line-code diff_in"> <pre>ENDIF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num">523</th> <th class="line-num">525</th> <td class="line-code "> <pre>#########################################################################</pre> </td> </tr> <tr> <th class="line-num">524</th> <th class="line-num">526</th> <td class="line-code "> <pre># Configure protobuf</pre> </td> </tr> <tr> <th class="line-num">525</th> <th class="line-num">527</th> <td class="line-code "> <pre>SET (PROTOBUF_INSTALL_BIN_DIR ${PV_INSTALL_BIN_DIR})</pre> </td> </tr> </tbody> </table> </div> <div class="autoscroll"> <table class="filecontent CodeRay"> <thead> <tr><th colspan="3" class="filename">b/CMakeLists.txt</th></tr> </thead> <tbody> <tr> <th class="line-num">124</th> <th class="line-num">124</th> <td class="line-code "> <pre>IF (APPLE)</pre> </td> </tr> <tr> <th class="line-num">125</th> <th class="line-num">125</th> <td class="line-code "> <pre> MARK_AS_ADVANCED(CMAKE_OSX_ARCHITECTURES CMAKE_OSX_SYSROOT VTK_USE_CARBON VTK_USE_COCOA VTK_APPLE_RESOURCE)</pre> </td> </tr> <tr> <th class="line-num">126</th> <th class="line-num">126</th> <td class="line-code "> <pre>ENDIF(APPLE)</pre> </td> </tr> <tr> <th class="line-num">127</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>MARK_AS_ADVANCED(VTK_USE_MPEG2_ENCODER QT_PLUGINS_DIR QT_MKSPECS_DIR VTK_USE_MFC XDMF_BUILD_UTILS XDMF_USE_BZIP2 XDMF_USE_GZIP QT_QTDESIGNER_INCLUDE_DIR)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">127</th> <td class="line-code diff_in"> <pre>MARK_AS_ADVANCED(VTK_USE_MPEG2_ENCODER QT_PLUGINS_DIR QT_MKSPECS_DIR VTK_USE_MFC QT_QTDESIGNER_INCLUDE_DIR)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">128</th> <td class="line-code diff_in"> <pre></pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">129</th> <td class="line-code diff_in"> <pre># Build with Xdmf Support</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">130</th> <td class="line-code diff_in"> <pre>SET(PARAVIEW_BUILD_Xdmf ON CACHE BOOL "Build ParaView with Xdmf Support")</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">131</th> <td class="line-code diff_in"> <pre>MARK_AS_ADVANCED(PARAVIEW_BUILD_Xdmf XDMF_BUILD_UTILS XDMF_USE_BZIP2</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">132</th> <td class="line-code diff_in"> <pre>XDMF_USE_GZIP)</pre> </td> </tr> <tr> <th class="line-num">128</th> <th class="line-num">133</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">129</th> <th class="line-num">134</th> <td class="line-code "> <pre>#########################################################################</pre> </td> </tr> <tr> <th class="line-num">130</th> <th class="line-num">135</th> <td class="line-code "> <pre># Define a PARAVIEW_USE_MPI that is not advanced</pre> </td> </tr> </tbody> </table> </div> <div class="autoscroll"> <table class="filecontent CodeRay"> <thead> <tr><th colspan="3" class="filename">b/ParaViewCore/ServerManager/Testing/Cxx/CMakeLists.txt</th></tr> </thead> <tbody> <tr> <th class="line-num">2</th> <th class="line-num">2</th> <td class="line-code "> <pre> ${ParaView_BINARY_DIR}</pre> </td> </tr> <tr> <th class="line-num">3</th> <th class="line-num">3</th> <td class="line-code "> <pre> ${VTKCLIENTSERVER_INCLUDE_DIR}</pre> </td> </tr> <tr> <th class="line-num">4</th> <th class="line-num">4</th> <td class="line-code "> <pre> ${VTK_INCLUDE_DIR}</pre> </td> </tr> <tr> <th class="line-num">5</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> ${XDMF_INCLUDE_DIRS}</pre> </td> </tr> <tr> <th class="line-num">6</th> <th class="line-num">5</th> <td class="line-code "> <pre> ${CMAKE_CURRENT_BINARY_DIR}</pre> </td> </tr> <tr> <th class="line-num">7</th> <th class="line-num">6</th> <td class="line-code "> <pre> ${protobuf_SOURCE_DIR}/src</pre> </td> </tr> <tr> <th class="line-num">8</th> <th class="line-num">7</th> <td class="line-code "> <pre> )</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">8</th> <td class="line-code diff_in"> <pre>IF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">9</th> <td class="line-code diff_in"> <pre> INCLUDE_DIRECTORIES(${XDMF_INCLUDE_DIRS})</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">10</th> <td class="line-code diff_in"> <pre>ENDIF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num">9</th> <th class="line-num">11</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">10</th> <th class="line-num">12</th> <td class="line-code "> <pre>ADD_EXECUTABLE(TestSubProxy</pre> </td> </tr> <tr> <th class="line-num">11</th> <th class="line-num">13</th> <td class="line-code "> <pre> TestSubProxy.cxx)</pre> </td> </tr> </tbody> </table> </div> <div class="autoscroll"> <table class="filecontent CodeRay"> <thead> <tr><th colspan="3" class="filename">b/ParaViewCore/ServerManager/vtkInitializationHelper.cxx</th></tr> </thead> <tbody> <tr> <th class="line-num">72</th> <th class="line-num">72</th> <td class="line-code "> <pre>extern "C" void vtkPVClientServerCoreCS_Initialize(vtkClientServerInterpreter*);</pre> </td> </tr> <tr> <th class="line-num">73</th> <th class="line-num">73</th> <td class="line-code "> <pre>extern "C" void vtkPVServerImplementationCS_Initialize(vtkClientServerInterpreter*);</pre> </td> </tr> <tr> <th class="line-num">74</th> <th class="line-num">74</th> <td class="line-code "> <pre>extern "C" void vtkPVServerManager_Initialize(vtkClientServerInterpreter*);</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">75</th> <td class="line-code diff_in"> <pre></pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">76</th> <td class="line-code diff_in"> <pre>#ifdef PARAVIEW_BUILD_Xdmf</pre> </td> </tr> <tr> <th class="line-num">75</th> <th class="line-num">77</th> <td class="line-code "> <pre>extern "C" void vtkXdmfCS_Initialize(vtkClientServerInterpreter *);</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">78</th> <td class="line-code diff_in"> <pre>#endif</pre> </td> </tr> <tr> <th class="line-num">76</th> <th class="line-num">79</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">77</th> <th class="line-num">80</th> <td class="line-code "> <pre>#ifdef PARAVIEW_USE_VISITBRIDGE</pre> </td> </tr> <tr> <th class="line-num">78</th> <th class="line-num">81</th> <td class="line-code "> <pre>extern "C" void vtkVisItAVTAlgorithmsCS_Initialize(vtkClientServerInterpreter *);</pre> </td> </tr> <tr class="spacing"> <th class="line-num">...</th><th class="line-num">...</th><td></td> </tr> <tr> <th class="line-num">211</th> <th class="line-num">214</th> <td class="line-code "> <pre> vtkPVClientServerCoreCS_Initialize(interp);</pre> </td> </tr> <tr> <th class="line-num">212</th> <th class="line-num">215</th> <td class="line-code "> <pre> vtkPVServerImplementationCS_Initialize(interp);</pre> </td> </tr> <tr> <th class="line-num">213</th> <th class="line-num">216</th> <td class="line-code "> <pre> vtkPVServerManager_Initialize(interp);</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">217</th> <td class="line-code diff_in"> <pre></pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">218</th> <td class="line-code diff_in"> <pre># ifdef PARAVIEW_BUILD_Xdmf</pre> </td> </tr> <tr> <th class="line-num">214</th> <th class="line-num">219</th> <td class="line-code "> <pre> vtkXdmfCS_Initialize(interp);</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">220</th> <td class="line-code diff_in"> <pre># endif</pre> </td> </tr> <tr> <th class="line-num">215</th> <th class="line-num">221</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">216</th> <th class="line-num">222</th> <td class="line-code "> <pre># ifdef PARAVIEW_USE_VISITBRIDGE</pre> </td> </tr> <tr> <th class="line-num">217</th> <th class="line-num">223</th> <td class="line-code "> <pre> vtkVisItAVTAlgorithmsCS_Initialize(interp);</pre> </td> </tr> </tbody> </table> </div> <div class="autoscroll"> <table class="filecontent CodeRay"> <thead> <tr><th colspan="3" class="filename">b/ParaViewCore/VTKExtensions/CMakeLists.txt</th></tr> </thead> <tbody> <tr> <th class="line-num">295</th> <th class="line-num">295</th> <td class="line-code "> <pre> ${VTK_INCLUDE_DIR}</pre> </td> </tr> <tr> <th class="line-num">296</th> <th class="line-num">296</th> <td class="line-code "> <pre> ${HDF5_INCLUDE_DIR}</pre> </td> </tr> <tr> <th class="line-num">297</th> <th class="line-num">297</th> <td class="line-code "> <pre> ${SPCTH_INCLUDE_DIR}</pre> </td> </tr> <tr> <th class="line-num">298</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> ${XDMF_INCLUDE_DIRS}</pre> </td> </tr> <tr> <th class="line-num">299</th> <th class="line-num">298</th> <td class="line-code "> <pre> )</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">299</th> <td class="line-code diff_in"> <pre>IF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">300</th> <td class="line-code diff_in"> <pre> INCLUDE_DIRECTORIES(${XDMF_INCLUDE_DIRS})</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">301</th> <td class="line-code diff_in"> <pre>ENDIF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num">300</th> <th class="line-num">302</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">301</th> <th class="line-num">303</th> <td class="line-code "> <pre># The following was copy/paste from vtkIncludeDirectories.cmake</pre> </td> </tr> <tr> <th class="line-num">302</th> <th class="line-num">304</th> <td class="line-code "> <pre># OpenGL include directories.</pre> </td> </tr> <tr class="spacing"> <th class="line-num">...</th><th class="line-num">...</th><td></td> </tr> <tr> <th class="line-num">392</th> <th class="line-num">394</th> <td class="line-code "> <pre>TARGET_LINK_LIBRARIES(vtk${KIT}</pre> </td> </tr> <tr> <th class="line-num">393</th> <th class="line-num">395</th> <td class="line-code "> <pre> vtkPVCommon</pre> </td> </tr> <tr> <th class="line-num">394</th> <th class="line-num">396</th> <td class="line-code "> <pre> vtkPVCommonCS</pre> </td> </tr> <tr> <th class="line-num">395</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> vtkXdmfCS</pre> </td> </tr> <tr> <th class="line-num">396</th> <th class="line-num">397</th> <td class="line-code "> <pre> vtkHybridCS</pre> </td> </tr> <tr> <th class="line-num">397</th> <th class="line-num">398</th> <td class="line-code "> <pre> vtkParallelCS</pre> </td> </tr> <tr> <th class="line-num">398</th> <th class="line-num">399</th> <td class="line-code "> <pre> vtkVolumeRenderingCS</pre> </td> </tr> <tr class="spacing"> <th class="line-num">...</th><th class="line-num">...</th><td></td> </tr> <tr> <th class="line-num">409</th> <th class="line-num">410</th> <td class="line-code "> <pre> ${OPENGL_gl_LIBRARY}</pre> </td> </tr> <tr> <th class="line-num">410</th> <th class="line-num">411</th> <td class="line-code "> <pre> ${PARAVIEW_ADDITIONAL_LIBRARIES}</pre> </td> </tr> <tr> <th class="line-num">411</th> <th class="line-num">412</th> <td class="line-code "> <pre>)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">413</th> <td class="line-code diff_in"> <pre>IF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">414</th> <td class="line-code diff_in"> <pre> TARGET_LINK_LIBRARIES(vtk${KIT} vtkXdmfCS)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">415</th> <td class="line-code diff_in"> <pre>ENDIF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">416</th> <td class="line-code diff_in"> <pre></pre> </td> </tr> <tr> <th class="line-num">412</th> <th class="line-num">417</th> <td class="line-code "> <pre>IF (VTK_USE_QVTK)</pre> </td> </tr> <tr> <th class="line-num">413</th> <th class="line-num">418</th> <td class="line-code "> <pre> TARGET_LINK_LIBRARIES(vtk${KIT} QVTK)</pre> </td> </tr> <tr> <th class="line-num">414</th> <th class="line-num">419</th> <td class="line-code "> <pre>ENDIF (VTK_USE_QVTK)</pre> </td> </tr> </tbody> </table> </div> <div class="autoscroll"> <table class="filecontent CodeRay"> <thead> <tr><th colspan="3" class="filename">b/SuperBuild/CMakeLists.txt</th></tr> </thead> <tbody> <tr> <th class="line-num">389</th> <th class="line-num">389</th> <td class="line-code "> <pre> endif()</pre> </td> </tr> <tr> <th class="line-num">390</th> <th class="line-num">390</th> <td class="line-code "> <pre>endif()</pre> </td> </tr> <tr> <th class="line-num">391</th> <th class="line-num">391</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">392</th> <td class="line-code diff_in"> <pre># Build Xdmf</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">393</th> <td class="line-code diff_in"> <pre>if(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">394</th> <td class="line-code diff_in"> <pre> set(XDMF_ARGS -DPARAVIEW_BUILD_Xdmf:BOOL=ON)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">395</th> <td class="line-code diff_in"> <pre>endif(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">396</th> <td class="line-code diff_in"> <pre></pre> </td> </tr> <tr> <th class="line-num">392</th> <th class="line-num">397</th> <td class="line-code "> <pre>if(WIN32)</pre> </td> </tr> <tr> <th class="line-num">393</th> <th class="line-num">398</th> <td class="line-code "> <pre> list(APPEND PARAVIEW_FIXUP_BUNDLE_SEARCH_PATHS ${VRPN_install}/lib)</pre> </td> </tr> <tr> <th class="line-num">394</th> <th class="line-num">399</th> <td class="line-code "> <pre>else()</pre> </td> </tr> <tr class="spacing"> <th class="line-num">...</th><th class="line-num">...</th><td></td> </tr> <tr> <th class="line-num">522</th> <th class="line-num">527</th> <td class="line-code "> <pre> ${VisTrails_ARGS}</pre> </td> </tr> <tr> <th class="line-num">523</th> <th class="line-num">528</th> <td class="line-code "> <pre> # VRPN Plugin</pre> </td> </tr> <tr> <th class="line-num">524</th> <th class="line-num">529</th> <td class="line-code "> <pre> ${VRPN_ARGS}</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">530</th> <td class="line-code diff_in"> <pre> # Xdmf</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">531</th> <td class="line-code diff_in"> <pre> ${XDMF_ARGS}</pre> </td> </tr> <tr> <th class="line-num">525</th> <th class="line-num">532</th> <td class="line-code "> <pre> # zlib</pre> </td> </tr> <tr> <th class="line-num">526</th> <th class="line-num">533</th> <td class="line-code "> <pre> ${ZLIB_ARGS}</pre> </td> </tr> <tr> <th class="line-num">527</th> <th class="line-num">534</th> <td class="line-code "> <pre> -DPARAVIEW_BUILD_PLUGIN_CoProcessingScriptGenerator:BOOL=ON</pre> </td> </tr> </tbody> </table> </div> <div class="autoscroll"> <table class="filecontent CodeRay"> <thead> <tr><th colspan="3" class="filename">b/Utilities/Doxygen/CMakeLists.txt</th></tr> </thead> <tbody> <tr> <th class="line-num">18</th> <th class="line-num">18</th> <td class="line-code "> <pre> SET(DOXYGEN_CVSWEB_CHECKOUT_SUFFIX "?cvsroot=ParaView3")</pre> </td> </tr> <tr> <th class="line-num">19</th> <th class="line-num">19</th> <td class="line-code "> <pre> SET(DOXYGEN_SOURCE_LOCATIONS_DIR "${ParaView_SOURCE_DIR}")</pre> </td> </tr> <tr> <th class="line-num">20</th> <th class="line-num">20</th> <td class="line-code "> <pre> SET(DOXYGEN_SOURCE_LOCATIONS</pre> </td> </tr> <tr> <th class="line-num">21</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> "\"${ParaView_SOURCE_DIR}/Utilities/Xdmf2/vtk\" \\</pre> </td> </tr> <tr> <th class="line-num">22</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> \"${ParaView_SOURCE_DIR}/Utilities/VTKPythonWrapping/Executable\" \\</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">21</th> <td class="line-code diff_in"> <pre> "\"${ParaView_SOURCE_DIR}/Utilities/VTKPythonWrapping/Executable\" \\</pre> </td> </tr> <tr> <th class="line-num">23</th> <th class="line-num">22</th> <td class="line-code "> <pre> \"${ParaView_SOURCE_DIR}/Utilities/VTKClientServer\" \\</pre> </td> </tr> <tr> <th class="line-num">24</th> <th class="line-num">23</th> <td class="line-code "> <pre> \"${ParaView_SOURCE_DIR}/Qt/Core\" \\</pre> </td> </tr> <tr> <th class="line-num">25</th> <th class="line-num">24</th> <td class="line-code "> <pre> \"${ParaView_SOURCE_DIR}/Common/KWCommon\" \\</pre> </td> </tr> <tr class="spacing"> <th class="line-num">...</th><th class="line-num">...</th><td></td> </tr> <tr> <th class="line-num">28</th> <th class="line-num">27</th> <td class="line-code "> <pre> \"${ParaView_SOURCE_DIR}/ParaViewCore/ServerImplementation\" \\</pre> </td> </tr> <tr> <th class="line-num">29</th> <th class="line-num">28</th> <td class="line-code "> <pre> \"${ParaView_SOURCE_DIR}/ParaViewCore/ServerManager\" \\</pre> </td> </tr> <tr> <th class="line-num">30</th> <th class="line-num">29</th> <td class="line-code "> <pre> \"${ParaView_SOURCE_DIR}/ParaViewCore/VTKExtensions\"")</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">30</th> <td class="line-code diff_in"> <pre> IF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">31</th> <td class="line-code diff_in"> <pre> SET(DOXYGEN_SOURCE_LOCATIONS</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">32</th> <td class="line-code diff_in"> <pre> "\"${ParaView_SOURCE_DIR}/Utilities/Xdmf2/vtk\" \\</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">33</th> <td class="line-code diff_in"> <pre> ${DOXYGEN_SOURCE_LOCATIONS}")</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">34</th> <td class="line-code diff_in"> <pre> ENDIF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num">31</th> <th class="line-num">35</th> <td class="line-code "> <pre> SET(DOXYGEN_BINARY_LOCATIONS_DIR "${ParaView_BINARY_DIR}")</pre> </td> </tr> <tr> <th class="line-num">32</th> <th class="line-num">36</th> <td class="line-code "> <pre> SET(DOXYGEN_BINARY_LOCATIONS</pre> </td> </tr> <tr> <th class="line-num">33</th> <th class="line-num">37</th> <td class="line-code "> <pre> "")</pre> </td> </tr> <tr> <th class="line-num">34</th> <th class="line-num">38</th> <td class="line-code "> <pre> SET(DOXYGEN_PARSED_INPUT_DIRS</pre> </td> </tr> <tr> <th class="line-num">35</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> " \"${CMAKE_CURRENT_BINARY_DIR}/dox/Utilities/Xdmf2/vtk\" \\</pre> </td> </tr> <tr> <th class="line-num">36</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> \"${CMAKE_CURRENT_BINARY_DIR}/dox/Utilities/VTKPythonWrapping/Executable\" \\</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">39</th> <td class="line-code diff_in"> <pre> " \"${CMAKE_CURRENT_BINARY_DIR}/dox/Utilities/VTKPythonWrapping/Executable\" \\</pre> </td> </tr> <tr> <th class="line-num">37</th> <th class="line-num">40</th> <td class="line-code "> <pre> \"${CMAKE_CURRENT_BINARY_DIR}/dox/Qt/Core\" \\</pre> </td> </tr> <tr> <th class="line-num">38</th> <th class="line-num">41</th> <td class="line-code "> <pre> \"${ParaView_SOURCE_DIR}/Qt/Core\" \\</pre> </td> </tr> <tr> <th class="line-num">39</th> <th class="line-num">42</th> <td class="line-code "> <pre> \"${ParaView_SOURCE_DIR}/Qt/Components\" \\</pre> </td> </tr> <tr class="spacing"> <th class="line-num">...</th><th class="line-num">...</th><td></td> </tr> <tr> <th class="line-num">49</th> <th class="line-num">52</th> <td class="line-code "> <pre> \"${CMAKE_CURRENT_BINARY_DIR}/dox/ParaViewCore/ServerImplementation\" \\</pre> </td> </tr> <tr> <th class="line-num">50</th> <th class="line-num">53</th> <td class="line-code "> <pre> \"${CMAKE_CURRENT_BINARY_DIR}/dox/ParaViewCore/ServerManager\" \\</pre> </td> </tr> <tr> <th class="line-num">51</th> <th class="line-num">54</th> <td class="line-code "> <pre> \"${CMAKE_CURRENT_BINARY_DIR}/dox/ParaViewCore/VTKExtensions\"")</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">55</th> <td class="line-code diff_in"> <pre> IF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">56</th> <td class="line-code diff_in"> <pre> SET(DOXYGEN_PARSED_INPUT_DIRS</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">57</th> <td class="line-code diff_in"> <pre> " \"${CMAKE_CURRENT_BINARY_DIR}/dox/Utilities/Xdmf2/vtk\" \\</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">58</th> <td class="line-code diff_in"> <pre> "${DOXYGEN_PARSED_INPUT_DIRS}")</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">59</th> <td class="line-code diff_in"> <pre> ENDIF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num">52</th> <th class="line-num">60</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">53</th> <th class="line-num">61</th> <td class="line-code "> <pre> SET(DOXYGEN_IGNORE_PREFIX "vtkPV vtkSM vtk pq vtkCP")</pre> </td> </tr> <tr> <th class="line-num">54</th> <th class="line-num">62</th> <td class="line-code "> <pre></pre> </td> </tr> </tbody> </table> </div> <div class="autoscroll"> <table class="filecontent CodeRay"> <thead> <tr><th colspan="3" class="filename">b/Utilities/VTKClientServer/CMakeLists.txt</th></tr> </thead> <tbody> <tr> <th class="line-num">117</th> <th class="line-num">117</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">118</th> <th class="line-num">118</th> <td class="line-code "> <pre># Build vtkClientServer wrappers for Xdmf if it is available.</pre> </td> </tr> <tr> <th class="line-num">119</th> <th class="line-num">119</th> <td class="line-code "> <pre>IF(PARAVIEW_SOURCE_DIR OR ParaView_SOURCE_DIR)</pre> </td> </tr> <tr> <th class="line-num">120</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre> ADD_SUBDIRECTORY(Xdmf2)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">120</th> <td class="line-code diff_in"> <pre> IF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">121</th> <td class="line-code diff_in"> <pre> ADD_SUBDIRECTORY(Xdmf2)</pre> </td> </tr> <tr> <th class="line-num"></th> <th class="line-num">122</th> <td class="line-code diff_in"> <pre> ENDIF(PARAVIEW_BUILD_Xdmf)</pre> </td> </tr> <tr> <th class="line-num">121</th> <th class="line-num">123</th> <td class="line-code "> <pre>ENDIF(PARAVIEW_SOURCE_DIR OR ParaView_SOURCE_DIR)</pre> </td> </tr> <tr> <th class="line-num">122</th> <th class="line-num">124</th> <td class="line-code "> <pre></pre> </td> </tr> <tr> <th class="line-num">123</th> <th class="line-num">125</th> <td class="line-code "> <pre># Build vtkClientServer wrappers for Infovis if it is enabled</pre> </td> </tr> <tr> <th class="line-num">124</th> <th class="line-num"></th> <td class="line-code diff_out"> <pre>- </pre> </td> </tr> </tbody> </table> </div> <div style="clear:both;"></div> </div> </div> <div id="ajax-indicator" style="display:none;"><span>Loading...</span></div> <div id="footer"> <blockquote> You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only. By using this IS (which includes any device attached to this IS), you consent to the following conditions: <br> The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations. <br> At any time, the USG may inspect and seize data stored on this IS. <br> Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose. <br> This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy. <br> Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communication and work product are private and confidential. </blockquote> </div> </div> </body> </html> | ||||||||
Relationships | |
Relationships |
Notes | |
(0027032) Brian Panneton (reporter) 2011-07-20 13:32 |
I created a patch to disable the Xdmf with an option PARAVIEW_BUILD_Xdmf. It defaults to ON, so ParaView should build the same unless you change the option to OFF. |
(0027038) David Partyka (developer) 2011-07-21 13:17 |
Thanks Brian, when this bubbles up to the top of my queue I will take a look at your patches! |
(0027658) Brian Panneton (reporter) 2011-11-04 14:47 |
I updated the patch to work with the git repo as of 4 Nov 2011. |
(0037934) Kitware Robot (administrator) 2016-08-12 09:58 |
Resolving issue as `moved`. This issue tracker is no longer used. Further discussion of this issue may take place in the current ParaView Issues page linked in the banner at the top of this page. |
Notes |
Issue History | |||
Date Modified | Username | Field | Change |
2011-03-09 11:37 | David Partyka | New Issue | |
2011-03-09 11:37 | David Partyka | Status | backlog => tabled |
2011-03-09 11:37 | David Partyka | Assigned To | => David Partyka |
2011-03-16 12:17 | David Partyka | Target Version | 3.10.1 => 3.10 |
2011-06-16 13:10 | Zack Galbreath | Category | Feature Request => Feature |
2011-07-20 13:31 | Brian Panneton | File Added: 0001-Added-support-to-build-ParaView-without-Xdmf-support.patch | |
2011-07-20 13:32 | Brian Panneton | Note Added: 0027032 | |
2011-07-21 13:17 | David Partyka | Note Added: 0027038 | |
2011-11-04 14:46 | Brian Panneton | File Added: 0001-Added-support-to-build-ParaView-without-Xdmf-support-update.patch | |
2011-11-04 14:47 | Brian Panneton | Note Added: 0027658 | |
2016-08-12 09:58 | Kitware Robot | Note Added: 0037934 | |
2016-08-12 09:58 | Kitware Robot | Status | backlog => closed |
2016-08-12 09:58 | Kitware Robot | Resolution | open => moved |
Issue History |
Copyright © 2000 - 2018 MantisBT Team |