We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 261f694 commit 46c13b6Copy full SHA for 46c13b6
1 file changed
Libraries/CMakeLists.txt
@@ -63,7 +63,14 @@ if(
63
add_subdirectory(rocALUTION)
64
add_subdirectory(rocBLAS)
65
add_subdirectory(rocCV)
66
- add_subdirectory(rocDecode)
+
67
+ option(ENABLE_ROCDECODE "Enable rocDecode examples (enabled by default)" ON)
68
+ if(ENABLE_ROCDECODE)
69
+ add_subdirectory(rocDecode)
70
+ else()
71
+ message(STATUS "rocDecode examples disabled, not building rocDecode examples.")
72
+ endif()
73
74
add_subdirectory(rocJPEG)
75
add_subdirectory(rocFFT)
76
add_subdirectory(rocPRIM)
0 commit comments