.
This commit is contained in:
parent
3760337e0b
commit
d1a047b2a3
1 changed files with 3 additions and 3 deletions
6
justfile
6
justfile
|
|
@ -31,7 +31,7 @@ macflags := if os() == "macos" { "-x objective-c -lobjc -framework Foundation -f
|
||||||
|
|
||||||
csrc := "src/main.c" + " " + blocks_src
|
csrc := "src/main.c" + " " + blocks_src
|
||||||
cinc := "-Isrc -Ithirdparty " + blocks_include
|
cinc := "-Isrc -Ithirdparty " + blocks_include
|
||||||
cflags := "-std=c23 -fblocks -fno-sanitize=address -fno-sanitize=undefined -g " + macflags + " " + cinc
|
cflags := "-std=c23 -fblocks -g " + macflags + " " + cinc
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -54,7 +54,7 @@ vendor-zig:
|
||||||
[windows]
|
[windows]
|
||||||
[private]
|
[private]
|
||||||
vendor-zig:
|
vendor-zig:
|
||||||
#!powershell.exe -NoProfile -ExecutionPolicy Bypass
|
#!powershell.exe
|
||||||
if (Test-Path "{{zig}}") { exit 0 }
|
if (Test-Path "{{zig}}") { exit 0 }
|
||||||
Write-Host ":: Downloading Zig {{zig_version}} ({{host_os}}/{{host_arch}})..."
|
Write-Host ":: Downloading Zig {{zig_version}} ({{host_os}}/{{host_arch}})..."
|
||||||
New-Item -ItemType Directory -Force -Path "{{thirdparty}}" | Out-Null
|
New-Item -ItemType Directory -Force -Path "{{thirdparty}}" | Out-Null
|
||||||
|
|
@ -75,7 +75,7 @@ vendor-blocks:
|
||||||
[windows]
|
[windows]
|
||||||
[private]
|
[private]
|
||||||
vendor-blocks:
|
vendor-blocks:
|
||||||
#!powershell.exe -NoProfile -ExecutionPolicy Bypass
|
#!powershell.exe
|
||||||
if (Test-Path "{{blocks_dir}}") { exit 0 }
|
if (Test-Path "{{blocks_dir}}") { exit 0 }
|
||||||
Write-Host ":: Cloning libBlocksRuntime..."
|
Write-Host ":: Cloning libBlocksRuntime..."
|
||||||
git clone --depth 1 "{{blocks_repo}}" "{{blocks_dir}}"
|
git clone --depth 1 "{{blocks_repo}}" "{{blocks_dir}}"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue