Skip to content

Commit

Permalink
Re #6897. Adding images explicitly to cmake.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfpeterson committed May 1, 2013
1 parent 7c070c2 commit be0c7e1
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ LogValue property specifies a log value to be included into the output. If this
The output workspace is a table in which rows correspond to the spectra in the order they (spectra) appear in the Input property. The first column of the table has the log values. It is followed by pairs of columns with parameter values and fitting errors. If a parameter was fixed or tied the error will be zero. Here is an example of the output workspace:
[[File:PlotPeakByLogValue_Output.PNG]]
[[File:PlotPeakByLogValue_Output.png]]
In this example a group of three Matrix workspaces were fitted with a [[Gaussian]] on a linear background.
Expand Down
54 changes: 37 additions & 17 deletions Code/Mantid/docs/qtassistant/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,43 @@ if (QT_QCOLLECTIONGENERATOR_EXECUTABLE)
${HELP_HTML_DIR}/developers.html
)

# copy over images - this just globs things in the images sub-directory
file ( GLOB_RECURSE IMAGES
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/images
"*.png" )
file ( GLOB_RECURSE IMAGES_jpg
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/images
"*.jpg" )
list ( APPEND IMAGES ${IMAGES_jpg})
file ( GLOB_RECURSE IMAGES_gif
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/images
"*.gif" )
list ( APPEND IMAGES ${IMAGES_gif})
file ( GLOB_RECURSE IMAGES_PNG
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/images
"*.PNG" )
list ( APPEND IMAGES ${IMAGES_PNG})
list ( APPEND IMAGES "ImageNotFound.png")
# copy over images
set ( IMAGES
AbsorptionFlow.png
BackToBackExponentialWithConstBackground.png
BinMD_Coordinate_Transforms_withLine.png
Box.png
ChopDataIntegrationExplanation.png
ConvertToEnergyInfoTable.png
Convolution.png
FFTGaussian1FFT.png
FFTGaussian1.png
FFTGaussian2FFT.png
FFTGaussian2.png
Gaussian2Fit.jpg
Gaussian2Fit_Ties.jpg
GaussianFit.jpg
GaussianFit_Ties.jpg
GaussianWithConstBackground.png
GEM_Focused.png
IkedaCarpenterPVwithBackground.png
ImageNotFound.png
InstrumentTree.jpg
IntegrateEllipsoids.png
IntegratePeaksMD_graph1.png
IntegratePeaksMD_graph2.png
LorentzianWithConstBackground.png
Monitorspect_getei.jpg
PeakIntensityVsRadius_fig.png
PlotPeakByLogValue_Output.png
ReadFromFile-Grouping.png
RebinByPulseTime.png
SassenaFFTexample.jpg
SliceViewer-DetectorFace.png
UnwrapSNS_inst.png
UserFunction1D.gif
Wav_Q_bins.png
)
#message ( "QTASSISTANT_IMAGES ${IMAGES}")
copy_python_files_to_dir("${IMAGES}" "${CMAKE_CURRENT_SOURCE_DIR}/images" ${HELP_HTML_IMG_DIR} INSTALL_IMAGES)

Expand Down

0 comments on commit be0c7e1

Please sign in to comment.