Skip to content

Commit

Permalink
Add some missing files to Android cmake project.
Browse files Browse the repository at this point in the history
Bump gradle version.
  • Loading branch information
syoyo committed Oct 12, 2023
1 parent e84aa62 commit 3d8362d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion android/app/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ option(TINYUSDZ_USE_USDOBJ "Build with built-in .obj support" On)
set(TINYUSDZ_SOURCES
${PROJECT_SOURCE_DIR}/../../../../../src/tinyusdz.cc
${PROJECT_SOURCE_DIR}/../../../../../src/asset-resolution.cc
${PROJECT_SOURCE_DIR}/../../../../../src/composition.cc
${PROJECT_SOURCE_DIR}/../../../../../src/prim-types.cc
${PROJECT_SOURCE_DIR}/../../../../../src/ascii-parser.cc
${PROJECT_SOURCE_DIR}/../../../../../src/ascii-parser-basetype.cc
Expand All @@ -29,19 +30,23 @@ set(TINYUSDZ_SOURCES
${PROJECT_SOURCE_DIR}/../../../../../src/image-loader.cc
${PROJECT_SOURCE_DIR}/../../../../../src/usda-writer.cc
${PROJECT_SOURCE_DIR}/../../../../../src/usdGeom.cc
${PROJECT_SOURCE_DIR}/../../../../../src/usdSkel.cc
${PROJECT_SOURCE_DIR}/../../../../../src/usdShade.cc
${PROJECT_SOURCE_DIR}/../../../../../src/usdMtlx.cc
${PROJECT_SOURCE_DIR}/../../../../../src/usdLux.cc
${PROJECT_SOURCE_DIR}/../../../../../src/xform.cc
${PROJECT_SOURCE_DIR}/../../../../../src/stage.cc
${PROJECT_SOURCE_DIR}/../../../../../src/str-util.cc
${PROJECT_SOURCE_DIR}/../../../../../src/path-util.cc
${PROJECT_SOURCE_DIR}/../../../../../src/image-util.cc
${PROJECT_SOURCE_DIR}/../../../../../src/image-writer.cc
${PROJECT_SOURCE_DIR}/../../../../../src/linear-algebra.cc
${PROJECT_SOURCE_DIR}/../../../../../src/tydra/facial.cc
${PROJECT_SOURCE_DIR}/../../../../../src/tydra/scene-access.cc
${PROJECT_SOURCE_DIR}/../../../../../src/tydra/render-data.cc
${PROJECT_SOURCE_DIR}/../../../../../src/tydra/prim-apply.cc
${PROJECT_SOURCE_DIR}/../../../../../src/tydra/shader-network.cc
)

if (TINYUSDZ_USE_USDOBJ)
list(APPEND TINYUSDZ_SOURCES
${PROJECT_SOURCE_DIR}/../../../../../src/usdObj.cc)
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {

}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.1'
classpath 'com.android.tools.build:gradle:8.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down

0 comments on commit 3d8362d

Please sign in to comment.