From b8f72ee56b2b6906f21538f4c319148a4757d997 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Thu, 3 Dec 2015 20:52:28 -0800 Subject: [PATCH] fix bad --no-extras option for InverseDynamcis --- build3/premake4.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build3/premake4.lua b/build3/premake4.lua index 38519f640..5d6683b92 100644 --- a/build3/premake4.lua +++ b/build3/premake4.lua @@ -228,7 +228,7 @@ -- include "../test/hello_gtest" include "../test/collision" if not _OPTIONS["no-bullet3"] then - if _OPTIONS["no-extras"] then + if not _OPTIONS["no-extras"] then include "../test/InverseDynamics" end include "../test/TestBullet3OpenCL"