From 5112de3e3f1e1ff1a50be4a08278ac9a245f226c Mon Sep 17 00:00:00 2001 From: Benjamin Ellenberger Date: Mon, 11 Jul 2016 21:50:32 +0200 Subject: [PATCH] Fix premake.lua missing includes. --------------------------------------------------------------------- Due to using Cmake for the creation of the example, the premake.lua file was not correctly updated. This commit adds the missing includes by including all files using a wildcard. --- examples/ExampleBrowser/premake4.lua | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/examples/ExampleBrowser/premake4.lua b/examples/ExampleBrowser/premake4.lua index 82c63e64d..44d56411a 100644 --- a/examples/ExampleBrowser/premake4.lua +++ b/examples/ExampleBrowser/premake4.lua @@ -86,13 +86,7 @@ project "App_BulletExampleBrowser" "../InverseDynamics/InverseDynamicsExample.h", "../BasicDemo/BasicExample.*", "../Tutorial/*", - "../ExtendedTutorials/SimpleBox.cpp", - "../ExtendedTutorials/MultipleBoxes.cpp", - "../ExtendedTutorials/SimpleJoint.cpp", - "../ExtendedTutorials/SimpleCloth.cpp", - "../ExtendedTutorials/Chain.cpp", - "../ExtendedTutorials/Bridge.cpp", - "../ExtendedTutorials/RigidBodyFromObj.cpp", + "../ExtendedTutorials/*", "../Collision/*", "../Collision/Internal/*", "../Benchmarks/*",