Re: [cmake-developers] Referencing all sources in compile command

2019-01-02 Thread Saleem Abdulrasool
On Wed, Jan 2, 2019 at 10:20 AM Ben Boeckel wrote: > On Mon, Dec 31, 2018 at 15:30:28 -0800, Saleem Abdulrasool wrote: > > AFAIK, the driver interface is supposed to be stable. The frontend > options > > are not, but, the same holds true for clang as well. The driver options > > are stable, and

Re: [cmake-developers] Referencing all sources in compile command

2019-01-02 Thread Ben Boeckel via cmake-developers
On Mon, Dec 31, 2018 at 15:30:28 -0800, Saleem Abdulrasool wrote: > AFAIK, the driver interface is supposed to be stable. The frontend options > are not, but, the same holds true for clang as well. The driver options > are stable, and we (as the clang developer community) aim to not break > that.

Re: [cmake-developers] Referencing all sources in compile command

2018-12-31 Thread Saleem Abdulrasool
Responses inline. On Mon, Dec 31, 2018 at 2:17 PM Ben Boeckel wrote: > On Sun, Dec 30, 2018 at 13:09:23 -0800, Saleem Abdulrasool wrote: > > I was looking at supporting Swift as a language in CMake. I know that > > CMake has some preliminary support that assumes that you are building on > > mac

Re: [cmake-developers] Referencing all sources in compile command

2018-12-31 Thread Saleem Abdulrasool
Hi Kyle, Thanks, I did look at generator expressions. However, they are expanded outside the scope of the placeholders and will be emitted into the generated build file, which makes them unusable in this scenario. On Mon, Dec 31, 2018 at 7:14 AM Kyle Edwards wrote: > On Sun, 2018-12-30 at 13:0

Re: [cmake-developers] Referencing all sources in compile command

2018-12-31 Thread Ben Boeckel via cmake-developers
On Sun, Dec 30, 2018 at 13:09:23 -0800, Saleem Abdulrasool wrote: > I was looking at supporting Swift as a language in CMake. I know that > CMake has some preliminary support that assumes that you are building on > macOS with Xcode. I am trying to support building swift libraries and > executable

Re: [cmake-developers] Referencing all sources in compile command

2018-12-31 Thread Kyle Edwards via cmake-developers
On Sun, 2018-12-30 at 13:09 -0800, Saleem Abdulrasool wrote: > Hi, > > I was looking at supporting Swift as a language in CMake.  I know > that CMake has some preliminary support that assumes that you are > building on macOS with Xcode.  I am trying to support building swift > libraries and execut

[cmake-developers] Referencing all sources in compile command

2018-12-30 Thread Saleem Abdulrasool
Hi, I was looking at supporting Swift as a language in CMake. I know that CMake has some preliminary support that assumes that you are building on macOS with Xcode. I am trying to support building swift libraries and executables on Linux and Windows. There is some preliminary work on this that