diff --git a/Example/Addition/CMakeLists.txt b/Example/Addition/CMakeLists.txt index d9d6949a0492b3459fc2474059f47395abc5d81e..947c7083fefa7893cf7cdcba314ed3ab1e9d3f99 100644 --- a/Example/Addition/CMakeLists.txt +++ b/Example/Addition/CMakeLists.txt @@ -4,10 +4,3 @@ SET( SRCS ADD_LIBRARY(OTBWrapperAddition otbAddition.cxx) TARGET_LINK_LIBRARIES(OTBWrapperAddition OTBWrapperCore) - -ADD_EXECUTABLE(otbWrapperAdditionExample-qt otbAdditionQt.cxx) -TARGET_LINK_LIBRARIES(otbWrapperAdditionExample-qt - OTBWrapperAddition - OTBWrapperQtWidget - OTBWrapperCore - ${QT_LIBRARIES}) diff --git a/Example/Addition/otbAdditionQt.cxx b/Example/Addition/otbAdditionQt.cxx deleted file mode 100644 index 3ed9945bdbcaa5f209a58b3e427a41774b246cd1..0000000000000000000000000000000000000000 --- a/Example/Addition/otbAdditionQt.cxx +++ /dev/null @@ -1,33 +0,0 @@ -/*========================================================================= - - Program: ORFEO Toolbox - Language: C++ - Date: $Date$ - Version: $Revision$ - - - Copyright (c) Centre National d'Etudes Spatiales. All rights reserved. - See OTBCopyright.txt for details. - - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - - =========================================================================*/ -#include <QApplication> -#include "otbWrapperQtWidgetView.h" - -#include "otbAddition.h" -typedef otb::Wrapper::Addition ApplicationType; - -typedef otb::Wrapper::QtWidgetView WidgetType; - -int main(int argc, char* argv[]) -{ - QApplication app(argc, argv); - WidgetType* gui = new WidgetType(ApplicationType::New()); - gui->CreateGui(); - gui->show(); - return app.exec(); -} diff --git a/Example/Smoothing/CMakeLists.txt b/Example/Smoothing/CMakeLists.txt index e3bb2157c2b05447269a0d8cf1182dfca1103777..adc89f52a75de947ed72a2f2079acce074ce0d33 100644 --- a/Example/Smoothing/CMakeLists.txt +++ b/Example/Smoothing/CMakeLists.txt @@ -4,10 +4,3 @@ SET( SRCS ADD_LIBRARY(OTBWrapperSmoothing otbSmoothing.cxx) TARGET_LINK_LIBRARIES(OTBWrapperSmoothing OTBWrapperCore) - -ADD_EXECUTABLE(otbWrapperSmoothingExample-qt otbSmoothingQt.cxx) -TARGET_LINK_LIBRARIES(otbWrapperSmoothingExample-qt - OTBWrapperSmoothing - OTBWrapperQtWidget - OTBWrapperCore - ${QT_LIBRARIES}) diff --git a/Example/Smoothing/otbSmoothingQt.cxx b/Example/Smoothing/otbSmoothingQt.cxx deleted file mode 100644 index 313190ff7561f6434c12097a4ddd82e60a1e91d6..0000000000000000000000000000000000000000 --- a/Example/Smoothing/otbSmoothingQt.cxx +++ /dev/null @@ -1,33 +0,0 @@ -/*========================================================================= - - Program: ORFEO Toolbox - Language: C++ - Date: $Date$ - Version: $Revision$ - - - Copyright (c) Centre National d'Etudes Spatiales. All rights reserved. - See OTBCopyright.txt for details. - - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - - =========================================================================*/ -#include <QApplication> -#include "otbWrapperQtWidgetView.h" - -#include "otbSmoothing.h" -typedef otb::Wrapper::Smoothing ApplicationType; - -typedef otb::Wrapper::QtWidgetView WidgetType; - -int main(int argc, char* argv[]) -{ - QApplication app(argc, argv); - WidgetType* gui = new WidgetType(ApplicationType::New()); - gui->CreateGui(); - gui->show(); - return app.exec(); -}