Ignore build results

This commit is contained in:
Emile Clark-Boman 2025-07-22 02:58:29 +10:00
parent b6b7d72717
commit 97e3b3d937
2 changed files with 9 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*.o
*.d

7
flake.nix Normal file
View file

@ -0,0 +1,7 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
emscripten
];
}