From 8810f7280f14c285155b2ff36360833a89b1ae43 Mon Sep 17 00:00:00 2001 From: Ovidiu Mircescu Date: Fri, 12 Aug 2016 13:35:05 +0200 Subject: [PATCH] Use the new configuration directory for cmake. --- module_generator/doc_tmpl.py | 4 +--- module_generator/mod_tmpl.py | 10 +++++++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/module_generator/doc_tmpl.py b/module_generator/doc_tmpl.py index e61f2e4..bed1362 100644 --- a/module_generator/doc_tmpl.py +++ b/module_generator/doc_tmpl.py @@ -27,8 +27,6 @@ except: # module : module name # files : doc source files (.rst) docmakefile=""" -INCLUDE($${KERNEL_ROOT_DIR}/salome_adm/cmake_files/SalomeMacros.cmake) - SET(RSTFILES ${files} ) @@ -106,7 +104,7 @@ master_doc = 'index' # General information about the project. project = u'${module}' -copyright = u'2010-2015' +copyright = u'2010-2016' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/module_generator/mod_tmpl.py b/module_generator/mod_tmpl.py index 0c00a90..793377a 100644 --- a/module_generator/mod_tmpl.py +++ b/module_generator/mod_tmpl.py @@ -71,12 +71,20 @@ SET($${PROJECT_NAME_UC}_VERSION $${$${PROJECT_NAME_UC}_MAJOR_VERSION}.$${$${PROJECT_NAME_UC}_MINOR_VERSION}.$${$${PROJECT_NAME_UC}_PATCH_VERSION}) SET($${PROJECT_NAME_UC}_VERSION_DEV 1) +# =================== +SET(CONFIGURATION_ROOT_DIR $$ENV{CONFIGURATION_ROOT_DIR} CACHE PATH "Path to the Salome CMake configuration files") +IF(EXISTS $${CONFIGURATION_ROOT_DIR}) + LIST(APPEND CMAKE_MODULE_PATH "$${CONFIGURATION_ROOT_DIR}/cmake") + INCLUDE(SalomeMacros) +ELSE() + MESSAGE(FATAL_ERROR "We absolutely need the Salome CMake configuration files, please define CONFIGURATION_ROOT_DIR !") +ENDIF() + # Find KERNEL # =========== SET(KERNEL_ROOT_DIR $$ENV{KERNEL_ROOT_DIR} CACHE PATH "Path to the Salome KERNEL") IF(EXISTS $${KERNEL_ROOT_DIR}) LIST(APPEND CMAKE_MODULE_PATH "$${KERNEL_ROOT_DIR}/salome_adm/cmake_files") - INCLUDE(SalomeMacros) FIND_PACKAGE(SalomeKERNEL REQUIRED) ELSE(EXISTS $${KERNEL_ROOT_DIR}) MESSAGE(FATAL_ERROR "We absolutely need a Salome KERNEL, please define KERNEL_ROOT_DIR") -- 2.39.2