mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 18:34:06 +00:00
18c3d9c72d
We will also maintain the Makefile for basic building. This is for more complicated stuff, like building the project on command line with Visual Studio.
19 lines
317 B
Python
19 lines
317 B
Python
""" Build Kvazaa
|
|
"""
|
|
|
|
import os
|
|
|
|
Import('env')
|
|
|
|
sources = []
|
|
sources += env.Glob('*.c')
|
|
sources += env.Glob('extras/*.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')
|