Changeset View
Changeset View
Standalone View
Standalone View
lldb/trunk/cmake/LLDBDependencies.cmake
Show First 20 Lines • Show All 83 Lines • ▼ Show 20 Lines | list(APPEND LLDB_USED_LIBS | ||||
) | ) | ||||
endif () | endif () | ||||
# Linux-only libraries | # Linux-only libraries | ||||
if ( CMAKE_SYSTEM_NAME MATCHES "Linux" ) | if ( CMAKE_SYSTEM_NAME MATCHES "Linux" ) | ||||
list(APPEND LLDB_USED_LIBS | list(APPEND LLDB_USED_LIBS | ||||
lldbPluginProcessLinux | lldbPluginProcessLinux | ||||
lldbPluginProcessPOSIX | lldbPluginProcessPOSIX | ||||
lldbPluginProcessElfCore | |||||
) | ) | ||||
endif () | endif () | ||||
# FreeBSD-only libraries | # FreeBSD-only libraries | ||||
if ( CMAKE_SYSTEM_NAME MATCHES "FreeBSD" ) | if ( CMAKE_SYSTEM_NAME MATCHES "FreeBSD" ) | ||||
list(APPEND LLDB_USED_LIBS | list(APPEND LLDB_USED_LIBS | ||||
lldbPluginProcessFreeBSD | lldbPluginProcessFreeBSD | ||||
lldbPluginProcessPOSIX | lldbPluginProcessPOSIX | ||||
lldbPluginProcessElfCore | |||||
) | ) | ||||
endif () | endif () | ||||
# Darwin-only libraries | # Darwin-only libraries | ||||
if ( CMAKE_SYSTEM_NAME MATCHES "Darwin" ) | if ( CMAKE_SYSTEM_NAME MATCHES "Darwin" ) | ||||
set(LLDB_VERS_GENERATED_FILE ${LLDB_BINARY_DIR}/source/LLDB_vers.c) | set(LLDB_VERS_GENERATED_FILE ${LLDB_BINARY_DIR}/source/LLDB_vers.c) | ||||
add_custom_command(OUTPUT ${LLDB_VERS_GENERATED_FILE} | add_custom_command(OUTPUT ${LLDB_VERS_GENERATED_FILE} | ||||
COMMAND ${LLDB_SOURCE_DIR}/scripts/generate-vers.pl | COMMAND ${LLDB_SOURCE_DIR}/scripts/generate-vers.pl | ||||
▲ Show 20 Lines • Show All 91 Lines • Show Last 20 Lines |