aboutsummaryrefslogtreecommitdiff
path: root/src/resinator.zig
AgeCommit message (Collapse)Author
2024-03-11Lazily compile the `zig rc` subcommand and use it during `zig build-exe`Ryan Liptak
This moves .rc/.manifest compilation out of the main Zig binary, contributing towards #19063 Also: - Make resinator use Aro as its preprocessor instead of clang - Sync resinator with upstream
2023-10-12Add `zig rc` subcommand, a drop-in replacement for rc.exeRyan Liptak
Uses resinator under-the-hood (see https://github.com/ziglang/zig/pull/17069) Closes #9564
2023-09-24resinator: do not include in only_core_functionality buildsmlugg
This prevents resinator from being included in zig1 and zig2.
2023-09-17Add a .rc -> .res compiler to the Zig compilerRyan Liptak