From: <sv...@ww...> - 2005-11-27 17:55:27
|
Author: mkrose Date: 2005-11-27 09:55:11 -0800 (Sun, 27 Nov 2005) New Revision: 1686 Added: trunk/CSP/csp/lib/spatial/SConscript Log: Add build script for quadtree. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1686 Added: trunk/CSP/csp/lib/spatial/SConscript =================================================================== --- trunk/CSP/csp/lib/spatial/SConscript 2005-11-27 17:52:31 UTC (rev 1685) +++ trunk/CSP/csp/lib/spatial/SConscript 2005-11-27 17:55:11 UTC (rev 1686) @@ -0,0 +1,27 @@ +# -*- python -*- +# +# Copyright 2005 Mark Rose <mk...@us...> +# +# 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 + +Import('env build') + +SOURCES = [ + 'QuadTree.cpp', +] + +OBJECTS = build.Apply(env.SharedObject, SOURCES) +Return('OBJECTS') + |