33 lines
556 B
Lua
33 lines
556 B
Lua
|
|
hasCL = findOpenCL_AMD()
|
|
|
|
if (hasCL) then
|
|
|
|
project "OpenCL_GL_interop_AMD"
|
|
|
|
initOpenCL_AMD()
|
|
|
|
language "C++"
|
|
|
|
kind "ConsoleApp"
|
|
targetdir "../../../bin"
|
|
|
|
initOpenGL()
|
|
initGlut()
|
|
initGlew()
|
|
|
|
includedirs {
|
|
"../../../rendering/BulletMath"
|
|
}
|
|
|
|
files {
|
|
"../main.cpp",
|
|
"../../basic_initialize/btOpenCLUtils.cpp",
|
|
"../../basic_initialize/btOpenCLUtils.h",
|
|
"../btOpenCLGLInteropBuffer.cpp",
|
|
"../btOpenCLGLInteropBuffer.h",
|
|
"../btStopwatch.cpp",
|
|
"../btStopwatch.h"
|
|
}
|
|
|
|
end |