Skip to content

Commit

Permalink
[Discord] Updating prefab configuration to support kv-storage
Browse files Browse the repository at this point in the history
  • Loading branch information
Flewp committed Jun 14, 2024
1 parent 18313ff commit ba70792
Showing 1 changed file with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ abstract class PreparePrefabHeadersTask : DefaultTask() {
// We don't want to copy all the boost headers as they are 250Mb+
it.include("boost/config.hpp")
it.include("boost/config/**/*.hpp")
it.include("boost/core/*.hpp")
it.include("boost/detail/workaround.hpp")
it.include("boost/core/**/*.hpp")
it.include("boost/detail/**/*.hpp")
it.include("boost/operators.hpp")
it.include("boost/preprocessor/**/*.hpp")
// Headers needed for exposing rrc_text and rrc_textinput
Expand All @@ -74,6 +74,19 @@ abstract class PreparePrefabHeadersTask : DefaultTask() {
it.include("boost/config.hpp")
it.include("boost/utility.hpp")
it.include("boost/version.hpp")
// Extra files for kv-storage
it.include("boost/*.hpp")
it.include("boost/align/**/*.hpp")
it.include("boost/container/**/*.hpp")
it.include("boost/intrusive/**/*.hpp")
it.include("boost/iterator/**/*.hpp")
it.include("boost/lockfree/**/*.hpp")
it.include("boost/move/**/*.hpp")
it.include("boost/mp11/**/*.hpp")
it.include("boost/mpl/**/*.hpp")
it.include("boost/parameter/**/*.hpp")
it.include("boost/type_traits/**/*.hpp")
it.include("boost/utility/**/*.hpp")
it.into(File(outputFolder.asFile, headerPrefix))
}
}
Expand Down

0 comments on commit ba70792

Please sign in to comment.