diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-04 19:57:00 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:19 +0200 |
commit | 9da2384f6a01d5d1d3ad6396fde5d32f7ecd62b0 (patch) | |
tree | 627782bbedf44d18dc2880cf5b7f7cc218bac844 /reference/etc | |
parent | 8d0a2bfbe7ca1d69b4feb8b4eb58cc781b509e85 (diff) |
Remove unused dirty macros
Change-Id: I81fa1b72a91f56222de153c52d3d5ed9d084f1ea
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'reference/etc')
-rw-r--r-- | reference/etc/macros.cmake | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/reference/etc/macros.cmake b/reference/etc/macros.cmake index 6a389de..1a1154d 100644 --- a/reference/etc/macros.cmake +++ b/reference/etc/macros.cmake @@ -37,31 +37,6 @@ macro(defstr name value) endmacro(defstr) # Dumb macro to add each directory under a path. Make sure we grab all header files! -macro(fill_include_dir path) - file(GLOB_RECURSE dirlist LIST_DIRECTORIES true "${path}/*") - foreach(filename ${dirlist}) - if(IS_DIRECTORY ${filename}) - include_directories(${filename}) - endif(IS_DIRECTORY ${filename}) - endforeach() -endmacro(fill_include_dir) - -# Helper function to retrieve source files from a library repo. -function(find_source_files path) - file(GLOB_RECURSE cfiles "${path}/*.[c]") - file(GLOB_RECURSE cppfiles "${path}/*.cpp") - foreach(filename ${cfiles}) - if(NOT ${filename} MATCHES ".*([Tt]est|[Ee]xample|[Ss]ample).*") - string(APPEND sources "${filename};") - endif(NOT ${filename} MATCHES ".*([Tt]est|[Ee]xample|[Ss]ample).*") - endforeach() - foreach(filename ${cppfiles}) - if(NOT ${filename} MATCHES ".*([Tt]est|[Ee]xample|[Ss]ample).*") - string(APPEND sources "${filename};") - endif(NOT ${filename} MATCHES ".*([Tt]est|[Ee]xample|[Ss]ample).*") - endforeach() - set(sources_files ${sources} PARENT_SCOPE) -endfunction(find_source_files) # WGT packaging macro(populate_widget) |