Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « string « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abb02653e35098a087152b2ff94d6533d683b61a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
string_env = Environment ()

# Import the C flags set in the SConstruct file
Import ('cflags')
Import ('cxxflags')
Import ('defines')
string_env.Append (CCFLAGS = cflags)
string_env.Append (CXXFLAGS = cxxflags)
string_env.Append (CPPDEFINES = defines)

source_files = ['intern/STR_String.cpp']

string_env.Append (CPPPATH = ['.'])

string_env.Library (target='#/lib/blender_STR', source=source_files)