premake-core
premake-core copied to clipboard
Premake
``` project "A" kind "StaticLib" ... project "B" kind "StaticLib" links {"A"} ... project "C" kind "StaticLib" links {"B"} project "App" kind "ConsoleApp links {"C"} --> not going to be...
Hi, I've been using the Android integration in Premake for a while now for my projects. The Android integration creates what VS used to call a "Native Activity" and with...
**What does this PR do?** Just some test suite cleanups. **How does this PR change Premake's behavior?** Test suite now is more consistent with the directory it runs the tests...
**What does this PR do?** Adds a new interactive debugger based on [debugger.lua](https://github.com/slembcke/debugger.lua). Premake already contains some remote debugger integration (MobDebug), however this PR introduces an integrated debugger, any call...
**What does this PR do?** This adds some improvements to `basedir` so it can be used to specify a base directory for `file`, `path` and `directory` fields. **How does this...
**What does this PR do?** When Lua reports a stack traceback, it prints the path to the files. But by default, right now, it's limited to 60 characters, which gets...
**What does this PR do?** Cleans up warnings from the codebase and some other minor cleanups. Codebase now compiles without warnings for me. **How does this PR change Premake's behavior?**...
**What does this PR do?** Add support for setting .NET sdk using dotnetsdk option. (only on new format projects otherwise just use the defautl) Web Razor Worker Blazor (BlazorWebAssembly) WindowsDesktop...
**What does this PR do?** Move api.register in a more logical place **How does this PR change Premake's behavior?** No changes **Did you check all the boxes?** - [x] Focus...
I started using Premake yesterday and I'm hoping to start using it instead of qmake. It's been great so far, thanks for an awesome tool! I've got most things working,...