From 9abd4b195b77611bf6a995efad3359e6cd18e749 Mon Sep 17 00:00:00 2001 From: Sean Date: Mon, 3 Nov 2025 16:45:34 -0500 Subject: [PATCH] Add build info to main.cpp --- sstp/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sstp/main.cpp b/sstp/main.cpp index 5f0e009..d9a8821 100644 --- a/sstp/main.cpp +++ b/sstp/main.cpp @@ -8,6 +8,11 @@ #include #include +// To Clean: From the top menu choose "View", "Command Palette", Then choose CMake: Clean OR /usr/bin/cmake --build /home/pi/CPP/sstp/build --config Debug --target clean -- +// To Build: From the top menu choose "View", "Command Palette", Then choose CMake: Build OR /usr/bin/cmake --build /home/pi/CPP/sstp/build --config Debug --target all -- +// Output will be here. /home/pi/CPP/sstp/build + + void handleServer(Block &commands); // handler for server mode void handleClient(Block &commands); // handler for client mode bool registerSignalHandler(void); // registers a Control-c handler