brintos

brintos / llvm-project-archived public Read only

0
0
Text · 582 B · 26343f9 Raw
25 lines · plain
1if ( CMAKE_SYSTEM_NAME MATCHES "Linux|Android|FreeBSD|NetBSD|OpenBSD" )2  list(APPEND EXTRA_PLUGINS lldbPluginProcessPOSIX)3endif()4 5if ( CMAKE_SYSTEM_NAME MATCHES "Windows" )6  list(APPEND EXTRA_PLUGINS lldbPluginProcessWindowsCommon)7endif ()8 9add_lldb_library(lldbInitialization10  SystemInitializerCommon.cpp11  SystemInitializer.cpp12  SystemLifetimeManager.cpp13 14  ADDITIONAL_HEADER_DIRS15    ${LLDB_INCLUDE_DIR}/lldb/Initialization16  LINK_COMPONENTS17    Support18  LINK_LIBS19    lldbCore20    lldbHost21    lldbPluginProcessGDBRemote22    ${EXTRA_PLUGINS}23    ${LLDB_SYSTEM_LIBS}24  )25