[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51012] trunk/blender/CMakeLists.txt: fix for cmake constructing an invalid include path.

Campbell Barton ideasman42 at gmail.com
Wed Oct 3 07:49:22 CEST 2012


Revision: 51012
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51012
Author:   campbellbarton
Date:     2012-10-03 05:49:22 +0000 (Wed, 03 Oct 2012)
Log Message:
-----------
fix for cmake constructing an invalid include path.

Modified Paths:
--------------
    trunk/blender/CMakeLists.txt

Modified: trunk/blender/CMakeLists.txt
===================================================================
--- trunk/blender/CMakeLists.txt	2012-10-02 16:39:37 UTC (rev 51011)
+++ trunk/blender/CMakeLists.txt	2012-10-03 05:49:22 UTC (rev 51012)
@@ -569,7 +569,7 @@
 		# lame, but until we have proper find module for ffmpeg
 		set(FFMPEG_INCLUDE_DIRS ${FFMPEG}/include)
 		if(EXISTS "${FFMPEG}/include/ffmpeg/")
-			set(FFMPEG_INCLUDE_DIRS "${FFMPEG_INCLUDE_DIRS} ${FFMPEG}/include/ffmpeg")
+			list(APPEND FFMPEG_INCLUDE_DIRS "${FFMPEG}/include/ffmpeg")
 		endif()
 		# end lameness
 




More information about the Bf-blender-cvs mailing list