diff --git a/.gitignore b/.gitignore index e69de29..c8fda25 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,72 @@ +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +# Zig programming language +zig-cache/ +zig-out/ +build/ +build-*/ +docgen_tmp/ \ No newline at end of file diff --git a/build.zig b/build.zig new file mode 100644 index 0000000..e24f792 --- /dev/null +++ b/build.zig @@ -0,0 +1,5 @@ +const std = @import("std"); + +pub fn build(b: *std.Build) void { + _ = b; // stub +} diff --git a/build.zig.zon b/build.zig.zon new file mode 100644 index 0000000..bcc4acd --- /dev/null +++ b/build.zig.zon @@ -0,0 +1,7 @@ +.{ + .name = .fparkan, + .version = "0.0.1", + .minimum_zig_version = "0.15.2", + .paths = .{""}, + .fingerprint = 0x8922aff25cf1dd39, +}