mix physics client/server into a single example for easier/faster development of shared memory experiment

add premake option to choose targetdir for binaries/libraries
add simple hinge.urdf file
This commit is contained in:
erwin coumans
2015-07-15 12:57:45 -07:00
parent a6fa717dac
commit 259bcb1989
8 changed files with 285 additions and 6 deletions

View File

@@ -66,6 +66,13 @@
description = "Enable Lua scipting support in Example Browser"
}
newoption {
trigger = "targetdir",
value = "path such as ../bin",
description = "Set the output location for the generated project files"
}
newoption
{
trigger = "without-gtest",
@@ -129,7 +136,9 @@
-- comment-out for now, URDF reader needs exceptions
-- flags { "NoRTTI", "NoExceptions"}
-- defines { "_HAS_EXCEPTIONS=0" }
targetdir "../bin"
--printf ( _OPTIONS["targetdir"] )
targetdir( _OPTIONS["targetdir"] or "../bin" )
location("./" .. act .. postfix)