diff --git a/Code/Mantid/Installers/MacInstaller/Info.plist.in b/Code/Mantid/Installers/MacInstaller/Info.plist.in new file mode 100644 index 0000000000000000000000000000000000000000..579ec4d08e51851033a5f8432f1918ff0277eafa --- /dev/null +++ b/Code/Mantid/Installers/MacInstaller/Info.plist.in @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>LSEnvironment</key> + <dict> + <key>DYLD_LIBRARY_PATH</key> + <string>@PARAVIEW_APP_LIB_DIR@</string> + </dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>MantidPlot</string> + <key>CFBundleGetInfoString</key> + <string></string> + <key>CFBundleIconFile</key> + <string>MantidPlot.icns</string> + <key>CFBundleIdentifier</key> + <string></string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleLongVersionString</key> + <string></string> + <key>CFBundleName</key> + <string></string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string></string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleVersion</key> + <string></string> + <key>CSResourcesFileMapped</key> + <true/> + <key>LSRequiresCarbon</key> + <true/> + <key>NSHumanReadableCopyright</key> + <string></string> +</dict> +</plist> diff --git a/Code/Mantid/MantidPlot/CMakeLists.txt b/Code/Mantid/MantidPlot/CMakeLists.txt index 6a1857f2a3561626121c4144753ebee81a16ccfc..800eafe89c862644e8737bb1fa5d3253c0db85a8 100644 --- a/Code/Mantid/MantidPlot/CMakeLists.txt +++ b/Code/Mantid/MantidPlot/CMakeLists.txt @@ -787,7 +787,17 @@ target_link_libraries ( MantidPlot ${ZLIB_LIBRARIES} ) +########################################################################### +# Custom Info.plist file for OS X +########################################################################### +if( APPLE ) + configure_file ( ${CMAKE_CURRENT_SOURCE_DIR}/../Installers/MacInstaller/Info.plist + ${CMAKE_CURRENT_BINARY_DIR}/Info.plist + @ONLY ) + set_target_properties( MantidPlot PROPERTIES MACOSX_BUNDLE_INFO_PLIST + ${CMAKE_CURRENT_BINARY_DIR}/Info.plist ) +endif() ########################################################################### # Entry point flag for Windows to ensure we always link to standard main