diff --git a/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/CMakeLists.txt b/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/CMakeLists.txt index cc13accd4d3b9891d1eab8a35e3a3639f2cea3cf..7e6589fb2af0ac8404f4b1d33d6ad10a57691769 100644 --- a/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/CMakeLists.txt +++ b/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/CMakeLists.txt @@ -51,6 +51,9 @@ qt4_wrap_ui( UI_BUILT_SOURCES inc/MantidVatesSimpleGuiViewWidgets/TimeControlWidget.ui ) +# Add the QtWidgets icons +qt4_add_resources( RES_FILES icons/ViewWidgetsIcons.qrc ) + # Setup the include locations. include_directories( inc @@ -58,11 +61,18 @@ include_directories( ${CMAKE_CURRENT_BINARY_DIR}/../QtWidgets ) +set( ALL_FILES +${INCLUDE_FILES} +${SOURCE_FILES} +${MOC_SOURCES} +${UI_BUILT_SOURCES} +${RES_FILES} +) + # For Windows add_definitions( -DIN_MANTID_VATES_SIMPLEGUI_VIEWWIDGETS ) # Add the target for this directory -add_library( VatesSimpleGuiViewWidgets ${INCLUDE_FILES} ${SOURCE_FILES} -${MOC_SOURCES} ${UI_BUILT_SOURCES} ) +add_library( VatesSimpleGuiViewWidgets ${ALL_FILES} ) # Set the name of the generated library set_target_properties( VatesSimpleGuiViewWidgets PROPERTIES OUTPUT_NAME MantidVatesSimpleGuiViewWidgets ) # Add to the 'VatesSimpleGui' group in VS diff --git a/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/icons/ViewWidgetsIcons.qrc b/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/icons/ViewWidgetsIcons.qrc new file mode 100644 index 0000000000000000000000000000000000000000..6ab8efa074cf1c7397b0898d41f9511ec03aa22c --- /dev/null +++ b/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/icons/ViewWidgetsIcons.qrc @@ -0,0 +1,6 @@ +<RCC> + <qresource prefix="/VatesSimpleGuiViewWidgets/icons"> + <file>pqResetCenterToData24.png</file> + <file>pqResetCenterToPoint24.png</file> + </qresource> +</RCC> diff --git a/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/icons/pqResetCenterToData24.png b/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/icons/pqResetCenterToData24.png new file mode 100644 index 0000000000000000000000000000000000000000..ba3861a9870987d471afc209abf225768b958772 Binary files /dev/null and b/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/icons/pqResetCenterToData24.png differ diff --git a/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/icons/pqResetCenterToPoint24.png b/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/icons/pqResetCenterToPoint24.png new file mode 100644 index 0000000000000000000000000000000000000000..29826d8cc4d85b68ab1d9461282e1dc297cbc0bb Binary files /dev/null and b/Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/icons/pqResetCenterToPoint24.png differ