diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2014-06-05 13:54:52 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2014-06-05 13:54:52 +0200 |
commit | 90b767d71f191ba758bfccfd2eb65fa81b653a52 (patch) | |
tree | 91f8f21138d0a3a3f188045436f0145c4f25911c /CMakeLists.txt | |
parent | 564384f83c376a9624662a1eab9cec9caca16493 (diff) | |
parent | 8a386b16ed0619d25f04f5b3a85205abea7b184e (diff) |
Merge pull request #31 from okdshin/fix_libevdev_config
remove SDK_ENABLE_LIBEVDEV macro and simplify sdk libevdev config
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c2763dec..7e268a65 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -88,11 +88,9 @@ if(WIN32 AND DEFINED MSVC_VERSION AND NOT ${MSVC_VERSION} LESS 1700) endif() if(UNIX) - set(SDK_ENABLE_LIBEVDEV FALSE CACHE BOOL "libevdev virtual joystick protocol support (probably Linux only)") - if(SDK_ENABLE_LIBEVDEV) - SET(SDK_LIBEVDEV "" CACHE PATH "libevdev SDK path") - endif() + SET(SDK_LIBEVDEV "" CACHE PATH "libevdev SDK path") endif() + if(WIN32) SET(SDK_CONSOLE_DEBUG FALSE CACHE BOOL "Console build") endif() @@ -332,7 +330,7 @@ if(SDK_VJOY) endif() endif() -if(SDK_ENABLE_LIBEVDEV) +if(SDK_LIBEVDEV) include_directories(${SDK_LIBEVDEV}) opentrack_library(opentrack-proto-libevdev) target_link_libraries(opentrack-proto-libevdev evdev) |