Migrate build system to CMake for cross-platform support

This commit is contained in:
2026-06-10 13:14:34 +02:00
parent 5475fc301d
commit a2d3eda4e9
3 changed files with 104 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
# Build script for Linux and macOS
BUILD_DIR="build"
if [ ! -d "$BUILD_DIR" ]; then
mkdir $BUILD_DIR
fi
cd $BUILD_DIR
cmake ..
make -j$(nproc)
cd ..
echo "Build complete. Binary located in $BUILD_DIR/BudgetPro"