Tizen 2.1 base
[platform/upstream/libbullet.git] / Extras / RigidBodyGpuPipeline / opencl / integration / Intel / premake4.lua
1         
2         hasCL = findOpenCL_Intel()
3         
4         if (hasCL) then
5
6                 project "OpenCL_integration_Intel"
7
8                 initOpenCL_Intel()
9         
10                 language "C++"
11                                 
12                 kind "ConsoleApp"
13                 targetdir "../../../bin"
14
15
16                 initOpenGL()
17                 initGlut()
18                 initGlew()
19
20
21                         includedirs {
22                 "../../../rendering/BulletMath",
23                 "../../primitives"
24                 }
25                 
26                 files {
27                         "../main.cpp",
28                         "../../basic_initialize/btOpenCLUtils.cpp",
29                         "../../basic_initialize/btOpenCLUtils.h",
30                         "../../opengl_interop/btOpenCLGLInteropBuffer.cpp",
31                         "../../opengl_interop/btOpenCLGLInteropBuffer.h",
32                         "../../opengl_interop/btStopwatch.cpp",
33                         "../../opengl_interop/btStopwatch.h"
34                 }
35                 
36         end