diff --git a/Code/Mantid/MantidPlot/CMakeLists.txt b/Code/Mantid/MantidPlot/CMakeLists.txt index 7136f47fbf35262afb330750caf340ae5d31b0a1..37b314d16d0c75698fbe132224f9274db775305d 100644 --- a/Code/Mantid/MantidPlot/CMakeLists.txt +++ b/Code/Mantid/MantidPlot/CMakeLists.txt @@ -639,7 +639,7 @@ qt4_wrap_cpp ( MOCCED_FILES ${QTIPLOT_MOC_FILES} ${MANTID_MOC_FILES} ) qt4_wrap_ui ( UI_HDRS ${UI_FILES} ) # The generated ui headers will go here: include_directories ( ${CMAKE_CURRENT_BINARY_DIR} ) - +# Internal icon links qt4_add_resources ( RES_FILES ${PROJECT_SOURCE_DIR}/Images/images.qrc ) ########################################################################### @@ -695,7 +695,9 @@ set ( INC_FILES ${QTIPLOT_HDRS} ${MANTID_HDRS} ) # modes. On VS2010 this requires the WIN32 argument and the additional # linker arguments as we don't use WinMain as an entry point. if( WIN32 ) - set( EXE_FLAG WIN32 ) + set ( EXE_FLAG WIN32 ) + # Also include the icon's rc file so that it is embedded in the exe + set ( MANTID_SRCS "${MANTID_SRCS} icons/MantidPlotDesktop.rc" ) endif( WIN32 ) add_executable ( MantidPlot ${EXE_FLAG} ${SRC_FILES} ${INC_FILES} diff --git a/Code/Mantid/MantidPlot/icons/qtiplot.rc b/Code/Mantid/MantidPlot/icons/MantidPlotDesktop.rc similarity index 100% rename from Code/Mantid/MantidPlot/icons/qtiplot.rc rename to Code/Mantid/MantidPlot/icons/MantidPlotDesktop.rc diff --git a/Code/Mantid/MantidPlot/qtiplot.pro b/Code/Mantid/MantidPlot/qtiplot.pro index 756eeadcb2f247529d10c21a2a11e74c88ffe080..838fa3fddec2058faaeb874327934d7883c44461 100644 --- a/Code/Mantid/MantidPlot/qtiplot.pro +++ b/Code/Mantid/MantidPlot/qtiplot.pro @@ -309,7 +309,7 @@ CONFIG(debug, debug|release) { ###################### ICONS ################################################ -win32:RC_FILE = icons/qtiplot.rc +win32:RC_FILE = icons/MantidPlotDesktop.rc mac:RC_FILE = icons/qtiplot.icns ###################### TRANSLATIONS #########################################