mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-10 18:11:19 +00:00
40889cd75a
Summary: This switches the decision as to whether or not to lldb-server should be built to check the same flag that was added that controls whether or not it is added as a dependency to the 'lldb' target. It also sets that flag on FreeBSD to maintain parity with the existing build configuration / situation on FreeBSD. Reviewers: labath, emaste, tfiala Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D12925 llvm-svn: 247913
13 lines
301 B
CMake
13 lines
301 B
CMake
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
add_subdirectory(darwin-debug)
|
|
add_subdirectory(debugserver)
|
|
endif()
|
|
add_subdirectory(argdumper)
|
|
add_subdirectory(driver)
|
|
if (NOT __ANDROID_NDK__)
|
|
add_subdirectory(lldb-mi)
|
|
endif()
|
|
if (LLDB_CAN_USE_LLDB_SERVER)
|
|
add_subdirectory(lldb-server)
|
|
endif()
|