Skip to content

Commit 534de00

Browse files
Merge pull request #2403 from artamonovoleg/master
fix typo in xcode projects generator
2 parents f120688 + f2a81ce commit 534de00

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

modules/xcode/tests/test_xcode_dependencies.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
test.capture [[
8181
/* Begin PBXBuildFile section */
8282
1BC538B0FA67D422AF49D6F0 /* libMyProject2-d.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 107168B810144BEA4A68FEF8 /* libMyProject2-d.dylib */; };
83-
6514841E8D4F3CD074EACA5E /* libMyProject2-d.dylib in Embed Libraries */ = {isa = PBXBuildFile; fileRef = 107168B810144BEA4A68FEF8 /* libMyProject2-d.dylib */; };
83+
3C920BDD1B34A74FD016AA1D /* libMyProject2-d.dylib in Embed Libraries */ = {isa = PBXBuildFile; fileRef = 107168B810144BEA4A68FEF8 /* libMyProject2-d.dylib */; };
8484
/* End PBXBuildFile section */
8585
]]
8686
end
@@ -96,7 +96,7 @@
9696
test.capture [[
9797
/* Begin PBXBuildFile section */
9898
1BC538B0FA67D422AF49D6F0 /* libMyProject2-d.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 107168B810144BEA4A68FEF8 /* libMyProject2-d.dylib */; };
99-
6514841E8D4F3CD074EACA5E /* libMyProject2-d.dylib in Embed Libraries */ = {isa = PBXBuildFile; fileRef = 107168B810144BEA4A68FEF8 /* libMyProject2-d.dylib */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
99+
3C920BDD1B34A74FD016AA1D /* libMyProject2-d.dylib in Embed Libraries */ = {isa = PBXBuildFile; fileRef = 107168B810144BEA4A68FEF8 /* libMyProject2-d.dylib */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
100100
/* End PBXBuildFile section */
101101
]]
102102
end
@@ -236,7 +236,7 @@ function suite.PBXFrameworksBuildPhase_ListsDependencies_OnSharedLibWithTargetEx
236236
dstPath = "";
237237
dstSubfolderSpec = 10;
238238
files = (
239-
6514841E8D4F3CD074EACA5E /* MyProject2 in Projects */,
239+
3C920BDD1B34A74FD016AA1D /* MyProject2 in Projects */,
240240
);
241241
name = "Embed Libraries";
242242
runOnlyForDeploymentPostprocessing = 0;

modules/xcode/tests/test_xcode_project.lua

+6-6
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,14 @@
143143
test.capture [[
144144
/* Begin PBXBuildFile section */
145145
12F1B82D44EB02DFBECA3E6D /* E.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A817AE35FEA518A7D71E2C75 /* E.framework */; };
146-
6557012668C7D358EA347766 /* E.framework in Embed Libraries */ = {isa = PBXBuildFile; fileRef = A817AE35FEA518A7D71E2C75 /* E.framework */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
146+
773ADFBAA9342A6C231365FA /* E.framework in Embed Libraries */ = {isa = PBXBuildFile; fileRef = A817AE35FEA518A7D71E2C75 /* E.framework */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
147147
3C98627697D9B5E86B3400B6 /* libB.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D413533EEB25EE70DB41E97E /* libB.dylib */; };
148-
AC7C2020DB2274123463CE60 /* libB.dylib in Embed Libraries */ = {isa = PBXBuildFile; fileRef = D413533EEB25EE70DB41E97E /* libB.dylib */; };
148+
3369CB838EAB1EF5620569C3 /* libB.dylib in Embed Libraries */ = {isa = PBXBuildFile; fileRef = D413533EEB25EE70DB41E97E /* libB.dylib */; };
149149
91686CDFDECB631154EA631F /* libA.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F9AE5C74A870BB9926CD407 /* libA.dylib */; };
150-
E054F1BF0EFB45B1683C9FFF /* libA.dylib in Embed Libraries */ = {isa = PBXBuildFile; fileRef = 5F9AE5C74A870BB9926CD407 /* libA.dylib */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
150+
9C3456CCE9974CFE5FB64D0C /* libA.dylib in Embed Libraries */ = {isa = PBXBuildFile; fileRef = 5F9AE5C74A870BB9926CD407 /* libA.dylib */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
151151
A7E42B5676077F08FD15D196 /* libC.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CF0547FE2A469B70FDA0E63E /* libC.dylib */; };
152152
F56B754B2764BFFDA143FB8B /* D.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F3987C734A25E6E5229EFAB3 /* D.framework */; };
153-
966D8A4599DE5C771B4B0085 /* D.framework in Embed Libraries */ = {isa = PBXBuildFile; fileRef = F3987C734A25E6E5229EFAB3 /* D.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
153+
59B49CD88BADE78A058D2318 /* D.framework in Embed Libraries */ = {isa = PBXBuildFile; fileRef = F3987C734A25E6E5229EFAB3 /* D.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
154154
/* End PBXBuildFile section */
155155
]]
156156
end
@@ -629,8 +629,8 @@
629629
dstPath = "";
630630
dstSubfolderSpec = 10;
631631
files = (
632-
E054F1BF0EFB45B1683C9FFF /* libA.dylib in Frameworks */,
633-
966D8A4599DE5C771B4B0085 /* D.framework in Frameworks */,
632+
9C3456CCE9974CFE5FB64D0C /* libA.dylib in Frameworks */,
633+
59B49CD88BADE78A058D2318 /* D.framework in Frameworks */,
634634
);
635635
name = "Embed Libraries";
636636
runOnlyForDeploymentPostprocessing = 0;

modules/xcode/xcode_project.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
node.buildid = xcode.newid(node.name, "build", nodePath)
162162

163163
if xcode.shouldembed(tr, node) then
164-
node.embedid = xcode.newid(node.name, "embed", nodepath)
164+
node.embedid = xcode.newid(node.name, "embed", nodePath)
165165
end
166166
end
167167

0 commit comments

Comments
 (0)