Untitled

Anonymous
sh
06/20/2024 11:05 AM
348 B
43
Indexable
#!/bin/bash

# Exit immediately if a command exits with a non-zero status.
set -e

# Create a build directory and enter it
mkdir -p build
cd build

# Configure the project with CMake
cmake ..

# Build the project
make

# Go back to the original directory
cd -
Editor is loading...
Leave a Comment