Add everything.
Some checks failed
Build C++ Project with Fedora Container and Create Release / build (push) Has been cancelled

This commit is contained in:
2025-11-30 23:02:25 +01:00
commit ec1610443c
910 changed files with 425564 additions and 0 deletions

7
buildandrun.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
set -e # Exit on any error
./build.sh || { echo "Build failed"; exit 1; }
cd build || { echo "Cannot cd to build/"; exit 1; }
./main || { echo "main failed"; exit 1; }
cd .. || echo "Warning: failed to return to parent dir"