Change location for custom CMake files and scripts
authorRomain Forlot <romain.forlot@iot.bzh>
Tue, 4 Jul 2017 16:46:41 +0000 (18:46 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Tue, 4 Jul 2017 16:46:41 +0000 (18:46 +0200)
Use one additionnal level to put  all app-templates related files
in one directory.

Change-Id: Iec297d0070d8d47a4ce9e351bedb3ec45f691af4
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
cmake/common.cmake

index 647d8d5..760a863 100644 (file)
@@ -26,9 +26,9 @@
 
 file(GLOB project_cmakefiles ${PROJECT_APP_TEMPLATES_DIR}/cmake/cmake.d/[0-9][0-9]-*.cmake)
 list(SORT project_cmakefiles)
-file(GLOB home_cmakefiles $ENV{HOME}/.config/cmake.d/[0-9][0-9]-*.cmake)
+file(GLOB home_cmakefiles $ENV{HOME}/.config/app-templates/cmake.d/[0-9][0-9]-*.cmake)
 list(SORT home_cmakefiles)
-file(GLOB system_cmakefiles /etc/cmake.d/[0-9][0-9]-*.cmake)
+file(GLOB system_cmakefiles /etc/app-templates/cmake.d/[0-9][0-9]-*.cmake)
 list(SORT system_cmakefiles)
 
 foreach(file ${project_cmakefiles} ${home_cmakefiles} ${system_cmakefiles})
@@ -42,6 +42,9 @@ else()
        project_subdirs_add()
 endif(DEFINED PROJECT_SRC_DIR_PATTERN)
 
+configure_file_in_dir($ENV{HOME}/.config/app-templates/scripts)
+configure_file_in_dir(/etc/app-templates/scripts)
+
 project_targets_populate()
 project_package_build()
 project_closing_msg()