further changes
This commit is contained in:
parent
763a9fb44e
commit
9da895da8b
6 changed files with 9 additions and 13 deletions
|
@ -265,7 +265,7 @@ if(SFML_OS_LINUX)
|
|||
target_link_libraries(sfml-window PRIVATE UDev)
|
||||
elseif(SFML_OS_WINDOWS)
|
||||
target_link_libraries(sfml-window PRIVATE winmm gdi32)
|
||||
elseif(SFML_OS_FREEBSD OR SFML_OS_OPENBSD)
|
||||
elseif(SFML_OS_FREEBSD)
|
||||
target_link_libraries(sfml-window PRIVATE usbhid)
|
||||
elseif(SFML_OS_MACOSX)
|
||||
target_link_libraries(sfml-window PRIVATE "-framework Foundation" "-framework AppKit" "-framework IOKit" "-framework Carbon")
|
||||
|
|
|
@ -90,6 +90,10 @@ struct JoystickState
|
|||
|
||||
#include <SFML/Window/FreeBSD/JoystickImpl.hpp>
|
||||
|
||||
#elif defined(SFML_SYSTEM_OPENBSD)
|
||||
|
||||
#include <SFML/Window/OpenBSD/JoystickImpl.hpp>
|
||||
|
||||
#elif defined(SFML_SYSTEM_MACOS)
|
||||
|
||||
#include <SFML/Window/OSX/JoystickImpl.hpp>
|
||||
|
@ -98,7 +102,7 @@ struct JoystickState
|
|||
|
||||
#include <SFML/Window/iOS/JoystickImpl.hpp>
|
||||
|
||||
#elif defined(SFML_SYSTEM_ANDROID) || defined(SFML_SYSTEM_OPENBSD)
|
||||
#elif defined(SFML_SYSTEM_ANDROID)
|
||||
|
||||
#include <SFML/Window/Android/JoystickImpl.hpp>
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ namespace sf
|
|||
namespace priv
|
||||
{
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \brief Android implementation of joysticks
|
||||
/// \brief OpenBSD implementation of joysticks
|
||||
///
|
||||
////////////////////////////////////////////////////////////
|
||||
class JoystickImpl
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue