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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-02-20 16:07:27 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-02-20 16:07:27 +0400
commitea99b9a392bddec4ea58b816b1fb66f78c77ff6e (patch)
treec5aac6935b025192a519d2a8fe141593d1bff538 /source/creator
parent705d2ab417688976a50897d098ad25ab3ef3e6c8 (diff)
Made ldl code a part of extern_ssba library, otherwise gcc fails to
find ldl symbols because order of libraries seems to be critical for gcc linker. A bit stupid, but that's how linker works.. Both CMake and SCons shall work fine on linux now.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index a5d7763487f..bb10bdd0bae 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -923,8 +923,8 @@ endif()
if(WITH_LIBMV)
list(APPEND BLENDER_SORTED_LIBS extern_libmv)
- list(APPEND BLENDER_SORTED_LIBS extern_ceres)
list(APPEND BLENDER_SORTED_LIBS extern_ssba)
+ list(APPEND BLENDER_SORTED_LIBS extern_ceres)
endif()
if(WITH_MOD_CLOTH_ELTOPO)