mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
scons: allow .inl file extension
Intended for header files which are not meant to be included directly. Reviewed-by: Bruce Cherniak <bruce.cherniak at intel.com>
This commit is contained in:
parent
614de92f10
commit
8b66d18a3b
1 changed files with 1 additions and 1 deletions
|
|
@ -281,7 +281,7 @@ def parse_source_list(env, filename, names=None):
|
|||
# cause duplicate actions.
|
||||
f = f[len(cur_srcdir + '/'):]
|
||||
# do not include any headers
|
||||
if f.endswith(tuple(['.h','.hpp'])):
|
||||
if f.endswith(tuple(['.h','.hpp','.inl'])):
|
||||
continue
|
||||
srcs.append(f)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue