1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 13:15:06 +00:00
serenity/Meta/gn/secondary/Userland/Libraries/LibVT/BUILD.gn
2023-08-19 21:05:06 -06:00

12 lines
378 B
Text

import("//Meta/gn/build/compiled_action.gni")
compiled_action("generate_vt_state_machine") {
tool = "//Meta/Lagom/Tools/CodeGenerators/StateMachineGenerator"
inputs = [ "StateMachine.txt" ]
outputs = [ "$root_gen_dir/LibVT/EscapeSequenceStateMachine.h" ]
args = [
"-o",
rebase_path(outputs[0], root_build_dir),
rebase_path(inputs[0], root_build_dir),
]
}