[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [18730] branches/blender2.5/blender/source : Added CMake files needed for new blenfont module.

Nicholas Bishop nicholasbishop at gmail.com
Thu Jan 29 07:35:37 CET 2009


Revision: 18730
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=18730
Author:   nicholasbishop
Date:     2009-01-29 07:35:04 +0100 (Thu, 29 Jan 2009)

Log Message:
-----------
Added CMake files needed for new blenfont module.

Note to bdiego: this module seems to depend on ftfont, which is only compiled with the INTERNATIONAL build setting, however it seems blenfont should work regardless of that setting.

Modified Paths:
--------------
    branches/blender2.5/blender/source/blender/CMakeLists.txt
    branches/blender2.5/blender/source/blender/editors/CMakeLists.txt
    branches/blender2.5/blender/source/blender/windowmanager/CMakeLists.txt
    branches/blender2.5/blender/source/creator/CMakeLists.txt

Added Paths:
-----------
    branches/blender2.5/blender/source/blender/blenfont/CMakeLists.txt

Modified: branches/blender2.5/blender/source/blender/CMakeLists.txt
===================================================================
--- branches/blender2.5/blender/source/blender/CMakeLists.txt	2009-01-29 05:19:27 UTC (rev 18729)
+++ branches/blender2.5/blender/source/blender/CMakeLists.txt	2009-01-29 06:35:04 UTC (rev 18730)
@@ -24,7 +24,7 @@
 #
 # ***** END GPL LICENSE BLOCK *****
 
-SUBDIRS(windowmanager editors avi nodes blenkernel blenlib blenloader blenpluginapi imbuf imbuf/intern/cineon gpu makesdna makesrna radiosity readblenfile render)
+SUBDIRS(windowmanager editors avi nodes blenkernel blenlib blenloader blenpluginapi imbuf imbuf/intern/cineon gpu makesdna makesrna radiosity readblenfile render blenfont)
 
 IF(WITH_INTERNATIONAL)
   SUBDIRS(ftfont)

Added: branches/blender2.5/blender/source/blender/blenfont/CMakeLists.txt
===================================================================
--- branches/blender2.5/blender/source/blender/blenfont/CMakeLists.txt	                        (rev 0)
+++ branches/blender2.5/blender/source/blender/blenfont/CMakeLists.txt	2009-01-29 06:35:04 UTC (rev 18730)
@@ -0,0 +1,34 @@
+# $Id $
+# ***** BEGIN GPL LICENSE BLOCK *****
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+# The Original Code is Copyright (C) 2008, Blender Foundation
+# All rights reserved.
+#
+# The Original Code is: all of this file.
+#
+# ***** END GPL LICENSE BLOCK *****
+
+FILE(GLOB SRC intern/*.c)
+
+#SET(INC . intern ../../../intern/guardedalloc ../blenlib ../blenkernel ../makedna
+
+SET(INC 
+  ../../../intern/guardedalloc ../blenlib ../makesdna
+  ../blenkernel ../ftfont
+)
+
+BLENDERLIB(bf_blenfont "${SRC}" "${INC}")
\ No newline at end of file

Modified: branches/blender2.5/blender/source/blender/editors/CMakeLists.txt
===================================================================
--- branches/blender2.5/blender/source/blender/editors/CMakeLists.txt	2009-01-29 05:19:27 UTC (rev 18729)
+++ branches/blender2.5/blender/source/blender/editors/CMakeLists.txt	2009-01-29 06:35:04 UTC (rev 18730)
@@ -38,6 +38,7 @@
   ../../../intern/ghost ../../../intern/opennl/extern ../../../extern/glew/include
   ../nodes
   ../gpu
+  ../blenfont
   ${SDL_INC}
 )
 

Modified: branches/blender2.5/blender/source/blender/windowmanager/CMakeLists.txt
===================================================================
--- branches/blender2.5/blender/source/blender/windowmanager/CMakeLists.txt	2009-01-29 05:19:27 UTC (rev 18729)
+++ branches/blender2.5/blender/source/blender/windowmanager/CMakeLists.txt	2009-01-29 06:35:04 UTC (rev 18730)
@@ -38,6 +38,7 @@
   ../../../intern/ghost ../../../intern/opennl/extern ../../../extern/glew/include
   ../nodes
   ../gpu
+  ../blenfont
   ${SDL_INC}
 )
 

Modified: branches/blender2.5/blender/source/creator/CMakeLists.txt
===================================================================
--- branches/blender2.5/blender/source/creator/CMakeLists.txt	2009-01-29 05:19:27 UTC (rev 18729)
+++ branches/blender2.5/blender/source/creator/CMakeLists.txt	2009-01-29 06:35:04 UTC (rev 18730)
@@ -274,6 +274,7 @@
     bf_videotex
     bf_rna
     bf_dna
+    bf_blenfont
   )
 
   FOREACH(SORTLIB ${BLENDER_SORTED_LIBS})





More information about the Bf-blender-cvs mailing list