uvg266/src/SConscript
Ari Koivula 1de102be61 Move strategies to their own compilation units.
- Enforces a little bit more hierarchy. Compilation units are in strategies
  and whatever inline includes they have are in a folder with the same name
  as the strategy.
2014-06-13 15:30:23 +03:00

20 lines
355 B
Python

""" Build Kvazaa
"""
import os
Import('env')
sources = []
sources += env.Glob('*.c')
sources += env.Glob('extras/*.c')
sources += env.Glob('strategies/*.c')
sources += env.Glob('x86/*.asm')
env.Depends('x86/cpu.asm', 'x86/x86inc.asm')
prog = env.Program('kvazaar', sources)
env.Clean(prog, '.') # Remove variant_dir with 'scons -c'.
Return('prog')