ladybird/Libraries/LibWasm/CMakeLists.txt

19 lines
432 B
Text
Raw Normal View History

set(SOURCES
AbstractMachine/AbstractMachine.cpp
AbstractMachine/BytecodeInterpreter.cpp
AbstractMachine/Configuration.cpp
2021-11-01 01:36:35 +03:30
AbstractMachine/Validator.cpp
Parser/Parser.cpp
2021-04-27 22:13:01 +04:30
Printer/Printer.cpp
)
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)
target_link_libraries(LibWasm PRIVATE LibCore)
include(wasm_spec_tests)