Samuel Surtees

Results 127 comments of Samuel Surtees

I don't believe this functionality exists, I'm not sure how that would work for VS or XCode, can either of them be instructed to not link?

@piotrdz Can you elaborate on why linking the sibling project normally is not an option? Having the linking decorators being handled properly for sibling projects is non-trivial but ignoring them...

@kevza Can you submit that as a PR? Otherwise, I'll create a PR after work.

Correct, those are the C# values. The C++ values are the element names and they're not validated. So, instead of `Compile` like C#, it's `ClCompile` for C++. Handling C++ that...

@nickclark2016 I'm not sure this is a bug, `None` isn't defining the type of the output, it's defining the type of project. Similar to `Utility`, `Makefile` or `SharedItems`. @Dahrkael if...

We don't assume `--cc=mingw` when running `gmake2` with `--os=windows` - I'm not sure what the expected environment is. This is the line that generates that directory: https://github.com/premake/premake-core/blob/6b8cabad1640ee7fa2cefbc1a526afbb859d393f/scripts/package.lua#L215 I'm not aware...

I agree - we're forced to update every time an iPad is updated to the latest version of iOS anyway.

`defaultplatform` for `gmake` and `gmake2` just controls which `config` value it defaults to when you call `make` without specifying `config=x`. While I can see value in `defaultplatform` creating additional config...

[`compileas`](https://premake.github.io/docs/compileas/) overrides the language being used to compile. If the files aren't being compiled, there's nothing to override. [`buildaction`](https://premake.github.io/docs/buildaction/) overrides the action taken to build the file; None -> ClCompile...

> Here the issue is that when i'm specifying `windows-msbuild` it is not applying any migration to the vs2012 toolset MSBuild does not provide any migration tooling, that is part...