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



_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to