Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@
/* Begin PBXBuildFile section */
<% if (project.cpp) { %>
5E46D8CD2428F78900513E24 /* example.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E46D8CB2428F78900513E24 /* example.cpp */; };
<% } %>
<% if (project.swift) { %>
5E555C0D2413F4C50049A1A2 /* <%= project.name %>.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* <%= project.name %>.mm */; };
<% } else if (project.swift) { %>
5E555C0D2413F4C50049A1A2 /* <%= project.name %>.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* <%= project.name %>.m */; };
F4FF95D7245B92E800C19C63 /* <%= project.name %>.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4FF95D6245B92E800C19C63 /* <%= project.name %>.swift */; };
<% } else { %>
5E555C0D2413F4C50049A1A2 /* <%= project.name %>.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* <%= project.name %>.m */; };
<% } %>
5E555C0D2413F4C50049A1A2 /* <%= project.name %>.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* <%= project.name %>.mm */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
Expand All @@ -33,14 +35,14 @@
<% if (project.cpp) { %>
5E46D8CB2428F78900513E24 /* example.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = example.cpp; path = ../cpp/example.cpp; sourceTree = "<group>"; };
5E46D8CC2428F78900513E24 /* example.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = example.h; path = ../cpp/example.h; sourceTree = "<group>"; };
<% } %>
<% if (project.swift) { %>
B3E7B5891CC2AC0600A0062D /* <%= project.name %>.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = <%= project.name %>.mm; sourceTree = "<group>"; };
<% } else if (project.swift) { %>
B3E7B5891CC2AC0600A0062D /* <%= project.name %>.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = <%= project.name %>.m; sourceTree = "<group>"; };
F4FF95D5245B92E700C19C63 /* <%= project.name %>-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "<%= project.name %>-Bridging-Header.h"; sourceTree = "<group>"; };
F4FF95D6245B92E800C19C63 /* <%= project.name %>.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = <%= project.name %>.swift; sourceTree = "<group>"; };
<% } else { %>
B3E7B5881CC2AC0600A0062D /* <%= project.name %>.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = <%= project.name %>.h; sourceTree = "<group>"; };
B3E7B5891CC2AC0600A0062D /* <%= project.name %>.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = <%= project.name %>.mm; sourceTree = "<group>"; };
B3E7B5891CC2AC0600A0062D /* <%= project.name %>.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = <%= project.name %>.m; sourceTree = "<group>"; };
<% } %>
/* End PBXFileReference section */

Expand Down Expand Up @@ -69,14 +71,14 @@
<% if (project.cpp) { %>
5E46D8CB2428F78900513E24 /* example.cpp */,
5E46D8CC2428F78900513E24 /* example.h */,
<% } %>
<% if (project.swift) { %>
B3E7B5891CC2AC0600A0062D /* <%= project.name %>.mm */,
<% } else if (project.swift) { %>
F4FF95D6245B92E800C19C63 /* <%= project.name %>.swift */,
B3E7B5891CC2AC0600A0062D /* <%= project.name %>.m */,
F4FF95D5245B92E700C19C63 /* <%= project.name %>-Bridging-Header.h */,
<% } else { %>
<% } else { %>
B3E7B5881CC2AC0600A0062D /* <%= project.name %>.h */,
B3E7B5891CC2AC0600A0062D /* <%= project.name %>.mm */,
B3E7B5891CC2AC0600A0062D /* <%= project.name %>.m */,
<% } %>
134814211AA4EA7D00B7C361 /* Products */,
);
Expand Down Expand Up @@ -141,12 +143,12 @@
files = (
<% if (project.cpp) { %>
5E46D8CD2428F78900513E24 /* example.cpp in Sources */,
<% } %>
<% if (project.swift) { %>
5E555C0D2413F4C50049A1A2 /* <%= project.name %>.mm in Sources */,
<% } else if (project.swift) { %>
F4FF95D7245B92E800C19C63 /* <%= project.name %>.swift in Sources */,
B3E7B58A1CC2AC0600A0062D /* <%= project.name %>.m in Sources */,
<% } else { %>
5E555C0D2413F4C50049A1A2 /* <%= project.name %>.mm in Sources */,
B3E7B58A1CC2AC0600A0062D /* <%= project.name %>.m in Sources */,
<% } %>
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down