ladybird/Userland/Libraries/LibJIT/CMakeLists.txt
Andreas Kling 5b87d26027 LibJIT+LibJS: Move JIT::Assembler into a new LibJIT library
This will allow other parts of the system to generate machine code
at runtime. :^)
2023-10-27 19:07:22 +02:00

6 lines
104 B
CMake

set(SOURCES
Assembler.cpp
)
serenity_lib(LibJIT jit)
target_link_libraries(LibJIT PRIVATE LibCore)