blob: 57126509ed7d5fa3fcf20058a0ddf7cc6e0d0fbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<%
const name = locals.name;
const groups = locals.groups;
-%>
# This file is generated. Do not edit. Regenerate this with scripts/generate-cmake-files.js
set(MBGL_<%- snakeCaseUpper(name) %>_FILES
<% for (const key of Object.keys(groups).sort()) { -%>
# <%- key %>
<%- groups[key].sort().join('\n ') %>
<% } -%>
)
|