From 7e1dff5aec9ff9072a98ef92eab58511f5118fb5 Mon Sep 17 00:00:00 2001 From: Brian Daniels Date: Wed, 13 Feb 2019 17:56:09 -0600 Subject: [PATCH] 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. --- tools/resources/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/resources/__init__.py b/tools/resources/__init__.py index 1514365074..be0ca9a22e 100644 --- a/tools/resources/__init__.py +++ b/tools/resources/__init__.py @@ -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,