From 50bbd6f0712ae630984c25bf749e5f0e4afa6084 Mon Sep 17 00:00:00 2001 From: Alexander Bruy Date: Tue, 2 Feb 2016 19:48:50 +0200 Subject: [PATCH] [processing] include OTB descriptions and help into CMakeLists.txt --- python/plugins/processing/algs/otb/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/plugins/processing/algs/otb/CMakeLists.txt b/python/plugins/processing/algs/otb/CMakeLists.txt index 1d96cb7a726..7d9ee69ed9a 100644 --- a/python/plugins/processing/algs/otb/CMakeLists.txt +++ b/python/plugins/processing/algs/otb/CMakeLists.txt @@ -1,9 +1,9 @@ FILE(GLOB PY_FILES *.py) -FILE(GLOB DESCR_FILES description/*.xml) FILE(GLOB HELPER_FILES helper/*.py) -FiLE(GLOB HELP_FILES description/doc/*.html) +FILE(GLOB DESCR_FILES description/5.0.0/*.xml) +FiLE(GLOB HELP_FILES description/5.0.0/doc/*.html) PLUGIN_INSTALL(processing ./algs/otb ${PY_FILES}) -PLUGIN_INSTALL(processing ./algs/otb/description ${DESCR_FILES}) PLUGIN_INSTALL(processing ./algs/otb/helper ${HELPER_FILES}) -PLUGIN_INSTALL(processing ./algs/otb/description/doc ${HELP_FILES}) +PLUGIN_INSTALL(processing ./algs/otb/description/5.0.0 ${DESCR_FILES}) +PLUGIN_INSTALL(processing ./algs/otb/description/5.0.0/doc ${HELP_FILES})