aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/common.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/common.cmake')
-rw-r--r--cmake/common.cmake7
1 files changed, 5 insertions, 2 deletions
diff --git a/cmake/common.cmake b/cmake/common.cmake
index 647d8d5..760a863 100644
--- a/cmake/common.cmake
+++ b/cmake/common.cmake
@@ -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()