12 lines
272 B
Python
12 lines
272 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"),
|
|
cxxflags = ["-Wall", "-std=gnu++14"])
|