1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 18:10:56 +09:00
ladybird/Userland/Libraries/LibJIT/CMakeLists.txt

14 lines
316 B
CMake

set(SOURCES
Assembler.cpp
GDB.cpp
)
if(NOT APPLE AND NOT WIN32 AND NOT EMSCRIPTEN)
list(APPEND SOURCES GDBElf.cpp)
else()
list(APPEND SOURCES GDBUnsupported.cpp)
endif()
serenity_lib(LibJIT jit)
if(NOT APPLE AND NOT WIN32 AND NOT EMSCRIPTEN)
target_link_libraries(LibJIT PRIVATE LibELF)
endif()