[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [10733] trunk/blender/source/creator/ CMakeLists.txt: Disable copying plugins, et al, to the CMake bin directory -- the

Chris Want cwant at ualberta.ca
Fri May 18 17:57:41 CEST 2007


Revision: 10733
          https://svn.blender.org//revision/?rev=10733&view=rev
Author:   hos
Date:     2007-05-18 17:57:40 +0200 (Fri, 18 May 2007)

Log Message:
-----------
Disable copying plugins, et al, to the CMake bin directory -- the
.svn directory would get copied and it has some files that are
write protected, which means that the build would fail the second
time you run make. Needs a better solution.

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

Modified: trunk/blender/source/creator/CMakeLists.txt
===================================================================
--- trunk/blender/source/creator/CMakeLists.txt	2007-05-18 11:50:04 UTC (rev 10732)
+++ trunk/blender/source/creator/CMakeLists.txt	2007-05-18 15:57:40 UTC (rev 10733)
@@ -76,8 +76,8 @@
   ADD_CUSTOM_COMMAND(TARGET blender
     POST_BUILD
     MAIN_DEPENDENCY blender
-    COMMAND cp -R ${CMAKE_SOURCE_DIR}/release/plugins ${TARGETDIR}/
-    COMMAND cp -R ${CMAKE_SOURCE_DIR}/release/text/* ${TARGETDIR}/
+    #COMMAND cp -R ${CMAKE_SOURCE_DIR}/release/plugins ${TARGETDIR}/
+    #COMMAND cp -R ${CMAKE_SOURCE_DIR}/release/text/* ${TARGETDIR}/
   )
 ENDIF(UNIX)
 





More information about the Bf-blender-cvs mailing list