aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/arb_copy_buffer/CMakeLists.gl.txt
blob: a1d1f6234332faa8145c3df4352f9c7402997cf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
include_directories(
	${OPENGL_INCLUDE_PATH}
	${GLUT_INCLUDE_DIR}
	${piglit_SOURCE_DIR}/tests/util
)

link_libraries (
	piglitutil
	${OPENGL_gl_LIBRARY}
	${OPENGL_glu_LIBRARY}
	${GLUT_glut_LIBRARY}
)

add_executable (copy_buffer_coherency copy_buffer_coherency.c)
add_executable (copybuffersubdata copybuffersubdata.c)
add_executable (arb_copy_buffer-dlist dlist.c)
add_executable (arb_copy_buffer-get get.c)
add_executable (arb_copy_buffer-overlap overlap.c)
add_executable (arb_copy_buffer-negative-bound-zero negative-bound-zero.c)
add_executable (arb_copy_buffer-negative-bounds negative-bounds.c)
add_executable (arb_copy_buffer-negative-mapped negative-mapped.c)
add_executable (arb_copy_buffer-targets targets.c)

# vim: ft=cmake: