Skip to content

Commit b3bbff4

Browse files
committed
Add vcpkg.json for dependency tracking and minor fix in Android build.gradle file
- Introduced `vcpkg.json` to manage project dependencies. - Updated `build.gradle` to fix syntax for `abiFilters` configuration.
1 parent 5357664 commit b3bbff4

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

attachments/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ android {
1818
externalNativeBuild {
1919
cmake {
2020
arguments "-DCHAPTER=${project.findProperty('chapter') ?: '34_android'}"
21-
abiFilters project.findProperty('abiFilters')?.split(',') ?: ['armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64']
21+
abiFilters = project.findProperty('abiFilters')?.split(',') ?: ['armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64']
2222
}
2323
}
2424
}

scripts/vcpkg.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "vulkan-tutorial",
3+
"version": "1.0.0",
4+
"dependencies": [
5+
"glfw3",
6+
"glm",
7+
"tinyobjloader",
8+
"stb",
9+
"tinygltf",
10+
"nlohmann-json",
11+
"ktx"
12+
]
13+
}

0 commit comments

Comments
 (0)