This refactoring changes two significant things about how the debugserver build system works: (1) debugserver will include all appropriate architecture support, so we can now build arm or ppc debugservers (2) debugserver can be built by itself, so you don't have to configure all of LLDB in order to generate debugserver. llvm-svn: 308377
16 lines
413 B
CMake
16 lines
413 B
CMake
# Due to sources including headers like:
|
|
# #include "MacOSX/i386/DNBArchImplI386.h"
|
|
# we must include the grandparent directory...
|
|
include_directories(${LLDB_SOURCE_DIR}/tools/debugserver/source)
|
|
|
|
add_library(lldbDebugserverDarwin_DarwinLog
|
|
ActivityStore.cpp
|
|
DarwinLogCollector.cpp
|
|
LogFilter.cpp
|
|
LogFilterChain.cpp
|
|
LogFilterExactMatch.cpp
|
|
LogFilterRegex.cpp
|
|
LogMessage.cpp
|
|
LogMessageOsLog.cpp
|
|
)
|