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]: 19b5524d1c
This commit is contained in:
Campbell Barton 2022-08-12 22:13:50 +10:00
parent 223d623891
commit 886768a699
1 changed files with 1 additions and 1 deletions

View File

@ -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}
)