This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/intern/sph/SConscript

12 lines
221 B
Python

#!/usr/bin/python
import sys
import os
Import('env')
sources = env.Glob('intern/*.cpp')
incs = ' . extern intern'
defs = ''
env.BlenderLib ('bf_sph', sources, Split(incs), Split(defs), libtype='blender', priority=0 )