1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

Meta: Add Serenity Kernel to gn build

This commit is contained in:
Andrew Kaster 2023-07-26 07:20:17 -06:00 committed by Andrew Kaster
parent f4e37c8ad4
commit 0acd87954b
9 changed files with 1169 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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),
]
}