[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [19128] trunk/blender: build blenderplayer without opennl and decimation

Campbell Barton ideasman42 at gmail.com
Thu Feb 26 13:44:07 CET 2009


Revision: 19128
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=19128
Author:   campbellbarton
Date:     2009-02-26 13:43:24 +0100 (Thu, 26 Feb 2009)

Log Message:
-----------
build blenderplayer without opennl and decimation

Modified Paths:
--------------
    trunk/blender/intern/decimation/SConscript
    trunk/blender/intern/opennl/SConscript
    trunk/blender/source/blender/blenkernel/bad_level_call_stubs/stubs.c

Modified: trunk/blender/intern/decimation/SConscript
===================================================================
--- trunk/blender/intern/decimation/SConscript	2009-02-26 09:14:10 UTC (rev 19127)
+++ trunk/blender/intern/decimation/SConscript	2009-02-26 12:43:24 UTC (rev 19128)
@@ -5,4 +5,4 @@
 
 incs = '. ../moto/include ../container ../memutil'
 
-env.BlenderLib ('bf_decimation', sources, Split(incs) , [], libtype=['core','common','player'], priority = [10, 20, 25] )
+env.BlenderLib ('bf_decimation', sources, Split(incs) , [], libtype=['core','common'], priority = [10, 20] )

Modified: trunk/blender/intern/opennl/SConscript
===================================================================
--- trunk/blender/intern/opennl/SConscript	2009-02-26 09:14:10 UTC (rev 19127)
+++ trunk/blender/intern/opennl/SConscript	2009-02-26 12:43:24 UTC (rev 19128)
@@ -6,7 +6,7 @@
 incs = 'extern superlu'
 
 if (env['OURPLATFORM'] == 'win32-mingw'):
-    env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype=['core','intern','player'], priority=[1,80,22] )
+    env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype=['core','intern'], priority=[1,80] )
 else:
-    env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype=['core','player'], priority=[55,22] )
+    env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype=['core'], priority=[55] )
 

Modified: trunk/blender/source/blender/blenkernel/bad_level_call_stubs/stubs.c
===================================================================
--- trunk/blender/source/blender/blenkernel/bad_level_call_stubs/stubs.c	2009-02-26 09:14:10 UTC (rev 19127)
+++ trunk/blender/source/blender/blenkernel/bad_level_call_stubs/stubs.c	2009-02-26 12:43:24 UTC (rev 19128)
@@ -242,6 +242,12 @@
 /* booleanops.c */
 struct DerivedMesh *NewBooleanDerivedMesh(struct Object *ob, struct Object *ob_select, int int_op_type) { return 0; }
 
+/* LOD_decimation.cpp */
+int LOD_LoadMesh(struct LOD_Decimation_Info* info) { return 0;};
+int LOD_PreprocessMesh(struct LOD_Decimation_Info* info) {return 0;};
+int LOD_CollapseEdge(struct LOD_Decimation_Info* info) {return 0;};
+int LOD_FreeDecimationData(struct LOD_Decimation_Info* info) {return 0;};
+	
 // bobj read/write debug messages
 void elbeemDebugOut(char *msg) {}
 void fluidsimSettingsFree(struct FluidsimSettings* sb) {}





More information about the Bf-blender-cvs mailing list