summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wscript_build.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/wscript_build.py b/wscript_build.py
index 3e3ec0be6f..d4f07fbaa6 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -483,11 +483,12 @@ def build(ctx):
if ctx.dependency_satisfied('test'):
for test in ctx.path.ant_glob("test/*.c"):
ctx(
- target = os.path.splitext(test.srcpath())[0],
- source = test.srcpath(),
- use = ctx.dependencies_use() + ['objects'],
- includes = _all_includes(ctx),
- features = "c cprogram",
+ target = os.path.splitext(test.srcpath())[0],
+ source = test.srcpath(),
+ use = ctx.dependencies_use() + ['objects'],
+ includes = _all_includes(ctx),
+ features = "c cprogram",
+ install_path = None,
)
build_shared = ctx.dependency_satisfied('libmpv-shared')