#!/bin/bash echo "Building PrivateBin API C++ DLL..." # Create build directory mkdir -p build cd build # Generate build files with CMake cmake .. # Build the project make echo "Build completed!" cd ..