1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 05:34:58 +00:00
serenity/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()