Skip to content

Commit 23b487c

Browse files
committed
Added testyuv to the SDLTest Xcode project
1 parent 015cc6a commit 23b487c

File tree

1 file changed

+79
-2
lines changed

1 file changed

+79
-2
lines changed

Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj

Lines changed: 79 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@
8787
00794EF009D23739003FC8A1 /* utf8.txt in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6309D20839003FC8A1 /* utf8.txt */; };
8888
00794EF709D237DE003FC8A1 /* moose.dat in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5E09D20839003FC8A1 /* moose.dat */; };
8989
453774A5120915E3002F0F45 /* testshape.c in Sources */ = {isa = PBXBuildFile; fileRef = 453774A4120915E3002F0F45 /* testshape.c */; };
90-
66E88E8B203B778F0004D44E /* testyuv_cvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 66E88E8A203B778F0004D44E /* testyuv_cvt.c */; };
9190
A1A8594E2BC72FC20045DD6C /* testautomation_properties.c in Sources */ = {isa = PBXBuildFile; fileRef = A1A859482BC72FC20045DD6C /* testautomation_properties.c */; };
9291
A1A859502BC72FC20045DD6C /* testautomation_subsystems.c in Sources */ = {isa = PBXBuildFile; fileRef = A1A859492BC72FC20045DD6C /* testautomation_subsystems.c */; };
9392
A1A859522BC72FC20045DD6C /* testautomation_log.c in Sources */ = {isa = PBXBuildFile; fileRef = A1A8594A2BC72FC20045DD6C /* testautomation_log.c */; };
@@ -274,6 +273,12 @@
274273
F3CB570D2A78986000766177 /* SDL3.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL3.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
275274
F3CB570F2A78986700766177 /* SDL3.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL3.framework */; };
276275
F3CB57102A78986700766177 /* SDL3.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL3.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
276+
F3DB65DF2E9DA90000568044 /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
277+
F3DB65E12E9DA90000568044 /* SDL3.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL3.framework */; };
278+
F3DB65E52E9DA90000568044 /* SDL3.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL3.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
279+
F3DB65EE2E9DA95D00568044 /* testyuv.png in Resources */ = {isa = PBXBuildFile; fileRef = F3DB65ED2E9DA95D00568044 /* testyuv.png */; };
280+
F3DB65F12E9DA98E00568044 /* testyuv.c in Sources */ = {isa = PBXBuildFile; fileRef = F3DB65EF2E9DA98E00568044 /* testyuv.c */; };
281+
F3DB65F22E9DA9B400568044 /* testyuv_cvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 66E88E8A203B778F0004D44E /* testyuv_cvt.c */; };
277282
/* End PBXBuildFile section */
278283

279284
/* Begin PBXContainerItemProxy section */
@@ -1193,6 +1198,17 @@
11931198
name = "Embed Frameworks";
11941199
runOnlyForDeploymentPostprocessing = 0;
11951200
};
1201+
F3DB65E42E9DA90000568044 /* Embed Frameworks */ = {
1202+
isa = PBXCopyFilesBuildPhase;
1203+
buildActionMask = 2147483647;
1204+
dstPath = "";
1205+
dstSubfolderSpec = 10;
1206+
files = (
1207+
F3DB65E52E9DA90000568044 /* SDL3.framework in Embed Frameworks */,
1208+
);
1209+
name = "Embed Frameworks";
1210+
runOnlyForDeploymentPostprocessing = 0;
1211+
};
11961212
/* End PBXCopyFilesBuildPhase section */
11971213

11981214
/* Begin PBXFileReference section */
@@ -1344,6 +1360,10 @@
13441360
F3C17CD628E416AC00E1A26D /* testgeometry.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testgeometry.c; sourceTree = "<group>"; };
13451361
F3C17CDC28E416CF00E1A26D /* testgeometry.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testgeometry.app; sourceTree = BUILT_PRODUCTS_DIR; };
13461362
F3C2CAC52C5C8BD6004D7998 /* unifont-15.1.05.hex */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "unifont-15.1.05.hex"; sourceTree = "<group>"; };
1363+
F3DB65E92E9DA90000568044 /* testyuv.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testyuv.app; sourceTree = BUILT_PRODUCTS_DIR; };
1364+
F3DB65ED2E9DA95D00568044 /* testyuv.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = testyuv.png; sourceTree = "<group>"; };
1365+
F3DB65EF2E9DA98E00568044 /* testyuv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testyuv.c; sourceTree = "<group>"; };
1366+
F3DB65F02E9DA98E00568044 /* testyuv_cvt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = testyuv_cvt.h; sourceTree = "<group>"; };
13471367
/* End PBXFileReference section */
13481368

13491369
/* Begin PBXFrameworksBuildPhase section */
@@ -1723,6 +1743,14 @@
17231743
);
17241744
runOnlyForDeploymentPostprocessing = 0;
17251745
};
1746+
F3DB65E02E9DA90000568044 /* Frameworks */ = {
1747+
isa = PBXFrameworksBuildPhase;
1748+
buildActionMask = 2147483647;
1749+
files = (
1750+
F3DB65E12E9DA90000568044 /* SDL3.framework in Frameworks */,
1751+
);
1752+
runOnlyForDeploymentPostprocessing = 0;
1753+
};
17261754
/* End PBXFrameworksBuildPhase section */
17271755

