From: Miroslav Kobetski Date: Tue, 13 Aug 2013 08:34:31 +0000 (+0200) Subject: Fixed elif/elseif error that made highgui-windows fail on mac+cocoa. X-Git-Tag: accepted/tizen/ivi/20140515.103456~1^2~577^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=93f05fed35b40ae3fb215beb272eb90373b9fad3;p=profile%2Fivi%2Fopencv.git Fixed elif/elseif error that made highgui-windows fail on mac+cocoa. --- diff --git a/cmake/OpenCVFindLibsGUI.cmake b/cmake/OpenCVFindLibsGUI.cmake index 04c77d8..270853a 100644 --- a/cmake/OpenCVFindLibsGUI.cmake +++ b/cmake/OpenCVFindLibsGUI.cmake @@ -70,7 +70,7 @@ endif(WITH_OPENGL) if(APPLE) if(WITH_CARBON) set(HAVE_CARBON YES) - elif(NOT IOS) + elseif(NOT IOS) set(HAVE_COCOA YES) endif() endif()