diff options
author | Marius Kintel <marius@kintel.net> | 2013-05-29 00:15:42 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-05-29 00:15:42 (GMT) |
commit | e40eeaf8c82f25d0c0f53b73634db3e36dae111e (patch) | |
tree | 80c87df88727bdf9ce61de35e6717538fb3cca8f | |
parent | c5db28cfa0cc5a37e31e5504367a2b2cafa09d81 (diff) |
bugfix: actually link to OPENGL_LIBRARIES instead of OPENGL_LIBRARY, remove qt linkage
-rw-r--r-- | tests/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index da0979c..d1ee312 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -501,8 +501,8 @@ set(OFFSCREEN_SOURCES ../src/system-gl.cc) add_library(tests-core STATIC ${CORE_SOURCES}) -target_link_libraries(tests-core ${OPENGL_LIBRARY}) -set(TESTS-CORE-LIBRARIES ${QT_LIBRARIES} ${OPENGL_LIBRARY} ${Boost_LIBRARIES}) +target_link_libraries(tests-core ${OPENGL_LIBRARIES}) +set(TESTS-CORE-LIBRARIES ${OPENGL_LIBRARIES} ${Boost_LIBRARIES}) add_library(tests-common STATIC ${COMMON_SOURCES}) target_link_libraries(tests-common tests-core) |