diff options
author | Chad Versace <chad.versace@linux.intel.com> | 2012-05-18 14:25:35 -0700 |
---|---|---|
committer | Chad Versace <chad.versace@linux.intel.com> | 2012-05-23 13:04:26 -0700 |
commit | df3ad924503de5f0f27ff167917cfd4b7c37c9e6 (patch) | |
tree | d5dfc9d5b53b6668800922be8c2c340ec88c145f /tests/glean | |
parent | f03240c7c3857bbfac4d1a27845a5b376c771c9f (diff) |
cmake: Relocate all GLUT directives into single location
Nearly all CMakeLists.gl.txt contained the following:
include_directories(${GLUT_INCLUDE_DIR})
link_libraries(${GLUT_glut_LIBRARY})
This patch relocates them to cmake/target_api/gl/CMakeLists.txt.
Reviewed-by: Pauli Nieminen <pauli.nieminen@intel.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
Diffstat (limited to 'tests/glean')
-rw-r--r-- | tests/glean/CMakeLists.gl.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/glean/CMakeLists.gl.txt b/tests/glean/CMakeLists.gl.txt index aadb9c41..fb06cbc7 100644 --- a/tests/glean/CMakeLists.gl.txt +++ b/tests/glean/CMakeLists.gl.txt @@ -11,7 +11,6 @@ ENDIF () include_directories( ${GLEXT_INCLUDE_DIR} ${OPENGL_INCLUDE_PATH} - ${GLUT_INCLUDE_DIR} ${TIFF_INCLUDE_DIR} ${piglit_SOURCE_DIR}/tests/util ) @@ -93,7 +92,6 @@ target_link_libraries (glean piglitutil ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} - ${GLUT_glut_LIBRARY} ${X11_X11_LIB} ${TIFF_LIBRARY} ${CARBON_LIBRARY} |