Updating backup files list + zig build for version 0.14.0
parent
4a9d20f1ee
commit
b2d341d340
|
@ -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
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"));
|
||||||
|
|
Loading…
Reference in New Issue