diff options
author | José Fonseca <jfonseca@vmware.com> | 2015-01-19 20:03:32 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2015-01-19 20:06:03 +0000 |
commit | 25ac42dbd654daee3d5a0cf09a4212c5144eb74b (patch) | |
tree | 51cd2512356e540dae2a920ebf610505716a1ea4 | |
parent | 76784b344606448857ad2a5484d4b41a7b812117 (diff) |
cmake: Alwats link Waffle_LIBRARIES.
And not just on GLX.
Undoes an earlier unintended change.
-rw-r--r-- | tests/util/CMakeLists.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/util/CMakeLists.txt b/tests/util/CMakeLists.txt index e272dc62e..4c1bad745 100644 --- a/tests/util/CMakeLists.txt +++ b/tests/util/CMakeLists.txt @@ -85,9 +85,12 @@ if(PIGLIT_USE_WAFFLE) ) endif() + list(APPEND UTIL_GL_LIBS + ${Waffle_LIBRARIES} + ) IF(PIGLIT_BUILD_GLX_TESTS) - list(APPEND UTIL_GL_LIBS - ${Waffle_LIBRARIES} ${OPENGL_gl_LIBRARY} + list(APPEND UTIL_GL_LIBS + ${OPENGL_gl_LIBRARY} ) ENDIF(PIGLIT_BUILD_GLX_TESTS) else() |