Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-08-12 15:13:50 +0300
committerCampbell Barton <campbell@blender.org>2022-08-12 15:13:50 +0300
commit886768a699160e4228462f05e8313401aeac3cab (patch)
treededc9904b6217aadd4d3148590ecca3d7344e01a
parent223d6238918b99d0456f3ce444bc84065d179085 (diff)
CMake: correct linking order regression
Library sorting from [0] caused WITH_GPU_BUILDTIME_SHADER_BUILDER to fail. It's possible there are missing dependencies that caused the change in order to break, for now revert that change. [0]: 19b5524d1c0c1c2ee78a8a75b8703b7cc72a8671
-rw-r--r--source/blender/gpu/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/CMakeLists.txt b/source/blender/gpu/CMakeLists.txt
index ff12ae5054a..65a6a2dc6b7 100644
--- a/source/blender/gpu/CMakeLists.txt
+++ b/source/blender/gpu/CMakeLists.txt
@@ -645,9 +645,9 @@ if(WITH_GPU_BUILDTIME_SHADER_BUILDER)
endif()
target_link_libraries(shader_builder PUBLIC
- bf_blenlib
bf_gpu
bf_intern_clog
+ bf_blenlib
bf_intern_ghost
${PLATFORM_LINKLIBS}
)