From fedcf37b2fce11e42ed20ad2dde3f7557449659d Mon Sep 17 00:00:00 2001 From: Aryan Salmanpour Date: Tue, 13 May 2025 16:09:19 -0400 Subject: [PATCH] VideoDecodeRGB sample - Fix CMake configuration warning (#586) --- samples/videoDecodeRGB/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/videoDecodeRGB/CMakeLists.txt b/samples/videoDecodeRGB/CMakeLists.txt index c4c804acea..52b955cd30 100644 --- a/samples/videoDecodeRGB/CMakeLists.txt +++ b/samples/videoDecodeRGB/CMakeLists.txt @@ -42,7 +42,7 @@ endif() project(videodecodergb) list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/../../cmake) -list(APPEND CMAKE_PREFIX_PATH ${ROCM_PATH}/lib/cmake) +list(APPEND CMAKE_PREFIX_PATH ${ROCM_PATH}/lib/cmake ${ROCM_PATH}/share/rocmcmakebuildtools/cmake) # rocDecode sample build type set(DEFAULT_BUILD_TYPE "Release")