diff --git a/runtime/enable_gens.cmake b/runtime/enable_gens.cmake index de7c1a39f8..62163181c9 100644 --- a/runtime/enable_gens.cmake +++ b/runtime/enable_gens.cmake @@ -81,6 +81,9 @@ macro(macro_for_each_gen) if(EXISTS "${GENX_PREFIX}/hw_info_${GEN_TYPE_LOWER}.h") list(APPEND RUNTIME_SRCS_${GEN_TYPE}_H_BASE "${GENX_PREFIX}/hw_info_${GEN_TYPE_LOWER}.h") endif() + if(EXISTS "${GENX_PREFIX}/additional_files_${GEN_TYPE_LOWER}.cmake") + include("${GENX_PREFIX}/additional_files_${GEN_TYPE_LOWER}.cmake") + endif() if(${SUPPORT_DEVICE_ENQUEUE_${GEN_TYPE}}) list(APPEND RUNTIME_SRCS_${GEN_TYPE}_H_BASE ${GENX_PREFIX}/device_enqueue.h)