diff options
author | Chad Versace <chad.versace@linux.intel.com> | 2012-02-21 18:23:56 -0800 |
---|---|---|
committer | Paul Berry <stereotype441@gmail.com> | 2012-03-23 13:39:44 -0700 |
commit | ba75b97a7d19c2d154c45cd3e065735db4a3cca5 (patch) | |
tree | 1aa781501b94c33c4d5e52e5e4761d6934853f79 /tests/spec/arb_vertex_program | |
parent | 1416f985ed2d46e830fa91e94a0e5c156c4112af (diff) |
cmake: Replace calls to add_{executable,library} with wrappers
Replace
add_executable -> piglit_add_executable
add_library -> piglit_add_library
For now, each wrapper function trivially wraps the function it replaces,
and so this patch changes no behavior.
This commit was created using the command:
sed -i -e "s/add_executable/piglit_add_executable/" -e "s/add_library/piglit_add_library/" $(find src/ tests/ -name "*CMakeLists*")
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
Diffstat (limited to 'tests/spec/arb_vertex_program')
-rw-r--r-- | tests/spec/arb_vertex_program/CMakeLists.gl.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/spec/arb_vertex_program/CMakeLists.gl.txt b/tests/spec/arb_vertex_program/CMakeLists.gl.txt index 22c285172..a6e62525e 100644 --- a/tests/spec/arb_vertex_program/CMakeLists.gl.txt +++ b/tests/spec/arb_vertex_program/CMakeLists.gl.txt @@ -11,8 +11,8 @@ link_libraries ( ${GLUT_glut_LIBRARY} ) -add_executable (arb_vertex_program-getenv4d-with-error getenv4d-with-error.c) -add_executable (arb_vertex_program-getlocal4d-with-error getlocal4d-with-error.c) -add_executable (arb_vertex_program-minmax minmax.c) +piglit_add_executable (arb_vertex_program-getenv4d-with-error getenv4d-with-error.c) +piglit_add_executable (arb_vertex_program-getlocal4d-with-error getlocal4d-with-error.c) +piglit_add_executable (arb_vertex_program-minmax minmax.c) # vim: ft=cmake: |