From 0cd38f219805b27c8b25fd0582459c91db7c8328 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 15 Jan 2017 20:53:39 -0500 Subject: [PATCH] add -include iostream when building tests so debug prints can easily be put in anytime --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 64aaa94..7a37a68 100644 --- a/wscript +++ b/wscript @@ -52,6 +52,6 @@ def build(bld): includes = test_includes, defines = test_defines, lib = test_libs, - cxxflags = ["-Wall", "-std=gnu++14", "--coverage", "-Wno-switch"], + cxxflags = ["-Wall", "-std=gnu++14", "--coverage", "-Wno-switch", "-include", "iostream"], linkflags = ["--coverage"], uselib = ["SDL2", "FreeType2"])