From 476a96dacf3b4dddda123ad337a902cc23b439e1 Mon Sep 17 00:00:00 2001 From: ThorstenB Date: Tue, 3 Jan 2012 22:10:56 +0100 Subject: [PATCH] Fix copy&paste issue in previous commit... *yuk* --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 87362dd3e..44dcbd6af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -199,12 +199,12 @@ if(ENABLE_FGADMIN) if ( FLTK_FOUND ) if ( X11_Xinerama_FOUND ) message(STATUS "Found X11_Xinerama...") - list(APPEND FLTK_LIBRARIES ${COCOA_LIBRARY} ${X11_Xinerama_LIB}) + list(APPEND FLTK_LIBRARIES ${X11_Xinerama_LIB}) endif() if ( X11_Xft_FOUND ) message(STATUS "Found X11_Xft...") - list(APPEND FLTK_LIBRARIES ${COCOA_LIBRARY} ${X11_Xft_LIB}) + list(APPEND FLTK_LIBRARIES ${X11_Xft_LIB}) endif() set( CMAKE_REQUIRED_INCLUDES ${FLTK_INCLUDE_DIR} ) -- 2.39.5