The primary build method is CMake. From a Visual Studio developer environment:
cmake -S . -B _build
cmake --build _build --config ReleaseIf STLSoft is not installed as a CMake package, provide its source-tree root:
cmake -S . -B _build -DSTLSOFT=C:\path\to\STLSoft
cmake --build _build --config ReleaseThe resulting executable is installed with:
cmake --install _build --config ReleaseThe program is intended to remain running while it reads messages from the
Windows debugger. Use --help or --version for commands that terminate
immediately:
ReadDebugString.exe --help
ReadDebugString.exe --version