From 5f3018fa1a7a97d1f961f4c33e5ae418c19202ef Mon Sep 17 00:00:00 2001 From: erw7 Date: Wed, 27 Apr 2022 13:17:06 +0900 Subject: 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 --- cmake/FindWinpty.cmake | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 cmake/FindWinpty.cmake (limited to 'cmake') 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) -- cgit