Files
davinci-video-converter-fork/build.sh
tkmxqrdxddd 75285276e4 feat: add devcontainer/nix support and refactor into modules
- Add .devcontainer/devcontainer.json for Podman development
- Add shell.nix for Nix users
- Refactor monolithic main.cpp into modular components:
  - parser: argument parsing
  - validator: configuration validation
  - converter: ffmpeg command building/execution
- Update Makefile with proper dependencies and test target
- Simplify build.sh to use make
- Update README with development environment docs
2026-03-16 17:35:35 +01:00

11 lines
139 B
Bash

#!/bin/bash
set -e
echo "Building DaVinci Video Converter..."
make clean
make
echo "Build complete! Binary: ./davinci-video-converter"