fix cmake conditional for event-input
This commit is contained in:
parent
d860c949e3
commit
fcf0371777
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ include(FlightGearComponent)
|
||||||
IF(APPLE)
|
IF(APPLE)
|
||||||
set(EVENT_INPUT_SOURCES FGMacOSXEventInput.cxx)
|
set(EVENT_INPUT_SOURCES FGMacOSXEventInput.cxx)
|
||||||
set(EVENT_INPUT_HEADERS FGMacOSXEventInput.hxx)
|
set(EVENT_INPUT_HEADERS FGMacOSXEventInput.hxx)
|
||||||
else(MSVC)
|
elseif(MSVC)
|
||||||
message(STATUS "EventInput not implemented for Windows yet")
|
message(STATUS "EventInput not implemented for Windows yet")
|
||||||
else()
|
else()
|
||||||
set(EVENT_INPUT_SOURCES FGLinuxEventInput.cxx)
|
set(EVENT_INPUT_SOURCES FGLinuxEventInput.cxx)
|
||||||
|
|
Loading…
Reference in a new issue