diff options
author | Sylvain Munaut <tnt@246tNt.com> | 2017-09-11 17:04:25 -0700 |
---|---|---|
committer | Sylvain Munaut <tnt@246tNt.com> | 2017-09-11 17:04:25 -0700 |
commit | 80025b8c2cb398a0ccd467b36e5e0b0c43bab7d8 (patch) | |
tree | 2fe7d1e6874315d468f23823b629a963dc0c9f10 | |
parent | 299a1c9b9e7d434850151ad84f479c61e19fa4a2 (diff) |
grc: Make sure to install the yml files
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r-- | grc/blocks/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/grc/blocks/CMakeLists.txt b/grc/blocks/CMakeLists.txt index d46b1febbe..2dbc7c6d0d 100644 --- a/grc/blocks/CMakeLists.txt +++ b/grc/blocks/CMakeLists.txt @@ -20,6 +20,7 @@ ######################################################################## include(GrPython) +file(GLOB yml_files "*.yml") file(GLOB xml_files "*.xml") macro(REPLACE_IN_FILE _xml_block match replace) @@ -54,6 +55,6 @@ endif() add_custom_target(grc_generated_xml ALL DEPENDS ${generated_xml_files}) install( - FILES ${xml_files} ${generated_xml_files} + FILES ${yml_files} ${xml_files} ${generated_xml_files} DESTINATION ${GRC_BLOCKS_DIR} ) |