-
I can run rapidyaml/samples/singleheader/run.sh in powershell on my windows development machine and it runs to SUCCESS! The README.MD says "ryml is written in C++11, and compiles cleanly with: Visual Studio 2015 and later" but I can't even get the solution to load. Can someone explain the steps required to load, build and run the Samples in Visual Studio 2015? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Just look inside the cd rapidyaml/samples/singleheader
cmake -G "Visual Studio 14 2015" -A x64 -S . -B build
cmake --build build --config Release --target run |
Beta Was this translation helpful? Give feedback.
Just look inside the
run.sh
script; it is there to show what commands to run. To pick specifically vs2015 it would require something like this (assuming a recent cmake is installed):