1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-03 00:59:47 +02:00
openrw/openrw_iwyu.imp
Anonymous Maarten 90acef28f7 rwlib: iwyu: reduce warnings
- use mapping file
- forward define FileContentsInfo, CutsceneTracks, GameTexts
- no more "#pragma once"
- add mapping file
2018-01-08 22:52:48 +00:00

15 lines
749 B
Plaintext

# OpenRW's include-what-you-use mapping file
[
# c++ standard:
{ "include": [ "@<bits/shared_ptr\\.h>", "private", "<memory>", "public"] },
{ "include": [ "@<bits/std_function\\.h>", "private", "<functional>", "public"] },
{ "include": [ "@<bits/std_abs\\.h>", "private", "<cstdlib>", "public"] },
# GLM:
{ "include": [ "@<glm/detail/.*>", "private", "<glm/glm.hpp>", "public"] },
{ "include": [ "@<glm/gtc/.*>", "private", "<glm/gtc/matrix_transform.hpp>", "public"] },
# Boost filesystem:
{ "include": [ "@<boost/filesystem/.*>", "private", "<boost/filesystem.hpp>", "public"] },
# Boost iterator:
{ "include": [ "@<boost/range/iterator_range_core\\.hpp>", "private", "<boost/range/iterator_range.hpp>", "public"] },
]