MantisBT - ParaView
View Issue Details
0015655ParaView(No Category)public2015-08-15 17:222016-08-12 09:59
Bruno Santos 
Kitware Robot 
normalminorhave not tried
closedmoved 
4.3 
 
TBD
incorrect functionality
0015655: "ui_pqExportStateWizard.h" is always included with development install when it also depends on Python
The 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 [^]
No tags attached.
Issue History
2015-08-15 17:22Bruno SantosNew Issue
2015-09-14 08:43Louis GagnonNote Added: 0035213
2016-08-12 09:59Kitware RobotNote Added: 0038867
2016-08-12 09:59Kitware RobotStatusbacklog => closed
2016-08-12 09:59Kitware RobotResolutionopen => moved
2016-08-12 09:59Kitware RobotAssigned To => Kitware Robot

Notes
(0035213)
Louis Gagnon   
2015-09-14 08:43   
I experienced the same issue and the fix proposed by Bruno Santos works for me.
(0038867)
Kitware Robot   
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.