From: Torsten Dreyer Date: Wed, 21 Sep 2011 17:22:32 +0000 (+0200) Subject: fix cmake conditional for event-input X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fcf03717774e32450c74b2d735eca9cb581f7e8f;p=flightgear.git fix cmake conditional for event-input --- diff --git a/src/Input/CMakeLists.txt b/src/Input/CMakeLists.txt index 7fb713507..b38ffc8cb 100644 --- a/src/Input/CMakeLists.txt +++ b/src/Input/CMakeLists.txt @@ -3,7 +3,7 @@ include(FlightGearComponent) IF(APPLE) set(EVENT_INPUT_SOURCES FGMacOSXEventInput.cxx) set(EVENT_INPUT_HEADERS FGMacOSXEventInput.hxx) -else(MSVC) +elseif(MSVC) message(STATUS "EventInput not implemented for Windows yet") else() set(EVENT_INPUT_SOURCES FGLinuxEventInput.cxx)