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-16 15:48:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-16 15:48:30 +0300
commit566bda734acdb45f6f3244e9d1d96817dca5ff14 (patch)
treee8612f8e8cf5b213e26cbb51b2b3f70f7eda0a0e /source/blenderplayer
parentd3070ad9acbc416f416fac567d651f763a31e31d (diff)
last commit to fix warnings didnt set them at all, not it works as it should.
also made cmakes output a lot quieter, messages can be uncommented for debugging or added back if other devs need this for some reason.
Diffstat (limited to 'source/blenderplayer')
-rw-r--r--source/blenderplayer/CMakeLists.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blenderplayer/CMakeLists.txt b/source/blenderplayer/CMakeLists.txt
index 46a1d41d098..53397070be8 100644
--- a/source/blenderplayer/CMakeLists.txt
+++ b/source/blenderplayer/CMakeLists.txt
@@ -24,7 +24,7 @@
#
# ***** END GPL LICENSE BLOCK *****
-message(STATUS "Configuring blenderplayer")
+# message(STATUS "Configuring blenderplayer")
setup_libdirs()
@@ -139,11 +139,13 @@ if(UNIX)
endif()
endforeach()
if(REMLIB)
- message(STATUS "Removing library ${REMLIB} from blenderplayer linking because: not configured")
+ # message(STATUS "Removing library ${REMLIB} from blenderplayer linking because: not configured")
+ list(APPEND REM_MSG ${REMLIB})
list(REMOVE_ITEM BLENDER_SORTED_LIBS ${REMLIB})
endif()
endforeach()
-
+ list(SORT REM_MSG)
+ message(STATUS "Player Skipping: (${REM_MSG})")
target_link_libraries(blenderplayer ${BLENDER_SORTED_LIBS})
else()
target_link_libraries(blenderplayer ${BLENDER_LINK_LIBS})