Ticket #7124 (assigned)
Mac: pvplugins path in main properties file is incorrect for development builds
Reported by: | Martyn Gigg | Owned by: | Owen Arnold |
---|---|---|---|
Priority: | major | Milestone: | Release 3.5 |
Component: | Framework | Keywords: | |
Cc: | Blocked By: | ||
Blocking: | Tester: |
Description (last modified by Owen Arnold) (diff)
Running a build on the Mac produces a properties file containing
pvplugins.directory = ./pvplugins
where the path is supposed to be relative the location of the Mantid.properties file. On the Mac this is not correct as pvplugins ends up in MantidPlot.app/pvplugins
For this to work correctly the first that sets the PV_PLUGINS variable needs to be different on the Mac. I suggest something like if ( APPLE )
set ( PV_PLUGINS "./MantidPlot.app/pvplugins" )
else()
set ( PV_PLUGINS "./pvplugins" )
endif()
on line 385 of Kernel/CMakeLists.txt.
Note: Do not touch the other lines related to PV_PLUGINS in the file. They are for the packages and MPI builds.
Change History
comment:2 Changed 7 years ago by Nick Draper
- Milestone changed from Release 2.6 to Backlog
Moved to backlog at the code freeze for R2.6
comment:3 Changed 7 years ago by Nick Draper
- Status changed from new to assigned
Bulk move to assigned at the introduction of the triage step
comment:4 Changed 6 years ago by Owen Arnold
- Description modified (diff)
- Milestone changed from Backlog to Release 3.4