Skip to content

Commit

Permalink
Add vendor support to Android bp
Browse files Browse the repository at this point in the history
  • Loading branch information
leemaguire committed Apr 26, 2024
1 parent e718cc8 commit 76bbc48
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Android.bp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ genrule {
"dependencies.list",
"src/cpprealm/internal/version_numbers.hpp.in",
],
out: ["cpprealm/internal/version_numbers.hpp"],
out: ["cpprealm/version_numbers.hpp"],
tool_files: ["tools/generate-version-numbers-for-soong.sh"],
cmd: "$(location) $(in) > $(out)",
}
Expand Down Expand Up @@ -47,8 +47,9 @@ cc_library_static {
"src/cpprealm/internal/apple/**/*",
"src/cpprealm/internal/curl/**/*"
],
export_include_dirs: ["src"],
export_include_dirs: ["include"],
export_generated_headers: ["gen_realmcxx_version_numbers"],
static_libs: ["realm"],
include_build_directory: false
include_build_directory: false,
vendor: true
}

0 comments on commit 76bbc48

Please sign in to comment.