| 1234567891011121314151617181920212223242526272829303132 |
- 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")
|