[Lldb-commits] [PATCH] D13535: Fix cmake build on OSX after r249434.

Bruce Mitchener via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 8 05:42:09 PDT 2015


brucem added a comment.

The way to do this correctly is something like

  ADD_CUSTOM_COMMAND(
    OUTPUT whatever.output.file.c
    COMMAND ... whatever ...
    DEPENDS ... whatever ...
  )
  ADD_CUSTOM_TARGET(whatever-target-name
                    ALL
                    DEPENDS whatever.output.file.c)


Repository:
  rL LLVM

http://reviews.llvm.org/D13535





More information about the lldb-commits mailing list