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 /src | |
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 'src')
-rw-r--r-- | src/glut_egl/CMakeLists.no_api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glut_egl/CMakeLists.no_api.txt b/src/glut_egl/CMakeLists.no_api.txt index f0597435a..90773c4ff 100644 --- a/src/glut_egl/CMakeLists.no_api.txt +++ b/src/glut_egl/CMakeLists.no_api.txt @@ -6,7 +6,7 @@ include_directories( link_libraries(${OPENGL_egl_LIBRARY}) if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") - add_library (glut_egl + piglit_add_library (glut_egl glut_egl.c glut_egl_x11.c ) |