From a18324ff104111fa16cc9205ad0a5247384af1f8 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 9 Feb 2024 10:55:23 +0100 Subject: [PATCH] Fix compilation error when WITH_COMPOSITOR_CPU is OFF The render only uses `ProfilerData` for which it is enough to only have header. No linking is needed to the bf_compositor for things to work. Pull Request: https://projects.blender.org/blender/blender/pulls/118030 --- source/blender/render/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/source/blender/render/CMakeLists.txt b/source/blender/render/CMakeLists.txt index e49a6141172..0439f9b2755 100644 --- a/source/blender/render/CMakeLists.txt +++ b/source/blender/render/CMakeLists.txt @@ -65,7 +65,6 @@ set(LIB PRIVATE bf::depsgraph PRIVATE bf::dna PRIVATE bf::intern::guardedalloc - bf_compositor bf_realtime_compositor PRIVATE bf::intern::atomic )