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-17 07:41:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-17 07:41:48 +0300
commit5c621bd7f5a2647547b8a18eccce8fa1dee47500 (patch)
treedbfe93266622387d867b3f1e3b25e49cbc9d12a2 /source/blenderplayer
parent61a7c8d4ae0e92dc2f56df1cd157b3ba52f59c1b (diff)
cmake was complaining when there was no libs skipped.
Diffstat (limited to 'source/blenderplayer')
-rw-r--r--source/blenderplayer/CMakeLists.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blenderplayer/CMakeLists.txt b/source/blenderplayer/CMakeLists.txt
index 53397070be8..eecb67e8882 100644
--- a/source/blenderplayer/CMakeLists.txt
+++ b/source/blenderplayer/CMakeLists.txt
@@ -144,8 +144,10 @@ if(UNIX)
list(REMOVE_ITEM BLENDER_SORTED_LIBS ${REMLIB})
endif()
endforeach()
- list(SORT REM_MSG)
- message(STATUS "Player Skipping: (${REM_MSG})")
+ if(REM_MSG)
+ list(SORT REM_MSG)
+ message(STATUS "Player Skipping: (${REM_MSG})")
+ endif()
target_link_libraries(blenderplayer ${BLENDER_SORTED_LIBS})
else()
target_link_libraries(blenderplayer ${BLENDER_LINK_LIBS})