create basic audio, towards sound sensors etc.

This commit is contained in:
Erwin Coumans
2017-04-14 12:22:38 -07:00
parent fec96ab17f
commit eef76af663
11 changed files with 11788 additions and 2 deletions

View File

@@ -158,11 +158,15 @@ end
description = "Double precision version of Bullet"
}
newoption
{
trigger = "audio",
description = "Enable audio"
}
if _OPTIONS["double"] then
defines {"BT_USE_DOUBLE_PRECISION"}
end
configurations {"Release", "Debug"}
configuration "Release"
flags { "Optimize", "EnableSSE2","StaticRuntime", "NoMinimalRebuild", "FloatFast"}
@@ -251,6 +255,10 @@ end
language "C++"
if _OPTIONS["audio"] then
include "../examples/TinyAudio"
end
if not _OPTIONS["no-demos"] then
include "../examples/ExampleBrowser"
include "../examples/RobotSimulator"