I have a Visual Studio 2019 solution that currently has eleven different projects in it. These are various C# and C++ projects that run in docker containers.
I currently have an independent project that is a C++ application that runs in a Linux docker container. This project is based on the Microsoft C++ Team blog post here:
Instead of a typical Visual Studio project, it uses a CMakeLists.txt file I open in Visual Studio, which then allows me to compile, run and debug my software in the Linux container.
It works great. However, what I'd like to do, is include this project in my aforementioned solution, but I'm not aware of any way to do this.
Unlike a typical Visual Studio project, it seems I can't just add in the CMakeLists.txt, as a project, to my existing solution. Am I missing something???
Maybe there's a different way to create a C++ application that runs in a Linux docker container that uses a typical Visual Studio project file instead of a CMakeLists.txt file??? If so, I'd be fine with doing that, I'm just not aware of any other way to do this even after googling a good bit on the topic.
I'd appreciate any feedback anyone might have on this topic.
Thanks!