diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-01-17 18:54:26 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-01-17 18:54:26 +0000 |
commit | 43a87590f45aa6e55724d30d0c2d0d34b407a57e (patch) | |
tree | 21ce8e8886f8aa58b159419b7d885f57d9a37580 /iwyu.json | |
parent | Initial commit (diff) | |
download | ilt-43a87590f45aa6e55724d30d0c2d0d34b407a57e.tar.bz2 ilt-43a87590f45aa6e55724d30d0c2d0d34b407a57e.tar.xz ilt-43a87590f45aa6e55724d30d0c2d0d34b407a57e.zip |
First cut modernizing and sanitizing
Diffstat (limited to 'iwyu.json')
-rw-r--r-- | iwyu.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/iwyu.json b/iwyu.json new file mode 100644 index 0000000..ccf35c5 --- /dev/null +++ b/iwyu.json @@ -0,0 +1,42 @@ +[ + { + "include": [ + "<ext/alloc_traits.h>", + "private", + "<memory>", + "public" + ] + }, + { + "include": [ + "@\"SDL.*.h\"", + "private", + "<SDL2/SDL.h>", + "public" + ] + }, + { + "include": [ + "@<glm/detail/.*>", + "private", + "<glm/glm.hpp>", + "public" + ] + }, + { + "include": [ + "@<glm/ext/.*>", + "private", + "<glm/glm.hpp>", + "public" + ] + }, + { + "include": [ + "@<glm/gtx/transform.inl>", + "private", + "<glm/gtx/transform.hpp>", + "public" + ] + } +] |