diff options
author | erw7 <erw7.github@gmail.com> | 2022-04-27 13:17:06 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 21:17:06 -0700 |
commit | 5f3018fa1a7a97d1f961f4c33e5ae418c19202ef (patch) | |
tree | 9b39340d55ec7abf86494f9146affdf60e2b468b /cmake | |
parent | 3933592338934933adfeb35dca8472bd28838ec8 (diff) | |
download | rneovim-5f3018fa1a7a97d1f961f4c33e5ae418c19202ef.tar.gz rneovim-5f3018fa1a7a97d1f961f4c33e5ae418c19202ef.tar.bz2 rneovim-5f3018fa1a7a97d1f961f4c33e5ae418c19202ef.zip |
refactor(terminal)!: drop winpty, require Windows 10 #18253
Problem:
winpty is only needed for Windows 8.1. Removing it reduces our build and code
complexity.
Solution:
- Remove winpty.
- Require Windows 10.
closes #18252
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindWinpty.cmake | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/cmake/FindWinpty.cmake b/cmake/FindWinpty.cmake deleted file mode 100644 index 8feafc58a8..0000000000 --- a/cmake/FindWinpty.cmake +++ /dev/null @@ -1,10 +0,0 @@ -include(LibFindMacros) - -find_path(WINPTY_INCLUDE_DIR winpty.h) -set(WINPTY_INCLUDE_DIRS ${WINPTY_INCLUDE_DIR}) - -find_library(WINPTY_LIBRARY winpty) -find_program(WINPTY_AGENT_EXE winpty-agent.exe) -set(WINPTY_LIBRARIES ${WINPTY_LIBRARY}) - -find_package_handle_standard_args(Winpty DEFAULT_MSG WINPTY_LIBRARY WINPTY_INCLUDE_DIR) |