This commit is contained in:
Your Name
2025-04-30 21:30:55 +12:00
parent 69ecc77d51
commit fe9c940a22
14 changed files with 26367 additions and 2 deletions

19
build.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Exit on error
set -e
# Create build directory if it doesn't exist
mkdir -p build
# Enter build directory
cd build
# Run CMake
cmake ..
# Build the project
make -j$(nproc)
echo "Build completed successfully!"
echo "The executable is located at: $(pwd)/dropshell_template_registry"