Add .inc as a header file type.

Currently, if you were to add a directory that only contained .inc
files, this file would not be passed as an include path to the compiler.
This ensures that .inc files are also considered header files.
pull/9715/head
Brian Daniels 2019-02-13 17:56:09 -06:00
parent da5719113c
commit 7e1dff5aec
1 changed files with 1 additions and 0 deletions

View File

@ -467,6 +467,7 @@ class Resources(object):
".h": FileType.HEADER,
".hh": FileType.HEADER,
".hpp": FileType.HEADER,
".inc": FileType.HEADER,
".o": FileType.OBJECT,
".hex": FileType.HEX,
".bin": FileType.BIN,