33 lines
447 B
Lua
33 lines
447 B
Lua
function createProject(vendor)
|
|
hasCL = findOpenCL(vendor)
|
|
|
|
if (hasCL) then
|
|
|
|
project ("Bullet3OpenCL_" .. vendor)
|
|
|
|
initOpenCL(vendor)
|
|
|
|
kind "StaticLib"
|
|
|
|
if os.is("Linux") then
|
|
buildoptions{"-fPIC"}
|
|
end
|
|
|
|
includedirs {
|
|
".",".."
|
|
}
|
|
|
|
files {
|
|
"**.cpp",
|
|
"**.h"
|
|
}
|
|
|
|
end
|
|
end
|
|
|
|
createProject("clew")
|
|
createProject("AMD")
|
|
createProject("Intel")
|
|
createProject("NVIDIA")
|
|
createProject("Apple")
|