mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 15:45:06 +00:00
12 lines
300 B
Text
12 lines
300 B
Text
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",
|
|
]
|
|
}
|