From f48cfee9f92173714f0402bcc47dc30c8216e2bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 5 Aug 2014 22:18:38 +0200 Subject: [PATCH] Platform: minor cleanup. --- src/Magnum/Platform/CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Magnum/Platform/CMakeLists.txt b/src/Magnum/Platform/CMakeLists.txt index 14b26ee10..6598045df 100644 --- a/src/Magnum/Platform/CMakeLists.txt +++ b/src/Magnum/Platform/CMakeLists.txt @@ -174,9 +174,9 @@ if(WITH_GLXAPPLICATION) set(NEED_GLXCONTEXTHANDLER 1) set(MagnumGlxApplication_SRCS + GlxApplication.cpp $ - $ - GlxApplication.cpp) + $) set(MagnumGlxApplication_HEADERS GlxApplication.h) add_library(MagnumGlxApplication STATIC @@ -196,9 +196,9 @@ if(WITH_XEGLAPPLICATION) set(NEED_EGLCONTEXTHANDLER 1) set(MagnumXEglApplication_SRCS + XEglApplication.cpp $ - $ - XEglApplication.cpp) + $) set(MagnumXEglApplication_HEADERS XEglApplication.h) add_library(MagnumXEglApplication STATIC @@ -288,7 +288,7 @@ if(NEED_ABSTRACTXAPPLICATION) install(FILES ${MagnumAbstractXApplication_HEADERS} DESTINATION ${MAGNUM_INCLUDE_INSTALL_DIR}/Platform) endif() -# GLX context +# GLX context handler if(NEED_GLXCONTEXTHANDLER) set(MagnumGlxContextHandler_SRCS Implementation/GlxContextHandler.cpp) @@ -303,7 +303,7 @@ if(NEED_GLXCONTEXTHANDLER) set_target_properties(MagnumGlxContextHandler PROPERTIES COMPILE_FLAGS "-Wno-old-style-cast") endif() -# EGL context +# EGL context handler if(NEED_EGLCONTEXTHANDLER) find_package(EGL) if(NOT EGL_FOUND)