17281756
/* Begin PBXGroup section */
@@ -1737,6 +1765,7 @@
17371765
00794E4609D207B4003FC8A1 /* Resources */ = {
17381766
isa = PBXGroup;
17391767
children = (
1768+
F3DB65ED2E9DA95D00568044 /* testyuv.png */,
17401769
00794E5D09D20839003FC8A1 /* icon.png */,
17411770
00794E5E09D20839003FC8A1 /* moose.dat */,
17421771
00794E6109D20839003FC8A1 /* sample.png */,
@@ -1846,6 +1875,8 @@
18461875
F3C17C7328E40ADE00E1A26D /* testutils.c */,
18471876
083E4882006D86A17F000001 /* testver.c */,
18481877
0017993B10743FEF00F5D044 /* testwm.c */,
1878+
F3DB65EF2E9DA98E00568044 /* testyuv.c */,
1879+
F3DB65F02E9DA98E00568044 /* testyuv_cvt.h */,
18491880
66E88E8A203B778F0004D44E /* testyuv_cvt.c */,
18501881
083E4887006D86A17F000001 /* torturethread.c */,
18511882
);
@@ -1903,6 +1934,7 @@
19031934
F35E56AA298312CB00A43A5F /* testautomation.app */,
19041935
F36C34272C0F85DB00991150 /* testcamera.app */,
19051936
F3B7FD6A2D73FC630086D1D0 /* testpen.app */,
1937+
F3DB65E92E9DA90000568044 /* testyuv.app */,
19061938
);
19071939
name = Products;
19081940
sourceTree = "<group>";
@@ -2757,6 +2789,24 @@
27572789
productReference = F3C17CDC28E416CF00E1A26D /* testgeometry.app */;
27582790
productType = "com.apple.product-type.application";
27592791
};
2792+
F3DB65DC2E9DA90000568044 /* testyuv */ = {
2793+
isa = PBXNativeTarget;
2794+
buildConfigurationList = F3DB65E62E9DA90000568044 /* Build configuration list for PBXNativeTarget "testyuv" */;
2795+
buildPhases = (
2796+
F3DB65DD2E9DA90000568044 /* Sources */,
2797+
F3DB65E02E9DA90000568044 /* Frameworks */,
2798+
F3DB65E22E9DA90000568044 /* Resources */,
2799+
F3DB65E42E9DA90000568044 /* Embed Frameworks */,
2800+
);
2801+
buildRules = (
2802+
);
2803+
dependencies = (
2804+
);
2805+
name = testyuv;
2806+
productName = testalpha;
2807+
productReference = F3DB65E92E9DA90000568044 /* testyuv.app */;
2808+
productType = "com.apple.product-type.application";
2809+
};
27602810
/* End PBXNativeTarget section */
27612811

27622812
/* Begin PBXProject section */
@@ -2970,6 +3020,7 @@
29703020
BEC5678D0761D90500A33029 /* testtimer */,
29713021
BEC567A70761D90500A33029 /* testversion */,
29723022
0017992010743FB700F5D044 /* testwm */,
3023+
F3DB65DC2E9DA90000568044 /* testyuv */,
29733024
BEC567EA0761D90600A33029 /* torturethread */,
29743025
);
29753026
};
@@ -3011,6 +3062,14 @@
30113062
);
30123063
runOnlyForDeploymentPostprocessing = 0;
30133064
};
3065+
F3DB65E22E9DA90000568044 /* Resources */ = {
3066+
isa = PBXResourcesBuildPhase;
3067+
buildActionMask = 2147483647;
3068+
files = (
3069+
F3DB65EE2E9DA95D00568044 /* testyuv.png in Resources */,
3070+
);
3071+
runOnlyForDeploymentPostprocessing = 0;
3072+
};
30143073
/* End PBXResourcesBuildPhase section */
30153074

30163075
/* Begin PBXSourcesBuildPhase section */
@@ -3153,7 +3212,6 @@
31533212
buildActionMask = 2147483647;
31543213
files = (
31553214
002F345409CA202000EBEB88 /* testoverlay.c in Sources */,
3156-
66E88E8B203B778F0004D44E /* testyuv_cvt.c in Sources */,
31573215
F3C17C7F28E4101000E1A26D /* testutils.c in Sources */,
31583216
);
31593217
runOnlyForDeploymentPostprocessing = 0;
@@ -3445,6 +3503,16 @@
34453503
);
34463504
runOnlyForDeploymentPostprocessing = 0;
34473505
};
3506+
F3DB65DD2E9DA90000568044 /* Sources */ = {
3507+
isa = PBXSourcesBuildPhase;
3508+
buildActionMask = 2147483647;
3509+
files = (
3510+
F3DB65DF2E9DA90000568044 /* testutils.c in Sources */,
3511+
F3DB65F22E9DA9B400568044 /* testyuv_cvt.c in Sources */,
3512+
F3DB65F12E9DA98E00568044 /* testyuv.c in Sources */,
3513+
);
3514+
runOnlyForDeploymentPostprocessing = 0;
3515+
};
34483516
/* End PBXSourcesBuildPhase section */
34493517

34503518
/* Begin PBXTargetDependency section */
@@ -5142,6 +5210,15 @@
51425210
defaultConfigurationIsVisible = 0;
51435211
defaultConfigurationName = Debug;
51445212
};
5213+
F3DB65E62E9DA90000568044 /* Build configuration list for PBXNativeTarget "testyuv" */ = {
5214+
isa = XCConfigurationList;
5215+
buildConfigurations = (
5216+
F3DB65E72E9DA90000568044 /* Debug */,
5217+
F3DB65E82E9DA90000568044 /* Release */,
5218+
);
5219+
defaultConfigurationIsVisible = 0;
5220+
defaultConfigurationName = Debug;
5221+
};
51455222
/* End XCConfigurationList section */
51465223
};
51475224
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;

0 commit comments

Comments
 (0)