MantisBT - ParaView
View Issue Details
0013065ParaView(No Category)public2012-04-07 16:532012-10-29 17:04
Utkarsh Ayachit 
Utkarsh Ayachit 
normalminorhave not tried
closedfixed 
3.14.1 
3.98.0 
Sandia
13065_fix_development_install_rule
incorrect functionality
0013065: Development install not installing all cmake files
Development install not installing all cmake files. Missing files are:


cp generate_proxydocumentation.cmake /install-path/lib/paraview-3.14/CMake
cp smxml_to_xml.xsl /install-path/lib/paraview-3.14/CMake
cp xml_to_html.xsl /install-path/lib/paraview-3.14/CMake
cp xml_to_wiki.xsl.in /install-path/lib/paraview-3.14/CMake
cp generate_qhp.cmake /install-path/lib/paraview-3.14/CMake
No tags attached.
Issue History
2012-04-07 16:53Utkarsh AyachitNew Issue
2012-04-09 10:27Utkarsh AyachitTopic Name => 13065_fix_development_install_rule
2012-04-09 10:27Utkarsh AyachitNote Added: 0028436
2012-04-09 10:27Utkarsh AyachitStatusbacklog => gatekeeper review
2012-04-09 10:27Utkarsh AyachitFixed in Version => git-next
2012-04-09 10:27Utkarsh AyachitResolutionopen => fixed
2012-04-09 10:27Utkarsh AyachitAssigned To => Utkarsh Ayachit
2012-04-20 13:50Utkarsh AyachitFixed in Versiongit-next => git-master
2012-04-20 13:51Utkarsh AyachitStatusgatekeeper review => customer review
2012-04-20 13:51Utkarsh AyachitNote Added: 0028496
2012-04-21 00:16Martin BeaudoinNote Added: 0028508
2012-04-21 00:58Utkarsh AyachitStatuscustomer review => backlog
2012-04-21 00:58Utkarsh AyachitResolutionfixed => reopened
2012-04-21 09:02Martin BeaudoinNote Added: 0028509
2012-05-16 15:48Utkarsh AyachitNote Added: 0028612
2012-05-16 15:48Utkarsh AyachitStatusbacklog => gatekeeper review
2012-05-16 15:48Utkarsh AyachitFixed in Versiongit-master => git-next
2012-05-16 15:48Utkarsh AyachitResolutionreopened => fixed
2012-05-18 14:46Utkarsh AyachitFixed in Versiongit-next => git-master
2012-05-18 14:49Utkarsh AyachitStatusgatekeeper review => customer review
2012-07-17 21:13Alan ScottNote Added: 0028791
2012-07-17 21:13Alan ScottStatuscustomer review => closed
2012-10-29 17:04Utkarsh AyachitFixed in Versiongit-master => 3.98.0

Notes
(0028436)
Utkarsh Ayachit   
2012-04-09 10:27   
commit 801dbb6b2a1ddbb059e2311f83dc6723edaf18d8
Author: Utkarsh Ayachit <utkarsh.ayachit@kitware.com>
Date: Mon Apr 9 10:24:26 2012 -0400

    BUG 0013065. CMake files were not being installed correctly.
    
    Fixed install rule to install all files under the CMake directory to ensure that
    new files don't get missed in the future.
(0028496)
Utkarsh Ayachit   
2012-04-20 13:51   
merged into master, where applicable.
(0028508)
Martin Beaudoin   
2012-04-21 00:16   
The following file is now absent from the installation location, and it is necessary, at least for a plugin for a package called OpenFOAM.

${ParaView_SOURCE_DIR}/ParaViewUse.cmake
(0028509)
Martin Beaudoin   
2012-04-21 09:02   
This little patch did the trick for me.


diff a/CMakeLists.txt b/CMakeLists.txt
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -403,6 +403,12 @@
       DESTINATION ${PV_INSTALL_CMAKE_DIR}
       COMPONENT Development)
       
+ # install ParaViewUse.cmake
+ INSTALL(
+ FILES ${ParaView_SOURCE_DIR}/ParaViewUse.cmake
+ DESTINATION ${PV_INSTALL_CMAKE_DIR}
+ COMPONENT Development)
+
   # Re-configure for the install.
   SET(SOURCE_TREE ${ParaView_SOURCE_DIR})
   SET(BUILD_TREE ${ParaView_BINARY_DIR})
(0028612)
Utkarsh Ayachit   
2012-05-16 15:48   
commit c2cac7f3e8a6b794d3d12504d3856db5371a14c3
Author: Utkarsh Ayachit <utkarsh.ayachit@kitware.com>
Date: Wed May 16 15:46:27 2012 -0400

    BUG 13065. Fixed install rules for development install for missing file.
(0028791)
Alan Scott   
2012-07-17 21:13   
Tested on Master.