Skip to content

Commit

Permalink
[Discord] kv-storage prebuilt prefab config
Browse files Browse the repository at this point in the history
  • Loading branch information
Flewp committed Dec 4, 2024
1 parent 21daa5f commit 127312b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ abstract class PrepareBoostTask : DefaultTask() {
it.from(project.file("src/main/jni/third-party/boost"))
it.include(
"CMakeLists.txt",
"boost_${boostVersion.get()}/boost/**/*.h",
"boost_${boostVersion.get()}/boost/**/*.hpp",
"boost/boost/**/*.h",
"boost/boost/**/*.hpp",
"asm/**/*.S")
it.includeEmptyDirs = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,19 @@ abstract class PreparePrefabHeadersTask : DefaultTask() {
it.include("boost/cstdint.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 127312b

Please sign in to comment.