diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2015-09-21 14:46:24 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2015-09-29 14:33:55 -0700 |
commit | 31b4e5a551ea17f778f4dde0b057a057e7e43180 (patch) | |
tree | 785039199769e0eb96ac1f7abfb79c88f8e3b3b8 /tests/texturing | |
parent | e7780829d276c6f3e6a7f8ec1e49d8420c96435c (diff) |
Remove unnecessary linking with libGLU
This patch was created by:
sed -i -e '/[{]OPENGL_glu_LIBRARY[}]/d' $(grep -lr OPENGL_glu_LIBRARY)
git checkout tests/glean/CMakeLists.gl.txt
git checkout tests/spec/gl-1.4/CMakeLists.gl.txt
git checkout tests/fbo/CMakeLists.gl.txt
So, there are three places out of all of piglit that actually need
this library.
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Thanked-by: Kristian Høgsberg <krh@bitplanet.net>
Diffstat (limited to 'tests/texturing')
-rw-r--r-- | tests/texturing/CMakeLists.gl.txt | 1 | ||||
-rw-r--r-- | tests/texturing/shaders/CMakeLists.gl.txt | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/tests/texturing/CMakeLists.gl.txt b/tests/texturing/CMakeLists.gl.txt index 6981fbc49..68afa166b 100644 --- a/tests/texturing/CMakeLists.gl.txt +++ b/tests/texturing/CMakeLists.gl.txt @@ -7,7 +7,6 @@ include_directories( link_libraries ( piglitutil_${piglit_target_api} ${OPENGL_gl_LIBRARY} - ${OPENGL_glu_LIBRARY} ) piglit_add_executable (1-1-linear-texture 1-1-linear-texture.c) diff --git a/tests/texturing/shaders/CMakeLists.gl.txt b/tests/texturing/shaders/CMakeLists.gl.txt index 8dcb865d5..2f1dffc8d 100644 --- a/tests/texturing/shaders/CMakeLists.gl.txt +++ b/tests/texturing/shaders/CMakeLists.gl.txt @@ -7,7 +7,6 @@ include_directories( link_libraries ( piglitutil_${piglit_target_api} ${OPENGL_gl_LIBRARY} - ${OPENGL_glu_LIBRARY} ) piglit_add_executable (textureSize textureSize.c common.c) |