wscript: remove useless features

This commit is contained in:
Alibek Omarov
2024-10-23 23:20:47 +03:00
parent ba2191172d
commit a15c1f99b2
18 changed files with 11 additions and 22 deletions

View File

@@ -16,9 +16,8 @@ def build(bld):
if bld.env.DISABLE_UTILS_MDLDEC:
return
bld(source = bld.path.ant_glob('*.c'),
bld.program(source = bld.path.ant_glob('*.c'),
target = 'mdldec',
features = 'c cprogram',
includes = '.',
use = 'engine_includes public M werror',
install_path = bld.env.BINDIR,

View File

@@ -19,10 +19,9 @@ def add_runner_target(bld, lib, func):
source = bld.path.ant_glob('*.c')
includes = '.'
bld(
bld.program(
source = source,
target = 'run-fuzzer-' + func,
features = 'c cprogram',
includes = includes,
use = 'DL werror',
defines = ['FUNC="Fuzz_' + func + '"', 'LIB="' + lib + '"'],

View File

@@ -9,9 +9,8 @@ def configure(conf):
pass
def build(bld):
bld(source = bld.path.ant_glob('*.c'),
bld.program(source = bld.path.ant_glob('*.c'),
target = 'xar',
features = 'c cprogram',
includes = '.',
use = 'public filesystem_includes werror',
rpath = bld.env.DEFAULT_RPATH,