From 3cd5e2a8899eba431fa7a37e07c6c6411b5f3606 Mon Sep 17 00:00:00 2001 From: klickverbot Date: Wed, 3 Mar 2010 14:05:09 +0000 Subject: [PATCH] Removed obsolete SCons workspace. git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@571 67173fc5-114c-0410-ac8e-9d2fd5bffc1f --- workspaces/SCons/SConstruct | 53 ------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 workspaces/SCons/SConstruct diff --git a/workspaces/SCons/SConstruct b/workspaces/SCons/SConstruct deleted file mode 100644 index adb8dcdcf..000000000 --- a/workspaces/SCons/SConstruct +++ /dev/null @@ -1,53 +0,0 @@ -#------------------------------------------------------------------------------ -# ASSIMP scons build file -# -#------------------------------------------------------------------------------ -import sys - -#------------------------------------------------------------------------------ -g_LibPath = Split(""" - ./ - /usr/lib/ - /usr/local/lib/ -""") -#------------------------------------------------------------------------------ -g_IncPath = Split(""" - ../../code/ - /usr/include/ - /usr/local/include/ -""") -#------------------------------------------------------------------------------ -g_assimp_lib_Source = Glob(r"../../code/*.cpp") + Glob(r"../../contrib/irrXML/*.cpp") + Glob(r"../../contrib/zlib/*.c") + Glob(r"../../code/extra/*.cpp") + Glob(r"../../contrib/ConvertUTF/*.c") - -#------------------------------------------------------------------------------ -# don't reset CC/CXX-variable, other users might have set it to something special -#------------------------------------------------------------------------------ -ccflags = '-pipe' - -if ARGUMENTS.get('debug', 0): - print "Using Debug Build!" - ccflags = ccflags + ' -g -pg -Wall -pedantic ' -else: - ccflags = ccflags + ' -Os -fno-strict-aliasing -msse -Wall -pedantic' - -if ARGUMENTS.get('noboost', 0): - ccflags = ccflags + ' -DASSIMP_BUILD_BOOST_WORKAROUND ' - -env = Environment(CCFLAGS = ccflags, CPPPATH = g_IncPath, LIBPATH=g_LibPath) -conf = Configure( env ) - -#if not conf.CheckCHeader( "boost/thread/thread.hpp" ): -# print "Boost must be installed!" -# Exit( 1 ) -env = conf.Finish() - -# Build library - -if ARGUMENTS.get("shared",0): - env.SharedLibrary(target = "assimp", source = g_assimp_lib_Source, - LIBPATH = g_LibPath) - -else: - env.StaticLibrary(target = "assimp", source = g_assimp_lib_Source, - LIBPATH = g_LibPath) -