2021-04-26 12:48:13 +04:30
|
|
|
set(SOURCES
|
2021-05-01 01:08:51 +04:30
|
|
|
AbstractMachine/AbstractMachine.cpp
|
2021-06-04 21:54:20 +10:00
|
|
|
AbstractMachine/BytecodeInterpreter.cpp
|
2021-05-01 01:08:51 +04:30
|
|
|
AbstractMachine/Configuration.cpp
|
2021-11-01 01:36:35 +03:30
|
|
|
AbstractMachine/Validator.cpp
|
2021-04-26 12:48:13 +04:30
|
|
|
Parser/Parser.cpp
|
2021-04-27 22:13:01 +04:30
|
|
|
Printer/Printer.cpp
|
2021-04-26 12:48:13 +04:30
|
|
|
)
|
|
|
|
|
|
2025-08-08 12:10:39 -07:00
|
|
|
# FIXME: Add Windows support
|
2025-02-11 19:57:05 +05:00
|
|
|
if (NOT WIN32)
|
|
|
|
|
list(APPEND SOURCES WASI/Wasi.cpp)
|
|
|
|
|
endif()
|
|
|
|
|
|
2025-08-07 13:47:21 -07:00
|
|
|
ladybird_lib(LibWasm wasm EXPLICIT_SYMBOL_EXPORT)
|
2025-04-22 09:48:26 +02:00
|
|
|
target_link_libraries(LibWasm PRIVATE LibCore)
|
2022-12-10 12:23:36 -07:00
|
|
|
|
|
|
|
|
include(wasm_spec_tests)
|