Hi denveloper,
The easiest solution is to use NuGet + MsBuild project files on Windows (and android-via-windows), and CMake for other platforms. This is what we use inside C++REST itself.
If you prefer source over binaries, the best path would be to use MsBuild project files and add the relevant C++REST project files to your solution with appropriate references between the projects.
If you're willing to dig into some more complex CMake stuff, you could convince it to generate one of the above two cases or add windows as a target to the C++REST
Sincerely,
roschuma
The easiest solution is to use NuGet + MsBuild project files on Windows (and android-via-windows), and CMake for other platforms. This is what we use inside C++REST itself.
If you prefer source over binaries, the best path would be to use MsBuild project files and add the relevant C++REST project files to your solution with appropriate references between the projects.
If you're willing to dig into some more complex CMake stuff, you could convince it to generate one of the above two cases or add windows as a target to the C++REST
CMakeLists.txt
. If you want to do this last one, look through the .vcxproj
files under Release\src\build\
to figure out what flags you need.Sincerely,
roschuma