Skip to content

Commit

Permalink
Fix CMake for 006_RayTracingHello demo on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
rokuz committed Oct 14, 2024
1 parent e814111 commit 29a16d8
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 29a16d8

Please sign in to comment.