mirror of https://github.com/ARMmbed/mbed-os.git
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
parent
da5719113c
commit
7e1dff5aec
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue