nitc :: PbxFile :: description
# PBX description of this file
private fun description: Writable
do
var extra = ""
var cflags = cflags
if not cflags.is_empty then extra = "\nsettings = \{COMPILER_FLAGS = \"{cflags}\"; \};"
return """
{{{ref_uuid}}} /* {{{doc}}} */ = {
isa = PBXFileReference;
fileEncoding = 4;
lastKnownFileType = {{{file_type}}};
path = '{{{path}}}';
sourceTree = "<group>";{{{extra}}}
};
"""
end
src/platform/xcode_templates.nit:109,2--125,4