Updating backup files list + zig build for version 0.14.0

master
Tomasz Polgrabia 2025-03-11 10:08:44 +01:00
parent 4a9d20f1ee
commit b2d341d340
3 changed files with 8 additions and 5 deletions

5
.gitignore vendored
View File

@ -1,5 +1,8 @@
output-vagrant output-vagrant
*~ *~
*.old
*.old.*
*.bak
.git .git
.vagrant .vagrant
.secret .secret
@ -7,4 +10,4 @@ output-vagrant
.idea .idea
# test # test
.gradle .gradle
build build

View File

@ -26,10 +26,10 @@ func main() {
return return
} }
for i := 0; i < len(dirs); i++ { for _, dir := range dirs {
m := make(map[string]string) m := make(map[string]string)
m["name"] = dirs[i].Name() m["name"] = dir.Name()
if dirs[i].IsDir() { if dir.IsDir() {
m["dir"] = "yes" m["dir"] = "yes"
} else { } else {
m["dir"] = "no" m["dir"] = "no"

View File

@ -4,7 +4,7 @@ pub fn build(b: *std.Build) void {
const exe = b.addExecutable(.{ const exe = b.addExecutable(.{
.name = "callingc", .name = "callingc",
.root_source_file = b.path("src/callingc.zig"), .root_source_file = b.path("src/callingc.zig"),
.target = b.host, .target = b.graph.host,
.optimize = b.standardOptimizeOption(.{}), .optimize = b.standardOptimizeOption(.{}),
}); });
exe.addIncludePath(b.path("c-src")); exe.addIncludePath(b.path("c-src"));