1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
include_directories(
${GLEXT_INCLUDE_DIR}
${OPENGL_INCLUDE_PATH}
)
link_libraries (
piglitutil_${piglit_target_api}
${OPENGL_gl_LIBRARY}
)
piglit_add_executable (arb_transform_feedback2-api-queries api-queries.c)
piglit_add_executable (arb_transform_feedback2-cannot-bind-when-active cannot-bind-when-active.c)
piglit_add_executable (arb_transform_feedback2-change-objects-while-paused change-objects-while-paused.c)
piglit_add_executable (arb_transform_feedback2-draw-auto draw-auto.c)
piglit_add_executable (arb_transform_feedback2-gen-names-only gen-names-only.c)
piglit_add_executable (arb_transform_feedback2-istransformfeedback istransformfeedback.c)
piglit_add_executable (arb_transform_feedback2-pause-counting pause-counting.c)
# vim: ft=cmake:
|