diff --git a/Plugins/org.mitk.gui.qt.chartExample/CMakeLists.txt b/Plugins/org.mitk.gui.qt.chartExample/CMakeLists.txt index 0dca18627d..99ed16a323 100644 --- a/Plugins/org.mitk.gui.qt.chartExample/CMakeLists.txt +++ b/Plugins/org.mitk.gui.qt.chartExample/CMakeLists.txt @@ -1,7 +1,7 @@ project(org_mitk_gui_qt_chartExample) mitk_create_plugin( EXPORT_DIRECTIVE CHARTEXAMPLE_EXPORT EXPORTED_INCLUDE_SUFFIXES src - MODULE_DEPENDS MitkQtWidgetsExt MitkChart + MODULE_DEPENDS MitkChart ) diff --git a/Plugins/org.mitk.gui.qt.chartExample/files.cmake b/Plugins/org.mitk.gui.qt.chartExample/files.cmake index b097c50982..e992f3f792 100644 --- a/Plugins/org.mitk.gui.qt.chartExample/files.cmake +++ b/Plugins/org.mitk.gui.qt.chartExample/files.cmake @@ -1,42 +1,30 @@ -set(SRC_CPP_FILES - -) - set(INTERNAL_CPP_FILES org_mitk_gui_qt_chartExample_Activator.cpp ChartExample.cpp ) set(UI_FILES src/internal/ChartExampleControls.ui ) set(MOC_H_FILES src/internal/org_mitk_gui_qt_chartExample_Activator.h src/internal/ChartExample.h ) # list of resource files which can be used by the plug-in # system without loading the plug-ins shared library, # for example the icon used in the menu and tabs for the # plug-in views in the workbench set(CACHED_RESOURCE_FILES resources/chart.svg plugin.xml ) -# list of Qt .qrc files which contain additional resources -# specific to this plugin -set(QRC_FILES - -) - -set(CPP_FILES ) - foreach(file ${SRC_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/${file}) endforeach(file ${SRC_CPP_FILES}) foreach(file ${INTERNAL_CPP_FILES}) set(CPP_FILES ${CPP_FILES} src/internal/${file}) endforeach(file ${INTERNAL_CPP_FILES})