From 8561ccb6cb27520684dc190c4c1bf222c43f500c Mon Sep 17 00:00:00 2001 From: sephiroth99 Date: Tue, 22 Sep 2015 00:01:53 -0400 Subject: [PATCH] Build testbed only on Windows. Do not build testbed under any other OS than Windows. Also the testbed project has mixed C++ and C files, which does not build under the current Linux build framework (premake and clang). --- premake5.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/premake5.lua b/premake5.lua index 1a17765..5dd3b15 100644 --- a/premake5.lua +++ b/premake5.lua @@ -14,4 +14,6 @@ project("elemental-forms") }) recursive_platform_files("src/") -include("testbed") +if os.is("windows") then + include("testbed") +end