You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problems I encountered so far with this lib.
Msys2 ncurses is a bit different.
It needs #include<ncurses/ncurses.h>, or #include<ncursesw/ncurses.h>
And the deltion of the test binary doesn't work, because .exe is missing.
let bin = format!("{}",Path::new(&out_dir).join("chtype_size").display());
needs to be:
let bin = format!("{}",Path::new(&out_dir).join("chtype_size.exe").display());
The text was updated successfully, but these errors were encountered:
Problems I encountered so far with this lib.
Msys2 ncurses is a bit different.
It needs
#include<ncurses/ncurses.h>
, or#include<ncursesw/ncurses.h>
And the deltion of the test binary doesn't work, because
.exe
is missing.needs to be:
The text was updated successfully, but these errors were encountered: