From 9547e7a317d6f86ab8fbfb3d440f127c2ab75df2 Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Tue, 11 Jul 2023 14:20:31 -0600 Subject: [PATCH] Fix: shader_builder build issue The blenkernel cleanup commit from this morning forgot to update the shader builder. --- source/blender/gpu/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/gpu/CMakeLists.txt b/source/blender/gpu/CMakeLists.txt index ca4e7933e71..130c26e45e1 100644 --- a/source/blender/gpu/CMakeLists.txt +++ b/source/blender/gpu/CMakeLists.txt @@ -819,6 +819,7 @@ if(WITH_GPU_BUILDTIME_SHADER_BUILDER) bf_intern_ghost ${PLATFORM_LINKLIBS} PRIVATE bf::intern::guardedalloc + PRIVATE bf::blenkernel ) target_include_directories(shader_builder PRIVATE ${INC} ${CMAKE_CURRENT_BINARY_DIR})