premake-core icon indicating copy to clipboard operation
premake-core copied to clipboard

Premake

Results 188 premake-core issues
Sort by recently updated
recently updated
newest added

**What problem will this solve?** Generation on windows (for gmake or codelite) doesn't mean we will use them in command batch shell. Shell provided by msys2 might be used. **What...

enhancement

Hello, I am trying to add a NuGet package to my project and for some reason its trying to import the "*.targets" file from the wrong directory. I noticed that...

bug

**What's your question?** Is it possible to use the msvc compiler with gmake or gmake2? I want to code in vscode but use the vs compiler so I can use...

question

My premake script has `sysincludedirs "./libs"` which goes under _Header Search Paths_ in the Xcode project setting. The command line output then turns this into `-I ./libs`. Found a similar...

**What's your question?** Hey! Im new to premake, Im surprised that I can't easily find any info about compile_commands.json. I've only found a couple of links to 5-6 years old...

question

How do I create link references that include aliases in the Visual Studio project using premake5? I am having an issue where some namespaces and classes exist in multiple DLLs...

question

Are custom toolchains supported in premake? Say for adding targets to MSBuild. If so how would you go about adding them to premake?

question

Premake always inserts `-L/usr/lib32` for GCC-like toolsets when compiling for the `x86` architecture, which when cross-compiling a C++ project with a mingw-w64 toolchain, breaks linking against libstdc++, as shown here...

bug

I have a project which includes a small component written in Assembly. The Makefile I have looks like this: ```make # component.asm pulls in code.bin via incbin directive component.bin: src/component.asm...

question

```lua workspace "example" configurations { "Debug", "Release" } platforms { "Windows", "Linux" } if os.host() == "linux" then defaultplatform "Linux" end -- ... ``` Running `make config=release` doesn't work, I...

bug