-
Yes, the Add tag works for me too.
2009-06-15 15:51:18 UTC in Premake
-
Premake4 explicitly selects /Zi PDB generation on vs*. It would be nice to be able to turn that off in favor of embedded C7-compatible debug info, meaning option /Z7. Naturally, the linker options should match.
2009-03-17 20:47:54 UTC in Premake
-
Premake4 explicitly sets incremental linking on vs*. It would be nice to be able to turn that off.
2009-03-17 20:44:18 UTC in Premake
-
4.0-rc4 confirmed working on vs*.
2009-01-24 18:27:56 UTC in Premake
-
I can confirm that quoted postbuildcommands work correctly on the codeblocks target in Premake4. Thanks.
2009-01-24 18:00:34 UTC in Premake
-
In Premake 3.x, I used to be able to add files living above the project root to the project using a relative path, like this:
package.files = { matchfiles('../test_main.cpp') }
Doing the equivalent in Premake4:
files { '../test_main.cpp' }
doesn't insert the source file into the project. I also tried making it an absolute path, but that didn't work either.
2009-01-24 17:59:02 UTC in Premake
-
This line:
postbuildcommands { base_post_command:format(solution().location,"debug",project().name) }
causes the following error: attempt to index a nil value.
If either the solution() or project() call are removed, it works.
For more context, see my other bug #2518816; it's the same script.
2009-01-19 05:38:39 UTC in Premake
-
I'm putting in a post-build command to run unit tests automatically. The solution has two projects, a shared lib and a console app linked to that shlib project which runs unit tests. When I call the solution() function in order to get the location while building the command, it adds the post-build command to both projects in the solution (because they're linked?). If I take out the solution(...
2009-01-19 05:32:57 UTC in Premake
-
Premake 3.7
When linking a sibling package using the package.name, when that sibling package has specified an explicit package.targetprefix, the library name inserted as linker input into the dependent package's target project file is missing the prefix. This of course causes a link error.
This is only verified on vs200x targets.
2008-10-21 20:19:07 UTC in Premake
-
I also added a bug over at Code::Blocks.
http://developer.berlios.de/bugs/?func=detailbug&bug_id=14652&group_id=5358.
2008-10-08 15:27:27 UTC in Premake