mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 02:55:49 +03:00
7e4e9fdb8f
This commit starts adding support for WASI, along with the framework to implement all the functions (though only a couple are currently implemented).
17 lines
452 B
CMake
17 lines
452 B
CMake
set(SOURCES
|
|
AbstractMachine/AbstractMachine.cpp
|
|
AbstractMachine/BytecodeInterpreter.cpp
|
|
AbstractMachine/Configuration.cpp
|
|
AbstractMachine/Validator.cpp
|
|
Parser/Parser.cpp
|
|
Printer/Printer.cpp
|
|
WASI/Wasi.cpp
|
|
)
|
|
|
|
serenity_lib(LibWasm wasm)
|
|
target_link_libraries(LibWasm PRIVATE LibCore LibJS)
|
|
|
|
# FIXME: Install these into usr/Tests/LibWasm
|
|
include(wasm_spec_tests)
|
|
install(DIRECTORY Tests/ DESTINATION home/anon/Tests/wasm-tests)
|