aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-02-05 00:40:47 +0300
committerValentin Popov <valentin@popov.link>2026-02-05 00:40:47 +0300
commit8f57a8f0f934be455bd2cfa8c4cdbdeba71f7eff (patch)
treef59024104a296af721a43978846428b6bbc568f7
parent40e7d88fd0684beaf91d9fc24e8b5a3639b30be2 (diff)
downloadfparkan-devel.tar.xz
fparkan-devel.zip
feat: добавление файлов конфигурации Zig и обновление .gitignoredevel
-rw-r--r--.gitignore72
-rw-r--r--build.zig5
-rw-r--r--build.zig.zon7
3 files changed, 84 insertions, 0 deletions
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,
+}