Replies: 1 comment
-
If you're using CMake anyway, you can just use CMake natively in VS Code, which should be easier. There is a CMake Tools extension for VS Code as well. We also have a tutorial for using vcpkg with CMake in VS Code: https://learn.microsoft.com/vcpkg/get_started/get-started-vscode. Generating MSBuild project files with CMake and hand editing them to add vcpkg integration is more pain. If you're going to use MSBuild it would be easier to use the Visual Studio IDE, which has native integration for MSBuild and a GUI experience for editing those projects. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to use vcpkg with VS Code. From here:
How can I get this but for VS Code? My workflow is that I use VS Code as the IDE and I build my projects from the command line by running
msbuild
myself. I am even authoring.vcxproj
files myself with some help from CMake. I want to know what changes I need to make to myvcxproj
file so that:Beta Was this translation helpful? Give feedback.
All reactions