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: 8cceecc5f9f40235b36b2e636564d6d2c1516f50 (plain)
1
2
3
4
5
6
7
8
9
10
Import ('user_options_dict')
Import ('library_env')

string_env = library_env.Copy ()

source_files = ['intern/STR_String.cpp']

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

string_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_STR', source=source_files)