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/asmparsertest | |
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/asmparsertest')
-rw-r--r-- | tests/asmparsertest/CMakeLists.gl.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/asmparsertest/CMakeLists.gl.txt b/tests/asmparsertest/CMakeLists.gl.txt index 9ad43c56a..ee74560bd 100644 --- a/tests/asmparsertest/CMakeLists.gl.txt +++ b/tests/asmparsertest/CMakeLists.gl.txt @@ -11,6 +11,6 @@ link_libraries ( ${GLUT_glut_LIBRARY} ) -add_executable (asmparsertest asmparsertest.c) +piglit_add_executable (asmparsertest asmparsertest.c) # vim: ft=cmake: |