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 <ideasman42@gmail.com>2010-12-06 13:56:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-06 13:56:37 +0300
commitd64f46e0bbdd390b2b5487f09638402e7bdfe0e4 (patch)
treec775bb6b390ba0ac1bc8a906a9d908f51dd07716 /source/creator
parent357826aa6e18c3af1625223656d748b92db86696 (diff)
CMake: use a global list to store libraries built rather then cmake_blender_libs.txt file.
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 9a94b49c5c2..7b9d8421aa5 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -457,7 +457,7 @@ ENDIF(WITH_INSTALL)
ADD_DEPENDENCIES(blender makesdna)
-FILE(READ ${CMAKE_BINARY_DIR}/cmake_blender_libs.txt BLENDER_LINK_LIBS)
+GET_PROPERTY(BLENDER_LINK_LIBS GLOBAL PROPERTY BLENDER_LINK_LIBS)
SET(BLENDER_LINK_LIBS bf_nodes ${BLENDER_LINK_LIBS} bf_windowmanager bf_render)