-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·51 lines (40 loc) · 1.17 KB
/
build.sh
File metadata and controls
executable file
·51 lines (40 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash
# Exit on error
set -e
# Check for required tools
command -v cmake >/dev/null 2>&1 || { echo "CMake is required but not installed. Aborting." >&2; exit 1; }
command -v curl >/dev/null 2>&1 || { echo "curl is required but not installed. Aborting." >&2; exit 1; }
# Check if running on macOS
if [[ "$OSTYPE" == "darwin"* ]]; then
# Check if Homebrew is installed
if ! command -v brew >/dev/null 2>&1; then
echo "Homebrew is required but not installed. Please install it from https://brew.sh"
exit 1
fi
# Install required dependencies
echo "Installing required dependencies..."
brew install cmake curl googletest openssl
fi
# Store the current directory
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Build hashsigs-cpp first
echo "Building hashsigs-cpp..."
cd "${SCRIPT_DIR}/../hashsigs-cpp"
rm -rf build
mkdir -p build
cd build
cmake ..
cmake --build .
cd "${SCRIPT_DIR}"
# Clean and recreate build directory
echo "Building quip-cli..."
rm -rf build
mkdir -p build
cd build
# Configure with CMake
cmake "${SCRIPT_DIR}"
# Build
cmake --build .
# Run tests
ctest --output-on-failure
echo "Build completed successfully!"