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

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

sources = 'gen_messaging/intern/messaging.c gen_system/GEN_HashedPtr.cpp'
sources += ' gen_system/GEN_Matrix4x4.cpp gen_system/SYS_SingletonSystem.cpp'
sources += ' gen_system/SYS_System.cpp'

incs = 'gen_messaging gen_system #/intern/string #/intern/moto/include #/source/blender/blenloader '

env.BlenderLib ( 'bf_kernel', Split(sources), Split(incs), [], libtype = ['core', 'player'], priority = [400, 150] )