forked from OSchip/llvm-project
56 lines
1.4 KiB
CMake
56 lines
1.4 KiB
CMake
set(LLVM_NO_RTTI 1)
|
|
|
|
if ( CMAKE_SYSTEM_NAME MATCHES "Linux" )
|
|
include_directories(
|
|
../../../../llvm/include
|
|
../../source/Plugins/Process/Linux
|
|
../../source/Plugins/Process/POSIX
|
|
)
|
|
endif ()
|
|
|
|
if ( CMAKE_SYSTEM_NAME MATCHES "FreeBSD" )
|
|
include_directories(
|
|
../../../../llvm/include
|
|
../../source/Plugins/Process/FreeBSD
|
|
../../source/Plugins/Process/POSIX
|
|
)
|
|
endif ()
|
|
|
|
include_directories(../../source)
|
|
|
|
include(../../cmake/LLDBDependencies.cmake)
|
|
|
|
if (BUILD_SHARED_LIBS )
|
|
add_lldb_executable(lldb-server
|
|
lldb-server.cpp
|
|
lldb-gdbserver.cpp
|
|
lldb-platform.cpp
|
|
)
|
|
|
|
target_link_libraries(lldb-server liblldb)
|
|
else()
|
|
add_lldb_executable(lldb-server
|
|
lldb-server.cpp
|
|
lldb-gdbserver.cpp
|
|
lldb-platform.cpp
|
|
../../source/lldb.cpp
|
|
)
|
|
|
|
# The Darwin linker doesn't understand --start-group/--end-group.
|
|
if (LLVM_COMPILER_IS_GCC_COMPATIBLE AND NOT "${CMAKE_SYSTEM_NAME}" MATCHES "Darwin")
|
|
target_link_libraries(lldb-server
|
|
-Wl,--start-group ${LLDB_USED_LIBS} -Wl,--end-group)
|
|
else()
|
|
target_link_libraries(lldb-server ${LLDB_USED_LIBS})
|
|
endif()
|
|
target_link_libraries(lldb-server ${CLANG_USED_LIBS})
|
|
llvm_config(lldb-server ${LLVM_LINK_COMPONENTS})
|
|
|
|
target_link_libraries(lldb-server ${LLDB_SYSTEM_LIBS})
|
|
endif()
|
|
|
|
set_target_properties(lldb-server PROPERTIES VERSION ${LLDB_VERSION})
|
|
|
|
install(TARGETS lldb-server
|
|
RUNTIME DESTINATION bin)
|