View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0006480ParaView(No Category)public2008-02-29 11:562010-11-16 18:32
ReporterMike Jackson 
Assigned ToDavid Partyka 
PrioritynormalSeverityblockReproducibilityalways
StatusclosedResolutionno change required 
PlatformWindows XPOSWindows XPOS VersionSP2
Product Version 
Target VersionSomedayFixed in Version3.8 
Summary0006480: Install Target does not work on Windows XP (VS 2003.net or VS2005)
DescriptionRunning the "Install" target from within visual studio results in a error due to the path not being correct. Somewhere the variable ${QT_BINARY_DIR} has been converted to a windows native path with messes up the generated cmake script.

The following code should be used instead starting at line 552 of ParaView3/Applications/Client/CMakeLists.txt

IF(WIN32)
  GET_FILENAME_COMPONENT( QT_ASSISTANT_PATH QT_QMAKE_EXECUTABLE} PATH)
  SET(QT_ASSISTANT_PATH "${QT_ASSISTANT_PATH}/assistant.exe")
  INSTALL(FILES "${QT_ASSISTANT_PATH}"
    DESTINATION ${PV_EXE_INSTALL_CM24}
    PERMISSIONS OWNER_WRITE OWNER_READ OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ
    COMPONENT Runtime)
Steps To ReproduceRun the "install" project from within Visual Studio
TagsNo tags attached.
Project
Topic Name
Type
Attached Files

 Relationships

  Notes
(0010670)
Mike Jackson (reporter)
2008-02-29 12:09

There was a typo in the last report. This is the corrected cmake code

IF(WIN32)
  GET_FILENAME_COMPONENT( QT_ASSISTANT_PATH ${QT_QMAKE_EXECUTABLE} PATH)
  SET(QT_ASSISTANT_PATH "${QT_ASSISTANT_PATH}/assistant.exe")
  INSTALL(FILES "${QT_ASSISTANT_PATH}"
    DESTINATION ${PV_EXE_INSTALL_CM24}
    PERMISSIONS OWNER_WRITE OWNER_READ OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ
    COMPONENT Runtime)
(0023288)
David Partyka (developer)
2010-11-16 10:17

We no longer use assistant for documentation so this should be a none issue.

 Issue History
Date Modified Username Field Change
2008-02-29 11:56 Mike Jackson New Issue
2008-02-29 12:09 Mike Jackson Note Added: 0010670
2008-04-15 12:46 Berk Geveci Status backlog => @30@
2008-04-15 12:46 Berk Geveci Category Development => Someday
2009-05-13 13:49 Utkarsh Ayachit Target Version => Someday
2010-11-16 10:16 David Partyka Assigned To => David Partyka
2010-11-16 10:16 David Partyka Status @30@ => tabled
2010-11-16 10:17 David Partyka Note Added: 0023288
2010-11-16 10:17 David Partyka Status tabled => @80@
2010-11-16 10:17 David Partyka Fixed in Version => 3.8
2010-11-16 10:17 David Partyka Resolution open => no change required
2010-11-16 18:32 Alan Scott Status @80@ => closed
2011-06-16 13:10 Zack Galbreath Category => (No Category)


Copyright © 2000 - 2018 MantisBT Team