mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
a279b391cc
Also added an option to explicitly disable building with MPG framedumps. To use it add -DENCODE_FRAMEDUMPS=OFF to cmake on the command line. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6429 8ced0084-cf51-0410-be5f-012b33b47a6e
27 lines
821 B
CMake
27 lines
821 B
CMake
set(SRCS Src/ControllerEmu.cpp
|
|
Src/InputConfig.cpp
|
|
Src/UDPWiimote.cpp
|
|
Src/UDPWrapper.cpp
|
|
Src/ControllerInterface/ControllerInterface.cpp)
|
|
|
|
if(WIN32)
|
|
set(SRCS ${SRCS}
|
|
Src/ControllerInterface/DInput/DInput.cpp
|
|
Src/ControllerInterface/DInput/DInputJoystick.cpp
|
|
Src/ControllerInterface/DInput/DInputKeyboardMouse.cpp
|
|
Src/ControllerInterface/SDL/SDL.cpp
|
|
Src/ControllerInterface/XInput/XInput.cpp)
|
|
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
set(SRCS ${SRCS}
|
|
Src/ControllerInterface/OSX/OSX.mm
|
|
Src/ControllerInterface/OSX/OSXKeyboard.mm
|
|
Src/ControllerInterface/OSX/OSXMouse.mm
|
|
Src/ControllerInterface/SDL/SDL.cpp)
|
|
elseif(X11_FOUND)
|
|
set(SRCS ${SRCS}
|
|
Src/ControllerInterface/SDL/SDL.cpp
|
|
Src/ControllerInterface/Xlib/Xlib.cpp)
|
|
endif()
|
|
|
|
add_library(inputcommon ${SRCS})
|