.
This commit is contained in:
19
build.sh
Executable file
19
build.sh
Executable 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"
|
Reference in New Issue
Block a user