summaryrefslogtreecommitdiff
path: root/iwyu.json
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-12-13 23:47:30 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2021-12-13 23:47:30 +0000
commit1686a01b6ae7467e71eac247078248de4a3b3423 (patch)
tree53716ce767b1b775dc06f658a41a647bddbbeac1 /iwyu.json
parentMove TickDuration to its own files (diff)
downloadilt-1686a01b6ae7467e71eac247078248de4a3b3423.tar.bz2
ilt-1686a01b6ae7467e71eac247078248de4a3b3423.tar.xz
ilt-1686a01b6ae7467e71eac247078248de4a3b3423.zip
Refactor to start splitting out UI components
Diffstat (limited to 'iwyu.json')
-rw-r--r--iwyu.json240
1 files changed, 128 insertions, 112 deletions
diff --git a/iwyu.json b/iwyu.json
index 54e4e0c..515ab21 100644
--- a/iwyu.json
+++ b/iwyu.json
@@ -1,114 +1,130 @@
[
- {
- "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/gtc/constants.inl>",
- "private",
- "<glm/gtc/constants.hpp>",
- "public"
- ]
- },
- {
- "include": [
- "@<glm/gtx/vector_angle.inl>",
- "private",
- "<glm/gtx/vector_angle.hpp>",
- "public"
- ]
- },
- {
- "include": [
- "@<glm/gtx/rotate_vector.inl>",
- "private",
- "<glm/gtx/rotate_vector.hpp>",
- "public"
- ]
- },
- {
- "include": [
- "@<glm/gtx/transform.inl>",
- "private",
- "<glm/gtx/transform.hpp>",
- "public"
- ]
- },
- {
- "include": [
- "<boost/test/unit_test_suite.hpp>",
- "private",
- "<boost/test/unit_test.hpp>",
- "public"
- ]
- },
- {
- "include": [
- "@<boost/test/utils/.*>",
- "private",
- "<boost/test/unit_test.hpp>",
- "public"
- ]
- },
- {
- "include": [
- "@<boost/test/data/.*>",
- "private",
- "<boost/test/data/test_case.hpp>",
- "public"
- ]
- },
- {
- "include": [
- "@<boost/test/tools/.*>",
- "private",
- "<boost/test/unit_test.hpp>",
- "public"
- ]
- },
- {
- "include": [
- "@<boost/preprocessor/.*>",
- "private",
- "<boost/test/unit_test.hpp>",
- "public"
- ]
- },
- {
- "symbol": [
- "std::__atomic_wait",
- "private",
- "<mutex>",
- "public"
- ]
- }
+ {
+ "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/gtc/constants.inl>",
+ "private",
+ "<glm/gtc/constants.hpp>",
+ "public"
+ ]
+ },
+ {
+ "include": [
+ "@<glm/gtx/vector_angle.inl>",
+ "private",
+ "<glm/gtx/vector_angle.hpp>",
+ "public"
+ ]
+ },
+ {
+ "include": [
+ "@<glm/gtx/rotate_vector.inl>",
+ "private",
+ "<glm/gtx/rotate_vector.hpp>",
+ "public"
+ ]
+ },
+ {
+ "include": [
+ "@<glm/gtx/transform.inl>",
+ "private",
+ "<glm/gtx/transform.hpp>",
+ "public"
+ ]
+ },
+ {
+ "include": [
+ "@<glm/gtc/type_ptr.inl>",
+ "private",
+ "<glm/gtc/type_ptr.hpp>",
+ "public"
+ ]
+ },
+ {
+ "include": [
+ "<boost/test/unit_test_suite.hpp>",
+ "private",
+ "<boost/test/unit_test.hpp>",
+ "public"
+ ]
+ },
+ {
+ "include": [
+ "@<boost/test/utils/.*>",
+ "private",
+ "<boost/test/unit_test.hpp>",
+ "public"
+ ]
+ },
+ {
+ "include": [
+ "@<boost/test/data/.*>",
+ "private",
+ "<boost/test/data/test_case.hpp>",
+ "public"
+ ]
+ },
+ {
+ "include": [
+ "@<boost/test/tools/.*>",
+ "private",
+ "<boost/test/unit_test.hpp>",
+ "public"
+ ]
+ },
+ {
+ "include": [
+ "@<boost/preprocessor/.*>",
+ "private",
+ "<boost/test/unit_test.hpp>",
+ "public"
+ ]
+ },
+ {
+ "symbol": [
+ "std::abs",
+ "private",
+ "<cmath>",
+ "public"
+ ]
+ },
+ {
+ "symbol": [
+ "std::__atomic_wait",
+ "private",
+ "<mutex>",
+ "public"
+ ]
+ }
]