mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 17:15:07 +00:00

There's a lot of them, and LibWeb is a massive set of files to build as well, so let's add these first :^).
27 lines
671 B
Text
27 lines
671 B
Text
declare_args() {
|
|
# If true, download wasm spec tests from github.
|
|
# Tests will be used by test-wasm to verify spec compliance
|
|
include_wasm_spec_tests = false
|
|
}
|
|
|
|
if (include_wasm_spec_tests) {
|
|
# FIXME: Port wasm_spec_tests.cmake
|
|
}
|
|
|
|
shared_library("LibWasm") {
|
|
output_name = "wasm"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"AbstractMachine/AbstractMachine.cpp",
|
|
"AbstractMachine/BytecodeInterpreter.cpp",
|
|
"AbstractMachine/Configuration.cpp",
|
|
"AbstractMachine/Validator.cpp",
|
|
"Parser/Parser.cpp",
|
|
"Printer/Printer.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibJS",
|
|
]
|
|
}
|