mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
23 lines
308 B
CMake
23 lines
308 B
CMake
register_command(
|
|
TARGET
|
|
zig-format-check
|
|
COMMENT
|
|
"Checking zig fmt"
|
|
COMMAND
|
|
${ZIG_EXECUTABLE}
|
|
fmt
|
|
--check
|
|
${BUN_ZIG_SOURCES}
|
|
)
|
|
|
|
register_command(
|
|
TARGET
|
|
zig-format
|
|
COMMENT
|
|
"Running zig fmt"
|
|
COMMAND
|
|
${ZIG_EXECUTABLE}
|
|
fmt
|
|
${BUN_ZIG_SOURCES}
|
|
)
|