We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to figure out where the bug is here, but if I generate a solution and projects with this setup:
Solution MySolution configurations { "Debug", "Release" } platforms {"Win32", "x64", "Durango" } project MyProject ....
(And yes, I have overriden some functions in premake to allow the Durango platform)
It outputs them in the XML in this order:
Debug|Durango Debug|Win32 Debug|x64 Release|Durango Release|Win32 Release|x64
However, when I load the projects into Visual Studio 2012, Visual studio helpfully reorders the configurations to be in the following order:
Debug|Win32 Debug|x64 Debug|Durango Release|Win32 Release|x64 Release|Durango
This wouldn't be a big deal except you have to deal with the reload of the projects.
Is there a sort function or something that is making premake not pay attention to the order of platforms as I specify them?
The text was updated successfully, but these errors were encountered:
This seems to be some local process, not visual studio. So never mind. This isn't a concern anymore.
Sorry, something went wrong.
Merge pull request premake#117 from tdijck/new-package-manager
9372be3
New package manager
af01ad5
No branches or pull requests
I'm trying to figure out where the bug is here, but if I generate a solution and projects with this setup:
(And yes, I have overriden some functions in premake to allow the Durango platform)
It outputs them in the XML in this order:
However, when I load the projects into Visual Studio 2012, Visual studio helpfully reorders the configurations to be in the following order:
This wouldn't be a big deal except you have to deal with the reload of the projects.
Is there a sort function or something that is making premake not pay attention to the order of platforms as I specify them?
The text was updated successfully, but these errors were encountered: