G
G
German2018-12-22 13:00:34
C++ / C#
German, 2018-12-22 13:00:34

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).
5c1e0eb2abc19199465129.png
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;
}

release x86 configuration.
However, I met the errors of the linker.
5c1e0a4d7cb96399627321.png
What else does he need and where is the promised one?
All MSBuild C++ projects can now #include any installed libraries.
Linking will be handled automatically.
Installing new libraries will make them instantly available.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question