[Lldb-commits] [PATCH] D68007: [lldb] Move swig call from python code to cmake

Alex Langford via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Sep 25 11:00:50 PDT 2019


xiaobai added inline comments.


================
Comment at: lldb/trunk/scripts/CMakeLists.txt:5
+  ${LLDB_SOURCE_DIR}/include/lldb/API/*.h
+  ${LLDB_SOURCE_DIR}/include/lldb/*.h
 )
----------------
hhb wrote:
> xiaobai wrote:
> > Doesn't this now include the `lldb-private` headers now? Is that intended?
> Oh sorry. Will send a change to fix. Is there an easy way to exclude a pattern in file() call?
You can use `EXCLUDE` but I'm not sure that works with `file(GLOB)`. It might be better just to enumerate all the headers you want to use instead of globbing.


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D68007/new/

https://reviews.llvm.org/D68007





More information about the lldb-commits mailing list