mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-22 23:39:24 +00:00
8da0bf3b7c
llvm-svn: 221570
14 lines
376 B
CMake
14 lines
376 B
CMake
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
add_subdirectory(debugserver)
|
|
endif()
|
|
add_subdirectory(driver)
|
|
if (NOT __ANDROID_NDK__)
|
|
add_subdirectory(lldb-mi)
|
|
endif()
|
|
if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
add_subdirectory(lldb-gdbserver)
|
|
endif()
|
|
if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows")
|
|
add_subdirectory(lldb-platform)
|
|
endif()
|