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

SConscript « collada « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a1c71c9c8639faf10560dbef55fc4a48c32699c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python
Import ('env')

sources = env.Glob('*.cpp')

# relative paths to include dirs, space-separated, string
if  env['OURPLATFORM']=='darwin':
	incs = '../blenlib ../blenkernel ../windowmanager ../makesdna ../makesrna ../editors/include ../../../intern/guardedalloc [OPENCOLLADA]/COLLADAStreamWriter [OPENCOLLADA]/COLLADABaseUtils [OPENCOLLADA]/COLLADAFramework [OPENCOLLADA]/COLLADASaxFrameworkLoader '.replace('[OPENCOLLADA]', env['BF_OPENCOLLADA_INC'])
else:
	incs = '../blenlib ../blenkernel ../windowmanager ../makesdna ../makesrna ../editors/include ../../../intern/guardedalloc [OPENCOLLADA]/COLLADAStreamWriter/include [OPENCOLLADA]/COLLADABaseUtils/include [OPENCOLLADA]/COLLADAFramework/include [OPENCOLLADA]/COLLADASaxFrameworkLoader/include '.replace('[OPENCOLLADA]', env['BF_OPENCOLLADA_INC'])

env.BlenderLib ('bf_collada', sources, Split(incs), [], libtype='core', priority=200 )