mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-14 08:23:48 +01:00
12 lines
243 B
Racket
12 lines
243 B
Racket
#lang racket
|
|
(require "../common.rkt")
|
|
(provide run)
|
|
|
|
(define (run)
|
|
(define (bin-path bin)
|
|
(build-path (output-bin-path) "bin" bin))
|
|
|
|
(generate-cgopt-json)
|
|
|
|
(cmd "zig" "build" "-Doptimize=ReleaseFast" "-p" (output-bin-path))
|
|
null)
|