View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0015655ParaView(No Category)public2015-08-15 17:222016-08-12 09:59
ReporterBruno Santos 
Assigned ToKitware Robot 
PrioritynormalSeverityminorReproducibilityhave not tried
StatusclosedResolutionmoved 
PlatformOSOS Version
Product Version4.3 
Target VersionFixed in Version 
Summary0015655: "ui_pqExportStateWizard.h" is always included with development install when it also depends on Python
DescriptionThe file "Qt/Components/CMakeLists.txt" has this block of code:

    if(PARAVIEW_INSTALL_DEVELOPMENT_FILES)
      install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ui_pqExportStateWizard.h"
              DESTINATION "${VTK_INSTALL_INCLUDE_DIR}")
    endif()

And it should be this:

    if(PARAVIEW_INSTALL_DEVELOPMENT_FILES AND PARAVIEW_ENABLE_PYTHON)
      install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ui_pqExportStateWizard.h"
              DESTINATION "${VTK_INSTALL_INCLUDE_DIR}")
    endif()


This is because of the block of code several lines above:

    if(PARAVIEW_ENABLE_PYTHON)
      ...
      LIST(APPEND Module_UI_FILES
        Resources/UI/pqImageOutputInfo.ui
        Resources/UI/pqExportStateWizard.ui
        )
    endif()


This was spotted with the building script makeParaView4 that is used in OpenFOAM: https://github.com/OpenFOAM/ThirdParty-dev/#buiding-paraview-431 [^]
TagsNo tags attached.
ProjectTBD
Topic Name
Typeincorrect functionality
Attached Files

 Relationships

  Notes
(0035213)
Louis Gagnon (reporter)
2015-09-14 08:43

I experienced the same issue and the fix proposed by Bruno Santos works for me.
(0038867)
Kitware Robot (administrator)
2016-08-12 09:59

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.

 Issue History
Date Modified Username Field Change
2015-08-15 17:22 Bruno Santos New Issue
2015-09-14 08:43 Louis Gagnon Note Added: 0035213
2016-08-12 09:59 Kitware Robot Note Added: 0038867
2016-08-12 09:59 Kitware Robot Status backlog => closed
2016-08-12 09:59 Kitware Robot Resolution open => moved
2016-08-12 09:59 Kitware Robot Assigned To => Kitware Robot


Copyright © 2000 - 2018 MantisBT Team