Skip to content

Commit

Permalink
Fix MantidPlot path on the Mac
Browse files Browse the repository at this point in the history
Refs #9611
  • Loading branch information
martyngigg authored and peterfpeterson committed Jun 10, 2014
1 parent b85a3dc commit af9c861
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Code/Mantid/docs/CMakeLists.txt
Expand Up @@ -11,7 +11,11 @@ if ( SPHINX_FOUND )
# targets
set ( TARGET_PREFIX docs)
# runner
set ( DOCS_RUNNER_EXE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR}/MantidPlot )
if ( APPLE )
set ( DOCS_RUNNER_EXE ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${BIN_DIR}/MantidPlot )
else ()
set ( DOCS_RUNNER_EXE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR}/MantidPlot )
endif()

# HTML target
set ( BUILDER html )
Expand Down

0 comments on commit af9c861

Please sign in to comment.