Skip to content

Commit

Permalink
Merge pull request #34 from rokuz/fix_android_rt
Browse files Browse the repository at this point in the history
Fix CMake for 006_RayTracingHello demo on Android
  • Loading branch information
corporateshark authored Oct 15, 2024
2 parents e814111 + 29a16d8 commit 04393c1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion samples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,14 @@ ADD_DEMO("002_RenderToCubeMap")
ADD_DEMO("003_RenderToCubeMapSinglePass")
ADD_DEMO("004_YUV")
if(WIN32 OR UNIX AND NOT (APPLE))
# Windows and Linux
ADD_DEMO("005_MeshShaders")
ADD_DEMO("006_RayTracingHello")
ADD_DEMO("007_RayTracingAO")
endif()
if((WIN32 OR UNIX AND NOT (APPLE)) OR LVK_WITH_SAMPLES_ANDROID)
# Windows, Linux and Android
ADD_DEMO("006_RayTracingHello")
endif()

ADD_DEMO("Tiny")
ADD_DEMO("Tiny_Mesh")
Expand Down

0 comments on commit 04393c1

Please sign in to comment.