diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2014-06-12 07:17:58 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2014-06-12 07:17:58 +0200 |
commit | c8764b39f80ad7677076dd5d97a0bb29d9f0ba34 (patch) | |
tree | d5c481e4aecaf640394f9ac9aa99eacf8738b13c /CMakeLists.txt | |
parent | 80ff6fe70ffc41ffa17ef4ece84f8f13d4d8f4ba (diff) |
cmake: fix libevdev pkgconfig grovel
Issue: #31
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f697b05..54a12f13 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -333,7 +333,7 @@ endif() if(SDK_ENABLE_LIBEVDEV) opentrack_library(opentrack-proto-libevdev) pkg_check_modules(libevdev REQUIRED QUIET libevdev) - include_directories(${LibXML++_INCLUDE_DIRS}) + include_directories(${libevdev_INCLUDE_DIRS}) target_link_libraries(opentrack-proto-libevdev ${libevdev-LIBRARIES}) endif() |