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

SConscript « container « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b45a2af07e1b80fc4331157b3491ee76e5cee1aa (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python
Import ('user_options_dict')
Import ('library_env')

cont_env = library_env.Copy ()

source_files = ['intern/CTR_List.cpp']

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

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