From ea1b05f2019ae03ad4904c9615b24728f4b4a77f Mon Sep 17 00:00:00 2001 From: Richard Date: Fri, 23 Feb 2024 18:04:31 -0700 Subject: [PATCH] Non-Windows platforms need ncurses --- vcpkg.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vcpkg.json b/vcpkg.json index 0059232b..adcce25e 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -4,10 +4,14 @@ "version": "5.0.0", "dependencies": [ "boost-asio", + { + "name": "ncurses", + "platform": "!windows" + }, { "name": "pdcurses", "platform": "windows" }, "gtest" ] -} \ No newline at end of file +}