Take 2, with missing cmake line fixed. Build tested on Ubuntu 14.04 with clang-3.6. See docs/structured_data/StructuredDataPlugins.md for details. differential review: https://reviews.llvm.org/D22976 reviewers: clayborg, jingham llvm-svn: 279202
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(lldbDebugserverMacOSX_DarwinLog
|
|
ActivityStore.cpp
|
|
DarwinLogCollector.cpp
|
|
LogFilter.cpp
|
|
LogFilterChain.cpp
|
|
LogFilterExactMatch.cpp
|
|
LogFilterRegex.cpp
|
|
LogMessage.cpp
|
|
LogMessageOsLog.cpp
|
|
)
|