add --serial option in premake, added serial library to test vr glove in C++ (pybullet works already fine)

This commit is contained in:
Erwin Coumans
2017-05-01 15:04:00 -07:00
parent af6bf8ddc8
commit 305725e52e
16 changed files with 4302 additions and 0 deletions

View File

@@ -158,6 +158,12 @@ end
description = "Double precision version of Bullet"
}
newoption
{
trigger = "serial",
description = "Enable serial, for testing the VR glove in C++"
}
newoption
{
trigger = "audio",
@@ -259,6 +265,10 @@ end
include "../examples/TinyAudio"
end
if _OPTIONS["serial"] then
include "../examples/ThirdPartyLibs/serial"
end
if not _OPTIONS["no-demos"] then
include "../examples/ExampleBrowser"
include "../examples/RobotSimulator"