ladybird/Userland/Libraries/LibWasm/CMakeLists.txt
Linus Groh 34b338702a LibWasm: Remove empty AbstractMachine/Interpreter.cpp
This was moved to BytecodeInterpreter.cpp, so this is unused now.
2021-06-20 01:49:56 +01:00

11 lines
254 B
CMake

set(SOURCES
AbstractMachine/AbstractMachine.cpp
AbstractMachine/BytecodeInterpreter.cpp
AbstractMachine/Configuration.cpp
Parser/Parser.cpp
Printer/Printer.cpp
)
serenity_lib(LibWasm wasm)
target_link_libraries(LibWasm LibC LibCore)