This repository has been archived on 2026-03-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SakuraVNE_old/generate.sh

9 lines
292 B
Bash
Raw Permalink Normal View History

#!/bin/bash
echo "Generating Makefiles..."
2026-03-09 21:27:57 +01:00
cmake -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
echo "Generating compile_commands.json for clangd..."
2026-03-09 21:27:57 +01:00
ln -sf build/compile_commands.json compile_commands.json
echo "Done!"
2026-03-09 21:27:57 +01:00
echo "To compile run:\n cmake --build build -j":