Recurse over template files to configure them.
authorRomain Forlot <romain.forlot@iot.bzh>
Tue, 27 Jun 2017 12:32:41 +0000 (14:32 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Tue, 27 Jun 2017 13:36:00 +0000 (15:36 +0200)
Change-Id: I4e18946ac986a0c128b1d6f00185c0fd2200f643
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
cmake/cmake.d/01-variables.cmake [moved from cmake/cmake.d/02-variables.cmake with 100% similarity]
cmake/cmake.d/02-macros.cmake [moved from cmake/cmake.d/01-macros.cmake with 92% similarity]

similarity index 92%
rename from cmake/cmake.d/01-macros.cmake
rename to cmake/cmake.d/02-macros.cmake
index 3024768..0415e54 100644 (file)
@@ -37,6 +37,15 @@ macro(defstr name value)
        add_definitions(-D${name}=${value})
 endmacro(defstr)
 
+macro(configure_files_in_dir dir)
+       file(GLOB filelist "${dir}/*in")
+       foreach(file ${filelist})
+               get_filename_component(filename ${file} NAME)
+               string(REGEX REPLACE "target" "${RSYNC_TARGET}" destinationfile ${filename})
+               configure_file(${file} ${CMAKE_CURRENT_BINARY_DIR}/target/${destinationfile})
+       endforeach()
+endmacro(configure_files_in_dir)
+
 # Pre-packaging
 macro(project_targets_populate)
        # Default Widget default directory
@@ -130,8 +139,9 @@ macro(remote_targets_populate)
                        COMMAND exit -1
                )
        else()
-               configure_file(${SSH_TEMPLATE_DIR}/start-on-target.in ${CMAKE_CURRENT_BINARY_DIR}/target/start-on-${RSYNC_TARGET}.sh)
-               configure_file(${GDB_TEMPLATE_DIR}/gdb-on-target.in ${CMAKE_CURRENT_BINARY_DIR}/target/gdb-on-${RSYNC_TARGET}.ini)
+
+               configure_files_in_dir(${SSH_TEMPLATE_DIR})
+               configure_files_in_dir(${GDB_TEMPLATE_DIR})
 
                add_custom_target(remote-target-populate
                        DEPENDS populate
@@ -186,13 +196,13 @@ macro(wgt_package_build)
                        COMMAND exit -1
                )
        else()
-        configure_file(${WGT_TEMPLATE_DIR}/install-wgt-on-target.in ${CMAKE_CURRENT_BINARY_DIR}/target/install-wgt-on-${RSYNC_TARGET}.sh)
-        add_custom_target(widget-target-install
-            DEPENDS widget
-            COMMAND chmod +x ${CMAKE_CURRENT_BINARY_DIR}/target/install-wgt-on-${RSYNC_TARGET}.sh
-            COMMAND ${CMAKE_CURRENT_BINARY_DIR}/target/install-wgt-on-${RSYNC_TARGET}.sh
-        )
-    endif()
+       configure_files_in_dir(${WGT_TEMPLATE_DIR})
+       add_custom_target(widget-target-install
+       DEPENDS widget
+       COMMAND chmod +x ${CMAKE_CURRENT_BINARY_DIR}/target/install-wgt-on-${RSYNC_TARGET}.sh
+       COMMAND ${CMAKE_CURRENT_BINARY_DIR}/target/install-wgt-on-${RSYNC_TARGET}.sh
+       )
+endif()
 
        if(PACKAGE_MESSAGE)
        add_custom_command(TARGET widget