Are there any issues porting mantidplot custom UserSubWindows to workbench?
I have a custom UserSubWindow I am trying to update to the latest source.
/home/dev/work/mantid/Framework/Types/inc/MantidTypes/Core/DateAndTime.h:9:10: fatal error: MantidTypes/DllConfig.h: No such file or directory
Only the file DllConfig.h does exist in ./build/Framework/Types/MantidTypes/
The rest of the Types headers headers are in ./Framework/Types/inc/MantidTypes/
Is there a reason why the ./Framework/Types/inc/MantidTypes/ files are not copied into the ./build/Framework/Types/MantidTypes
Hi Derek,
The Indirect and Muon interfaces currently use UserSubWindow so this should be able to port over to Workbench.
Have you got a working version of this custom interface for Mantidplot?
It might be useful for us to see the set-up you have as it seems cmake isn’t correctly picking up your files.
Do you have your code as a branch on Github that you are able to share??
Ok So this was just a problem with an include dir
include_directories ( ${MANTID_ROOT}/build/Framework/LiveData/MantidLiveData/)
should be
include_directories ( ${MANTID_ROOT}/build/Framework/LiveData/)
Thanks for your assistance. I’ll move onto the next problem that will no doubt soon appear.