* small code change from Split to env.Glob()

This commit is contained in:
Nathan Letwory
2008-10-19 13:51:52 +00:00
parent f76a742dc0
commit 4d4fd5687f

View File

@@ -1,7 +1,7 @@
#!/usr/bin/python
Import ('env')
sources = Split('BPY_interface.c BPY_menus.c') + env.Glob('api2_2x/*.c')
sources = env.Glob('*.c') + env.Glob('api2_2x/*.c')
incs = 'api2_2x ../blenkernel ../nodes ../blenlib ../blenloader'
incs += ' ../render/extern/include ../radiosity/extern/include'