add basic CPU multi threading files from Bullet 2.x (still need to make it work)

This commit is contained in:
erwincoumans
2013-07-16 18:16:54 -07:00
parent 20f9e41ff0
commit b448e56a51
10 changed files with 1762 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
project "App_ThreadingTest"
kind "ConsoleApp"
-- defines { }
targetdir "../../bin"
includedirs
{
".","../../src"
}
links { "Bullet3Common" }
files {
"**.cpp",
"**.h"
}
if os.is("Windows") then
--links {"winmm"}
--defines {"__WINDOWS_MM__", "WIN32"}
end
if os.is("Linux") then
links {"pthread"}
end
if os.is("MacOSX") then
links {"pthread"}
--links{"CoreAudio.framework", "coreMIDI.framework", "Cocoa.framework"}
--defines {"__MACOSX_CORE__"}
end