summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWasm/CMakeLists.txt
blob: be48143aef065270f23a2b0b40b5387d9fa945ff (plain)
1
2
3
4
5
6
7
8
9
10
11
set(SOURCES
    AbstractMachine/AbstractMachine.cpp
    AbstractMachine/BytecodeInterpreter.cpp
    AbstractMachine/Configuration.cpp
    AbstractMachine/Validator.cpp
    Parser/Parser.cpp
    Printer/Printer.cpp
)

serenity_lib(LibWasm wasm)
target_link_libraries(LibWasm LibC LibCore)