File: premake4.lua

package info (click to toggle)
bullet 3.24%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 15,164 kB
  • sloc: cpp: 246,331; lisp: 12,017; ansic: 11,175; python: 630; makefile: 136; sh: 75
file content (47 lines) | stat: -rw-r--r-- 1,342 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
function createProject(vendor)
	hasCL = findOpenCL(vendor)
	
	if (hasCL) then

		project ("Test_OpenCL_RadixSortBenchmark_" .. vendor)

		initOpenCL(vendor)
		
		language "C++"
				
		kind "ConsoleApp"
		
		includedirs {"..","../../../src"}
		
--		links {
--			("OpenCL_lib_parallel_primitives_host_" .. vendor)
--		}
		
		files {
			"main.cpp",
			"../../../src/Bullet3OpenCL/Initialize/b3OpenCLUtils.cpp",
			"../../../src/Bullet3OpenCL/Initialize/b3OpenCLUtils.h",
			"../../../src/Bullet3OpenCL/ParallelPrimitives/b3FillCL.cpp",
			"../../../src/Bullet3OpenCL/ParallelPrimitives/b3PrefixScanCL.cpp",
			"../../../src/Bullet3OpenCL/ParallelPrimitives/b3RadixSort32CL.cpp",
			"../../../src/Bullet3OpenCL/ParallelPrimitives/b3LauncherCL.cpp",
			"../../../src/Bullet3Common/b3AlignedAllocator.cpp",
			"../../../src/Bullet3Common/b3AlignedAllocator.h",
			"../../../src/Bullet3Common/b3AlignedObjectArray.h",
			"../../../src/Bullet3Common/b3Logging.cpp",
			"../../../src/Bullet3Common/b3Logging.h",
			"../../../btgui/Bullet3AppSupport/b3Quickprof.cpp",
			"../../../btgui/Bullet3AppSupport/b3Quickprof.h",
			"../../../btgui/Bullet3AppSupport/b3Clock.cpp",
			"../../../btgui/Bullet3AppSupport/b3Clock.h",

		}
		
	end
end

createProject("clew")
createProject("AMD")
createProject("Intel")
createProject("NVIDIA")
createProject("Apple")