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

serenity_lib(LibWasm wasm)
target_link_libraries(LibWasm LibC LibCore)