Skip to content
New issue

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

XML in Codelite workspace is incorrectly escaped #744

Closed
RicoP opened this issue Apr 16, 2017 · 1 comment
Closed

XML in Codelite workspace is incorrectly escaped #744

RicoP opened this issue Apr 16, 2017 · 1 comment

Comments

@RicoP
Copy link

RicoP commented Apr 16, 2017

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=\&quot;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:

local active = iif(prj.name == wks.startproject, ' Active="Yes"', '')

maybe iif or _x do some escaping internally which messes up the quotation character.

@RicoP
Copy link
Author

RicoP commented Apr 16, 2017

could be similar to #725

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant