12 lines
254 B
Python
12 lines
254 B
Python
def options(opt):
|
|
opt.load("compiler_cxx")
|
|
|
|
def configure(cnf):
|
|
cnf.load("compiler_cxx")
|
|
|
|
def build(bld):
|
|
bld(features = "cxx cxxprogram",
|
|
target = "svi",
|
|
source = bld.path.ant_glob("src/**/*.cc"),
|
|
cflags = ["-Wall"])
|