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
When I use premake when building a codelite project, the workspace file is incorrectly escaped and can't be interpreted by codelite.
the .workspace file contains a line like that for start project <project Name="foo" Path="projects/foo.project" Active=\"Yes\&qout;/>
<project Name="foo" Path="projects/foo.project" Active=\"Yes\&qout;/>
the correct XML would be of course
<project Name="foo" Path="projects/foo.project" Active="Yes"/>
I assume the error is somewhere here:
premake-core/modules/codelite/codelite_workspace.lua
Line 47 in 7f1b426
maybe iif or _x do some escaping internally which messes up the quotation character.
The text was updated successfully, but these errors were encountered:
could be similar to #725
Sorry, something went wrong.
No branches or pull requests
When I use premake when building a codelite project, the workspace file is incorrectly escaped and can't be interpreted by codelite.
the .workspace file contains a line like that for start project
<project Name="foo" Path="projects/foo.project" Active=\"Yes\&qout;/>
the correct XML would be of course
<project Name="foo" Path="projects/foo.project" Active="Yes"/>
I assume the error is somewhere here:
premake-core/modules/codelite/codelite_workspace.lua
Line 47 in 7f1b426
maybe iif or _x do some escaping internally which messes up the quotation character.
The text was updated successfully, but these errors were encountered: