Summary: This is the base for introduction of further features to support Process Tracing on NetBSD, in local and remote setup. This code is also a starting point to synchronize the development with other BSDs. Currently NetBSD is ahead and other systems can catch up. Sponsored by <The NetBSD Foundation> Reviewers: emaste, joerg, kettenis, labath Reviewed By: labath Subscribers: mgorny, #lldb Tags: #lldb Differential Revision: https://reviews.llvm.org/D31138 llvm-svn: 298408
20 lines
600 B
CMake
20 lines
600 B
CMake
if (CMAKE_SYSTEM_NAME MATCHES "Linux|Android")
|
|
add_subdirectory(Linux)
|
|
add_subdirectory(POSIX)
|
|
elseif (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
|
add_subdirectory(FreeBSD)
|
|
add_subdirectory(POSIX)
|
|
elseif (CMAKE_SYSTEM_NAME MATCHES "NetBSD")
|
|
add_subdirectory(NetBSD)
|
|
add_subdirectory(POSIX)
|
|
elseif (CMAKE_SYSTEM_NAME MATCHES "Windows")
|
|
add_subdirectory(Windows/Common)
|
|
elseif (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
add_subdirectory(MacOSX-Kernel)
|
|
add_subdirectory(mach-core)
|
|
endif()
|
|
add_subdirectory(gdb-remote)
|
|
add_subdirectory(Utility)
|
|
add_subdirectory(elf-core)
|
|
add_subdirectory(minidump)
|