[UR][CMake] Fix OpenCL target error on rebuild #19740
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The problem was
OpenCL_FOUNDwas getting set toTRUEon the second invocation of the module becausefind_packagewas finding theFetchContentclone inSOURCE_TREE/build/__deps.We use
OpenCL_FOUNDto specifically refer to external system-wide installs, so useNO_CMAKE_PACKAGE_REGISTRYto make sure we don't find FetchContent clones.Also not related to the fix here but re-order
FetchContent_DeclareFetchContent_GetProperties, theDeclareshould come first and weMakeAvailableshould not be inside theif, we only check if it's populated to print the message.Closes: #19737