mirror of
https://github.com/RGBCube/serenity
synced 2025-07-30 03:57:45 +00:00
Meta: Add dependencies for the JS repl to the gn build
This commit is contained in:
parent
165a67b115
commit
bf02069a89
4 changed files with 37 additions and 1 deletions
12
Meta/gn/secondary/Userland/Utilities/BUILD.gn
Normal file
12
Meta/gn/secondary/Userland/Utilities/BUILD.gn
Normal file
|
@ -0,0 +1,12 @@
|
|||
executable("js") {
|
||||
sources = [ "js.cpp" ]
|
||||
include_dirs = [ "//Userland/Libraries" ]
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
"//Userland/Libraries/LibJS",
|
||||
"//Userland/Libraries/LibLine",
|
||||
"//Userland/Libraries/LibMain",
|
||||
"//Userland/Libraries/LibTextCodec",
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue