diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2018-08-20 13:32:44 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2018-08-20 13:32:44 +0200 |
commit | c9ab6ce58d95edab20b5c8e4e8a33b4f82335787 (patch) | |
tree | 019fbea3b3c1580fe2593aa50ac18f769134aec5 /cmake/files.txt.ejs | |
parent | 112bbc7ab289298094d6e6593437a71ec8029caa (diff) | |
download | qtlocation-mapboxgl-upstream/cmake-file-lists.tar.gz |
[build] use plain text files for file lists to simplify integration with other build systemsupstream/cmake-file-lists
Diffstat (limited to 'cmake/files.txt.ejs')
-rw-r--r-- | cmake/files.txt.ejs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cmake/files.txt.ejs b/cmake/files.txt.ejs new file mode 100644 index 0000000000..6c210347f6 --- /dev/null +++ b/cmake/files.txt.ejs @@ -0,0 +1,10 @@ +<% + const groups = locals.groups; +-%> +# This file is generated. Do not edit. Regenerate this with scripts/generate-cmake-files.js + +<% for (const key of Object.keys(groups).sort()) { -%> +# <%- key %> +<%- groups[key].sort().join('\n') %> + +<% } -%> |