Improvement help #1804
-
Hello and thank you for a great software. It's a big pleasure using it.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Default values are baked into the
Then it won't work as expected. Users on systems with another compiler as the default should specify the toolset. I believe there's a Premake option for this already,
There's the general docs here, which contains a whole section on extending Premake, here. |
Beta Was this translation helpful? Give feedback.
Default values are baked into the
wks
,prj
andcfg
objects during the generation process. In the case of the module that you've linked, theexport-compile-commands
doesn't specify a default toolset, so it will benil
unless the user explicitly sets it, runs on a Darwin-based OS (Premake sets this globally) or you default it at the point you require it (as is done in the module currently).Then it won't work as expected. Users on systems with another compiler as the default should specify the toolset. I believe there's a Premake option for this already,
-…