Skip to content

Commit

Permalink
[superbuild] Adding options to enable experimental features and compr…
Browse files Browse the repository at this point in the history
…ession
  • Loading branch information
sherholz-intel committed Oct 3, 2024
1 parent 5aa182d commit 2d8f52a
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion superbuild/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,31 @@ if(BUILD_VIEWER)
-DOPENPGL_BUILD_VIEWER=ON
)
endif()


if(OPENPGL_EF_RADIANCE_CACHES)
set(OPENPGL_ARGS ${OPENPGL_ARGS}
-DOPENPGL_EF_RADIANCE_CACHES=ON
)
endif()

if(OPENPGL_EF_IMAGE_SPACE_GUIDING_BUFFER)
set(OPENPGL_ARGS ${OPENPGL_ARGS}
-DOPENPGL_EF_IMAGE_SPACE_GUIDING_BUFFER=ON
)
endif()

if(OPENPGL_DIRECTION_COMPRESSION)
set(OPENPGL_ARGS ${OPENPGL_ARGS}
-DOPENPGL_DIRECTION_COMPRESSION=ON
)
endif()

if(OPENPGL_RADIANCE_COMPRESSION)
set(OPENPGL_ARGS ${OPENPGL_ARGS}
-DOPENPGL_RADIANCE_COMPRESSION=ON
)
endif()

if(OPENPGL_TBB_ROOT)
set(OPENPGL_ARGS ${OPENPGL_ARGS}
-DTBB_ROOT=${OPENPGL_TBB_ROOT}
Expand Down

0 comments on commit 2d8f52a

Please sign in to comment.