Jess Perkins
Jess Perkins
Thanks @ChrisDrostUSE…I need `tsconfig.json` to provide the project settings for VS Code. I'd like to keep electron-compile in place, as I'm trying to do things the Electron Forge Way™️ if...
You would use [buildaction](https://premake.github.io/docs/buildaction/) for that. ```lua filter { 'files:**.txt' } buildaction 'Copy' ``` This might not be supported for all exporters yet, but pretty sure it should work with...
> Is there somewhere that can be looked at to find all actions for C++? There does not seem to be. Here's everything I was able to find in sources…...
I'd like to hear what @samsinsane has to say, but I'd be inclined to go ahead and change it. Apple pushes pretty aggressively to keep people near the latest versions.
It sounds like you already had better informed opinion than I did. :) I'm fine with targeting specific Xcode versions; we do it for Visual Studio already. I don't know...
I just had to sort this for [premake-next](https://github.com/starkos/premake-next). The approach I came up with there was… ```sh # Export for latest Xcode version premake xcode # Target a specific version...
> Considering there are 4 community modules (2 already listed on the website…each with their own features…would user experience of the visitors of the page be better if all NDK...
@Triang3l Do you want to split out the Android/NDK group as part of this PR, or should we go ahead and merge this one now?
@Triang3l Where do we stand one this one? Are you still up for breaking out a section for Android, or should we go ahead and merge this as is?
> An early win was findProject is very slow. We optimised this by adding an already lowered and a hashed form of the name to the prj at creation time,...