[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [11577] branches/soc-2007-mosani/source/ blender/render/render_api: This is a part of two commits to reorganize the

Aaron Moore two.a.ron at gmail.com
Tue Aug 14 00:57:33 CEST 2007


Revision: 11577
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11577
Author:   mosani
Date:     2007-08-14 00:57:32 +0200 (Tue, 14 Aug 2007)

Log Message:
-----------
This is a part of two commits to  reorganize the
 render API plugins slightly.

Modified Paths:
--------------
    branches/soc-2007-mosani/source/blender/render/render_api/plugins/aqsis_plugin/SConstruct

Added Paths:
-----------
    branches/soc-2007-mosani/source/blender/render/render_api/plugins/
    branches/soc-2007-mosani/source/blender/render/render_api/plugins/aqsis_plugin/

Removed Paths:
-------------
    branches/soc-2007-mosani/source/blender/render/render_api/aqsis_plugin/

Copied: branches/soc-2007-mosani/source/blender/render/render_api/plugins/aqsis_plugin (from rev 11555, branches/soc-2007-mosani/source/blender/render/render_api/aqsis_plugin)

Modified: branches/soc-2007-mosani/source/blender/render/render_api/plugins/aqsis_plugin/SConstruct
===================================================================
--- branches/soc-2007-mosani/source/blender/render/render_api/aqsis_plugin/SConstruct	2007-08-12 04:03:00 UTC (rev 11555)
+++ branches/soc-2007-mosani/source/blender/render/render_api/plugins/aqsis_plugin/SConstruct	2007-08-13 22:57:32 UTC (rev 11577)
@@ -6,7 +6,7 @@
 library_name = "aqsis"
 library_sources = ["aqsis.c"]
 
-include_paths = [".", "../../../blenpluginapi", "../include", "../../../makesdna"]
+include_paths = [".", "../../../../blenpluginapi", "../../include", "../../../../makesdna"]
 compiler_flags = '-g'
 linker_flags = '-g'
 
@@ -29,6 +29,7 @@
 # COMPILE #
 ###########
 
-env.SharedLibrary( library_name, library_sources )
+lib = env.SharedLibrary( library_name, library_sources )
+env.Install( '../', lib )
+env.Alias( 'install', '../' )
 
-





More information about the Bf-blender-cvs mailing list