Files
simple-object-server/build.sh
Your Name fe9c940a22 .
2025-04-30 21:30:55 +12:00

19 lines
300 B
Bash
Executable File

#!/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"