/
redgpu
/
bullet
Обзор
Документация
Войти
/
redgpu
/
bullet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.83
test/OpenCL/KernelLaunch/premake4.lua
34 строки
711 B
erwin coumans
add some command-line options
20 ноя 2013, 01:42
20 ноя 2013, 01:42
26dfaa4
Код
Авторство
О чём код?
function createProject(vendor) hasCL = findOpenCL(vendor) if (hasCL) then project ("Test_OpenCL_kernel_launch_" .. vendor) initOpenCL(vendor) language "C++" kind "ConsoleApp" targetdir "../../../bin" includedirs {"../../../src"} files { "main.cpp", "../../../src/Bullet3OpenCL/Initialize/b3OpenCLUtils.cpp", "../../../src/Bullet3Common/b3AlignedAllocator.cpp", "../../../src/Bullet3OpenCL/Initialize/b3OpenCLUtils.h", "../../../src/Bullet3Common/b3Logging.cpp", "../../../src/Bullet3OpenCL/ParallelPrimitives/b3LauncherCL.cpp" } end end createProject("clew") createProject("Apple") createProject("AMD") createProject("Intel") createProject("NVIDIA")