diff --git a/Packaging/CMakeLists.txt b/Packaging/CMakeLists.txt
deleted file mode 100644
index 69ac578200a70b947272c22910e3f9b8b360f5e6..0000000000000000000000000000000000000000
--- a/Packaging/CMakeLists.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-
-# Resources;Runtime; and Monteverdi are appended to
-# CPACK_COMPONENTS_ALL  in create_cpack_config()
-# SET(CPACK_COMPONENTS_ALL)
-# LIST(APPEND CPACK_COMPONENTS_ALL  Resources)
-# LIST(APPEND CPACK_COMPONENTS_ALL Runtime)
-# LIST(APPEND CPACK_COMPONENTS_ALL ${application})
-# if(WIN32)
-#   SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Monteverdi2")
-#   create_cpack_config(Monteverdi2)
-#   SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Mapla - Monteverdi2 Application Launcher")
-#   create_cpack_config(Mapla)
-# endif()
diff --git a/Packaging/MacOS/BundleFixing.cmake.in b/Packaging/MacOS/BundleFixing.cmake.in
deleted file mode 100644
index 52da0aed289af4dff068fb412eae905c05594480..0000000000000000000000000000000000000000
--- a/Packaging/MacOS/BundleFixing.cmake.in
+++ /dev/null
@@ -1,13 +0,0 @@
-set(APP_LIST @OTB_APPS_NAME_LIST@)
-
-foreach(APP ${APP_LIST})
-  list(APPEND OTB_APPS_LIST_INSTALL ${CMAKE_INSTALL_PREFIX}/lib/otb/applications/${APP})
-endforeach(APP)
-
-include(BundleUtilities)
-set(BU_CHMOD_BUNDLE_ITEMS ON)
-fixup_bundle(
-  "${CMAKE_INSTALL_PREFIX}/bin/@EXE_FILENAME@"
-  "${OTB_APPS_LIST_INSTALL};${CMAKE_INSTALL_PREFIX}/lib/qt4/plugins/sqldrivers/libqsqlite.dylib"
-  "${CMAKE_INSTALL_PREFIX}/lib/otb;${CMAKE_INSTALL_PREFIX}/lib/qt4/plugins/sqldrivers"
-  )
diff --git a/Packaging/MacOS/CMakeLists.txt b/Packaging/MacOS/CMakeLists.txt
deleted file mode 100644
index 744560f022bf052be9d4fbb510426d23e1064796..0000000000000000000000000000000000000000
--- a/Packaging/MacOS/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-  # configure_file(${MACOS_FILES_DIR}/StartupCommand.in
-  #   ${CMAKE_BINARY_DIR}/Packaging/MacOS/${app}-StartupCommand
-	#   @ONLY)
diff --git a/Packaging/MacOS/qt.conf b/Packaging/MacOS/qt.conf
deleted file mode 100644
index af18100eb27892175319049fafb84d27ce21d614..0000000000000000000000000000000000000000
--- a/Packaging/MacOS/qt.conf
+++ /dev/null
@@ -1,3 +0,0 @@
-[Paths]
-Translations=../../share/qt4/translations
-Plugins=../../lib/qt4/plugins
diff --git a/Packaging/Windows/BundleFixing.cmake.in b/Packaging/Windows/BundleFixing.cmake.in
deleted file mode 100644
index e10150ab5f096a5b7c3c6b0ecf1364af08020eb8..0000000000000000000000000000000000000000
--- a/Packaging/Windows/BundleFixing.cmake.in
+++ /dev/null
@@ -1,8 +0,0 @@
-set(APP_LIST @OTB_APPS_NAME_LIST@)
-
-foreach(APP ${APP_LIST})
-  list(APPEND OTB_APPS_LIST_INSTALL ${CMAKE_INSTALL_PREFIX}/../Runtime/lib/otb/applications/${APP})
-endforeach(APP)
-
-include(BundleUtilities)
-fixup_bundle("${CMAKE_INSTALL_PREFIX}/bin/@EXE_FILENAME@" "${OTB_APPS_LIST_INSTALL}" "")
diff --git a/Packaging/Windows/CMakeLists.txt b/Packaging/Windows/CMakeLists.txt
deleted file mode 100644
index 8f6826d2771f15c3a2491e8ed675ff73fe648225..0000000000000000000000000000000000000000
--- a/Packaging/Windows/CMakeLists.txt
+++ /dev/null
@@ -1,118 +0,0 @@
-# file(TO_CMAKE_PATH "$ENV{OSGEO4W_ROOT}" OSGEO4W_ROOT)
-# if(NOT OSGEO4W_ROOT)
-#   message(FATAL_ERROR "Cannot generate installer without OSGeo4W environment : OSGEO4W_ROOT")
-# endif(NOT OSGEO4W_ROOT)
-
-# file(TO_CMAKE_PATH "$ENV{GDAL_DATA}" GDAL_DATA)
-# if(NOT GDAL_DATA)
-#   message(FATAL_ERROR "Cannot generate installer without OSGeo4W environment : GDAL_DATA")
-# endif(NOT GDAL_DATA)
-
-
-
-
-
-
-# Search all the applications available in the OTB install dir
-# Consequently, this part of code only works with an OTB install dir,
-# not with an OB build dir.
-# file(GLOB OTB_APPS_LIST ${OTB_DIR}/../../otb/applications/otbapp_*.dll) # /lib/otb
-
-# if(NOT OTB_APPS_LIST)
-#     message(FATAL_ERROR "No OTB-applications detected")
-# endif()
-
-# # Install the applications
-# install(FILES ${OTB_APPS_LIST}
-#         DESTINATION lib/otb/applications
-#         COMPONENT Runtime)
-
-# # Retrieve the name of all the applications available
-# foreach(APP ${OTB_APPS_LIST})
-#     string(REPLACE ${OTB_DIR}/../../otb/applications/ "" APP_NAME ${APP})
-#     list(APPEND OTB_APPS_NAME_LIST ${APP_NAME})
-# endforeach(APP)
-
-# # configure the file to pass the list of available applications
-# set(EXE_FILENAME "monteverdi2.exe")
-# configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/BundleFixing.cmake.in
-#                 ${CMAKE_CURRENT_BINARY_DIR}/BundleFixing.cmake
-#                 @ONLY)
-
-# set(EXE_FILENAME "mapla.exe")
-# configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/BundleFixing.cmake.in
-#                 ${CMAKE_CURRENT_BINARY_DIR}/BundleFixing2.cmake
-#                 @ONLY)
-                
-
-# #Use the configured file with the list of apps
-# # Gather all dlls from which Monteverdi depends, and put them aside the executable
-# # For this to work, the necessary DLL must be in PATH
-# install(SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/BundleFixing.cmake
-#                 COMPONENT Monteverdi2)
-                
-# install(SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/BundleFixing2.cmake
-#                 COMPONENT Mapla)
-
-# # The following DLL handling is very specific
-# # both to OSGeo4W flavour (32 bit or 64 bit), OSGeo4W package state
-# # and the compiler used to make the Monteverdi2 installer (VC2010)
-# # Don't expect too much of it without VC2010.
-
-# # For some reason, fixup_bundle won't package the msvc runtime dll
-# # I guess it's because cpack already handles installing the runtime,
-# # but here we build with a particular version of Visual, but
-# # some OSGeo4W dependencies are built upon other runtimes
-# set(MVD2_ADDITIONNAL_DLLS
-#         ${OSGEO4W_ROOT}/bin/msvcp60.dll
-#         ${OSGEO4W_ROOT}/bin/msvcp70.dll
-#         ${OSGEO4W_ROOT}/bin/msvcp71.dll
-#         ${OSGEO4W_ROOT}/bin/msvcr71.dll
-#         ${OSGEO4W_ROOT}/bin/msvcrt.dll)
-
-# # Since an upgrade in OSGeo4W-32bit of libpq (around 2013/10)
-# # libpq depends on two additional libs that cmake
-# # surprisingly miss during package generation
-# # I really don't understand why.
-# # Let's add them manually
-# set(MVD2_ADDITIONNAL_DLLS
-#         ${MVD2_ADDITIONNAL_DLLS}
-#         ${OSGEO4W_ROOT}/bin/libgcc_s_dw2-1.dll
-#         ${OSGEO4W_ROOT}/bin/libiconv-2.dll)
-
-# foreach(dll ${MVD2_ADDITIONNAL_DLLS})
-#   if (EXISTS ${dll})
-#      install( FILES ${dll}
-#               DESTINATION bin
-#               COMPONENT Runtime )
-#   endif()
-# endforeach()
-
-
-# # Need to include csv files provided with OSGeo that contains some needed EPSG definitions
-# find_path(GDAL_DATA epsg.wkt $ENV{GDAL_DATA})
-
-# install(DIRECTORY ${GDAL_DATA}
-#         DESTINATION share
-#         COMPONENT Resources)
-
-# install(FILES ${QT_TRANSLATIONS_FILES}
-#         DESTINATION  share/qt4/translations
-#         COMPONENT Resources)
-
-# install(FILES ${QT_PLUGINS_DIR}/sqldrivers/qsqlite4.dll
-#         DESTINATION lib/qt4/plugins/sqldrivers/
-#         COMPONENT Runtime)
-
-# install(FILES qt.conf
-#         DESTINATION  bin
-#         COMPONENT Resources)
-
-# install(FILES ${Monteverdi2_SOURCE_DIR}/Packaging/Windows/monteverdi2.bat
-#         DESTINATION bin
-#         COMPONENT Monteverdi2)
-
-        
-# install(FILES ${Monteverdi2_SOURCE_DIR}/Packaging/Windows/mapla.bat
-#         DESTINATION bin
-#         COMPONENT Mapla)
diff --git a/Packaging/Windows/qt.conf b/Packaging/Windows/qt.conf
deleted file mode 100644
index b8c5e712b0157a81ba6494e62ada2e6201bd4951..0000000000000000000000000000000000000000
--- a/Packaging/Windows/qt.conf
+++ /dev/null
@@ -1,3 +0,0 @@
-[Paths]
-Translations=../share/qt4/translations
-Plugins=../lib/qt4/plugins
\ No newline at end of file