diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2014-11-18 21:39:39 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2014-11-18 22:06:25 +0100 |
commit | 8d7ea57a004908890760ffc77f2b4cc1fc6ae789 (patch) | |
tree | 189fd1ef8befde54786e240810e71e66b0a8550e /cmake | |
parent | a24fa3e3053eccae3981c7a1bf3995d0e67b1036 (diff) | |
download | json-rpc-shell-8d7ea57a004908890760ffc77f2b4cc1fc6ae789.tar.gz json-rpc-shell-8d7ea57a004908890760ffc77f2b4cc1fc6ae789.tar.xz json-rpc-shell-8d7ea57a004908890760ffc77f2b4cc1fc6ae789.zip |
Convert to CMake, fix terminal resize behaviour
Fucking terminals, always broken in one way or another.
For future reference, libedit acts even worse than readline.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindLibEV.cmake | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cmake/FindLibEV.cmake b/cmake/FindLibEV.cmake new file mode 100644 index 0000000..73787a1 --- /dev/null +++ b/cmake/FindLibEV.cmake @@ -0,0 +1,18 @@ +# Public Domain + +# The author of libev is a dick and doesn't want to add support for pkg-config, +# forcing us to include this pointless file in the distribution. + +# Some distributions do add it, though +find_package (PkgConfig REQUIRED) +pkg_check_modules (LIBEV QUIET libev) + +if (NOT LIBEV_FOUND) + find_path (LIBEV_INCLUDE_DIRS ev.h) + find_library (LIBEV_LIBRARIES NAMES ev) + + if (LIBEV_INCLUDE_DIRS AND LIBEV_LIBRARIES) + set (LIBEV_FOUND TRUE) + endif (LIBEV_INCLUDE_DIRS AND LIBEV_LIBRARIES) +endif (NOT LIBEV_FOUND) + |