first commit

This commit is contained in:
Maik Jurischka
2025-12-18 16:10:55 +01:00
commit 69e2f3ae1d
19 changed files with 2707 additions and 0 deletions

28
build.sh Executable file
View File

@@ -0,0 +1,28 @@
#!/bin/bash
# Build script for gstreamerViewer
set -e # Exit on error
echo "=== Building gstreamerViewer ==="
# Create build directory if it doesn't exist
if [ ! -d "build" ]; then
echo "Creating build directory..."
mkdir -p build
fi
cd build
echo "Running CMake..."
cmake ..
echo "Building with make..."
make -j$(nproc)
echo ""
echo "=== Build successful! ==="
echo "Executable: $(pwd)/gstreamerViewer"
echo ""
echo "To run the application:"
echo " cd build && ./gstreamerViewer"
echo ""