Skip to content

Commit 1f421c9

Browse files
authored
Fixed sorting of ProjectRefs when generating project files for xcode. (#126)
1 parent 8eebd86 commit 1f421c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylib/gyp/xcodeproj_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2990,7 +2990,7 @@ def AddOrGetProjectReference(self, other_pbxproject):
29902990
# Xcode seems to sort this list case-insensitively
29912991
self._properties["projectReferences"] = sorted(
29922992
self._properties["projectReferences"],
2993-
key=lambda x: x["ProjectRef"].Name().lower
2993+
key=lambda x: x["ProjectRef"].Name().lower()
29942994
)
29952995
else:
29962996
# The link already exists. Pull out the relevnt data.

0 commit comments

Comments
 (0)