mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-31 15:32:51 +00:00
17 lines
392 B
CMake
17 lines
392 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()
|
|
|
|
serenity_lib(LibWasm wasm)
|
|
target_link_libraries(LibWasm PRIVATE LibCore LibGC LibJS)
|
|
|
|
include(wasm_spec_tests)
|