mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-23 01:12:45 +00:00
17 lines
380 B
CMake
17 lines
380 B
CMake
set(SOURCES
|
|
AbstractMachine/AbstractMachine.cpp
|
|
AbstractMachine/BytecodeInterpreter.cpp
|
|
AbstractMachine/Configuration.cpp
|
|
AbstractMachine/Validator.cpp
|
|
Parser/Parser.cpp
|
|
Printer/Printer.cpp
|
|
)
|
|
|
|
if (NOT WIN32)
|
|
list(APPEND SOURCES WASI/Wasi.cpp)
|
|
endif()
|
|
|
|
ladybird_lib(LibWasm wasm)
|
|
target_link_libraries(LibWasm PRIVATE LibCore)
|
|
|
|
include(wasm_spec_tests)
|