Answer the question
In order to leave comments, you need to log in
Vcpkg not installing libraries for Visual Studio?
Actually, I installed vcpkg, enabled integration with my Visual Studio 2017 Enterprise using .\vcpkg integrate install , decided to install lcurses(pdcurses for windows) for example, installed using the command .\vcpkg.exe install pdcurses:x86-windows .
Everything is set (it seems).
Created a new project in VS, wrote the following code
#include "pch.h"
#include "curses.h"
int main()
{
initscr();
mvprintw(5, 5, "Hello, World!");
getch();
endwin();
return 0;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question