Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/plugins/intel_npu/src/utils/src/vm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,7 @@ endif()
# headers are copied into the build directory by prepare_ze_headers; without
# this explicit dependency a parallel build may compile ${TARGET_NAME} before
# the headers are copied, causing a missing-header error
add_dependencies(${TARGET_NAME} prepare_ze_headers)
# If ENABLE_SYSTEM_LEVEL_ZERO enabled, prepare_ze_headers is not defined
if (TARGET prepare_ze_headers)
add_dependencies(${TARGET_NAME} prepare_ze_headers)
endif()
Loading