Skip to content

Commit 6586419

Browse files
committed
Added testpen to the Xcode test project
1 parent 292e431 commit 6586419

File tree

1 file changed

+83
-2
lines changed

1 file changed

+83
-2
lines changed

Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj

+83-2
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,9 @@
167167
F399C6512A7892D800C86979 /* testautomation_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = F399C6502A7892D800C86979 /* testautomation_intrinsics.c */; };
168168
F399C6522A7892D800C86979 /* testautomation_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = F399C6502A7892D800C86979 /* testautomation_intrinsics.c */; };
169169
F399C6552A78933100C86979 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F399C6542A78933000C86979 /* Cocoa.framework */; };
170+
F3B7FD642D73FC630086D1D0 /* SDL3.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL3.framework */; };
171+
F3B7FD662D73FC630086D1D0 /* SDL3.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL3.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
172+
F3B7FD6C2D73FC9E0086D1D0 /* testpen.c in Sources */ = {isa = PBXBuildFile; fileRef = F3B7FD6B2D73FC9E0086D1D0 /* testpen.c */; };
170173
F3C17C7728E40BC800E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
171174
F3C17C7928E40C6E00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
172175
F3C17C7B28E40D4E00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
@@ -717,6 +720,17 @@
717720
name = "Embed Frameworks";
718721
runOnlyForDeploymentPostprocessing = 0;
719722
};
723+
F3B7FD652D73FC630086D1D0 /* Embed Frameworks */ = {
724+
isa = PBXCopyFilesBuildPhase;
725+
buildActionMask = 2147483647;
726+
dstPath = "";
727+
dstSubfolderSpec = 10;
728+
files = (
729+
F3B7FD662D73FC630086D1D0 /* SDL3.framework in Embed Frameworks */,
730+
);
731+
name = "Embed Frameworks";
732+
runOnlyForDeploymentPostprocessing = 0;
733+
};
720734
F3CB568B2A7895F800766177 /* Embed Frameworks */ = {
721735
isa = PBXCopyFilesBuildPhase;
722736
buildActionMask = 2147483647;
@@ -1356,6 +1370,8 @@
13561370
F399C6492A78929400C86979 /* gamepadutils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gamepadutils.c; sourceTree = "<group>"; };
13571371
F399C6502A7892D800C86979 /* testautomation_intrinsics.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testautomation_intrinsics.c; sourceTree = "<group>"; };
13581372
F399C6542A78933000C86979 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
1373+
F3B7FD6A2D73FC630086D1D0 /* testpen.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testpen.app; sourceTree = BUILT_PRODUCTS_DIR; };
1374+
F3B7FD6B2D73FC9E0086D1D0 /* testpen.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testpen.c; sourceTree = "<group>"; };
13591375
F3C17C6A28E3FD4400E1A26D /* config.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = config.xcconfig; sourceTree = "<group>"; };
13601376
F3C17C7328E40ADE00E1A26D /* testutils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testutils.c; sourceTree = "<group>"; };
13611377
F3C17CD628E416AC00E1A26D /* testgeometry.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testgeometry.c; sourceTree = "<group>"; };
@@ -1732,6 +1748,14 @@
17321748
);
17331749
runOnlyForDeploymentPostprocessing = 0;
17341750
};
1751+
F3B7FD632D73FC630086D1D0 /* Frameworks */ = {
1752+
isa = PBXFrameworksBuildPhase;
1753+
buildActionMask = 2147483647;
1754+
files = (
1755+
F3B7FD642D73FC630086D1D0 /* SDL3.framework in Frameworks */,
1756+
);
1757+
runOnlyForDeploymentPostprocessing = 0;
1758+
};
17351759
F3C17CD928E416CF00E1A26D /* Frameworks */ = {
17361760
isa = PBXFrameworksBuildPhase;
17371761
buildActionMask = 2147483647;
@@ -1789,6 +1813,7 @@
17891813
083E4872006D84C97F000001 /* loopwave.c */,
17901814
0017958F1074216E00F5D044 /* testatomic.c */,
17911815
001795B01074222D00F5D044 /* testaudioinfo.c */,
1816+
F35E56CC2983130F00A43A5F /* testautomation.c */,
17921817
F35E56C42983130D00A43A5F /* testautomation_audio.c */,
17931818
F35E56BC2983130B00A43A5F /* testautomation_clipboard.c */,
17941819
F35E56BB2983130B00A43A5F /* testautomation_events.c */,
@@ -1815,7 +1840,6 @@
18151840
A1A8594B2BC72FC20045DD6C /* testautomation_time.c */,
18161841
F35E56BD2983130B00A43A5F /* testautomation_timer.c */,
18171842
F35E56C12983130C00A43A5F /* testautomation_video.c */,
1818-
F35E56CC2983130F00A43A5F /* testautomation.c */,
18191843
F36C342C2C0F869B00991150 /* testcamera.c */,
18201844
BBFC088E164C6820003E6A99 /* testcontroller.c */,
18211845
001797711074320D00F5D044 /* testdraw.c */,
@@ -1837,11 +1861,12 @@
18371861
092D6D75FFB313BB7F000001 /* testlock.c */,
18381862
DB166CBD16A1C74100A1396C /* testmessage.c */,
18391863
001798151074359B00F5D044 /* testmultiaudio.c */,
1840-
0017985A107436ED00F5D044 /* testnative.c */,
18411864
0017985B107436ED00F5D044 /* testnative.h */,
1865+
0017985A107436ED00F5D044 /* testnative.c */,
18421866
0017985C107436ED00F5D044 /* testnativecocoa.m */,
18431867
00179872107438D000F5D044 /* testnativex11.c */,
18441868
002F345209CA201C00EBEB88 /* testoverlay.c */,
1869+
F3B7FD6B2D73FC9E0086D1D0 /* testpen.c */,
18451870
002F346F09CA20A600EBEB88 /* testplatform.c */,
18461871
001798B910743A4900F5D044 /* testpower.c */,
18471872
DB166CBF16A1C74100A1396C /* testrelative.c */,
@@ -1918,6 +1943,7 @@
19181943
F3C17CDC28E416CF00E1A26D /* testgeometry.app */,
19191944
F35E56AA298312CB00A43A5F /* testautomation.app */,
19201945
F36C34272C0F85DB00991150 /* testcamera.app */,
1946+
F3B7FD6A2D73FC630086D1D0 /* testpen.app */,
19211947
);
19221948
name = Products;
19231949
sourceTree = "<group>";
@@ -2756,6 +2782,23 @@
27562782
productReference = F36C34272C0F85DB00991150 /* testcamera.app */;
27572783
productType = "com.apple.product-type.application";
27582784
};
2785+
F3B7FD602D73FC630086D1D0 /* testpen */ = {
2786+
isa = PBXNativeTarget;
2787+
buildConfigurationList = F3B7FD672D73FC630086D1D0 /* Build configuration list for PBXNativeTarget "testpen" */;
2788+
buildPhases = (
2789+
F3B7FD612D73FC630086D1D0 /* Sources */,
2790+
F3B7FD632D73FC630086D1D0 /* Frameworks */,
2791+
F3B7FD652D73FC630086D1D0 /* Embed Frameworks */,
2792+
);
2793+
buildRules = (
2794+
);
2795+
dependencies = (
2796+
);
2797+
name = testpen;
2798+
productName = testalpha;
2799+
productReference = F3B7FD6A2D73FC630086D1D0 /* testpen.app */;
2800+
productType = "com.apple.product-type.application";
2801+
};
27592802
F3C17CDB28E416CF00E1A26D /* testgeometry */ = {
27602803
isa = PBXNativeTarget;
27612804
buildConfigurationList = F3C17CE828E416D000E1A26D /* Build configuration list for PBXNativeTarget "testgeometry" */;
@@ -2972,6 +3015,7 @@
29723015
001798781074392D00F5D044 /* testnative */,
29733016
002F343C09CA1FB300EBEB88 /* testoverlay */,
29743017
002F345909CA204F00EBEB88 /* testplatform */,
3018+
F3B7FD602D73FC630086D1D0 /* testpen */,
29753019
0017989D107439DF00F5D044 /* testpower */,
29763020
DB166DDC16A1D50C00A1396C /* testrelative */,
29773021
DB166DF316A1D57C00A1396C /* testrendercopyex */,
@@ -3455,6 +3499,14 @@
34553499
);
34563500
runOnlyForDeploymentPostprocessing = 0;
34573501
};
3502+
F3B7FD612D73FC630086D1D0 /* Sources */ = {
3503+
isa = PBXSourcesBuildPhase;
3504+
buildActionMask = 2147483647;
3505+
files = (
3506+
F3B7FD6C2D73FC9E0086D1D0 /* testpen.c in Sources */,
3507+
);
3508+
runOnlyForDeploymentPostprocessing = 0;
3509+
};
34583510
F3C17CD828E416CF00E1A26D /* Sources */ = {
34593511
isa = PBXSourcesBuildPhase;
34603512
buildActionMask = 2147483647;
@@ -4704,6 +4756,26 @@
47044756
};
47054757
name = Release;
47064758
};
4759+
F3B7FD682D73FC630086D1D0 /* Debug */ = {
4760+
isa = XCBuildConfiguration;
4761+
buildSettings = {
4762+
CODE_SIGN_IDENTITY = "Apple Development";
4763+
CODE_SIGN_STYLE = Automatic;
4764+
PRODUCT_NAME = "$(TARGET_NAME)";
4765+
PROVISIONING_PROFILE_SPECIFIER = "";
4766+
};
4767+
name = Debug;
4768+
};
4769+
F3B7FD692D73FC630086D1D0 /* Release */ = {
4770+
isa = XCBuildConfiguration;
4771+
buildSettings = {
4772+
CODE_SIGN_IDENTITY = "Apple Development";
4773+
CODE_SIGN_STYLE = Automatic;
4774+
PRODUCT_NAME = "$(TARGET_NAME)";
4775+
PROVISIONING_PROFILE_SPECIFIER = "";
4776+
};
4777+
name = Release;
4778+
};
47074779
F3C17CE928E416D000E1A26D /* Debug */ = {
47084780
isa = XCBuildConfiguration;
47094781
buildSettings = {
@@ -5159,6 +5231,15 @@
51595231
defaultConfigurationIsVisible = 0;
51605232
defaultConfigurationName = Debug;
51615233
};
5234+
F3B7FD672D73FC630086D1D0 /* Build configuration list for PBXNativeTarget "testpen" */ = {
5235+
isa = XCConfigurationList;
5236+
buildConfigurations = (
5237+
F3B7FD682D73FC630086D1D0 /* Debug */,
5238+
F3B7FD692D73FC630086D1D0 /* Release */,
5239+
);
5240+
defaultConfigurationIsVisible = 0;
5241+
defaultConfigurationName = Debug;
5242+
};
51625243
F3C17CE828E416D000E1A26D /* Build configuration list for PBXNativeTarget "testgeometry" */ = {
51635244
isa = XCConfigurationList;
51645245
buildConfigurations = (

0 commit comments

Comments
 (0)