diff options
Diffstat (limited to 'PIPET-1.xcodeproj')
-rw-r--r-- | PIPET-1.xcodeproj/project.pbxproj | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/PIPET-1.xcodeproj/project.pbxproj b/PIPET-1.xcodeproj/project.pbxproj index b6e3f57..7c1c6d5 100644 --- a/PIPET-1.xcodeproj/project.pbxproj +++ b/PIPET-1.xcodeproj/project.pbxproj @@ -8,6 +8,8 @@ /* Begin PBXBuildFile section */ A94B89502434F70400B7DC09 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = A94B894F2434F70400B7DC09 /* main.c */; }; + A94B89582434F73800B7DC09 /* pipet_view.c in Sources */ = {isa = PBXBuildFile; fileRef = A94B89572434F73800B7DC09 /* pipet_view.c */; }; + A94B895D2434F76800B7DC09 /* SDL2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A94B895C2434F76800B7DC09 /* SDL2.framework */; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -25,6 +27,11 @@ /* Begin PBXFileReference section */ A94B894C2434F70400B7DC09 /* PIPET-1 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "PIPET-1"; sourceTree = BUILT_PRODUCTS_DIR; }; A94B894F2434F70400B7DC09 /* main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = "<group>"; }; + A94B89562434F73800B7DC09 /* pipet_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pipet_view.h; sourceTree = "<group>"; }; + A94B89572434F73800B7DC09 /* pipet_view.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pipet_view.c; sourceTree = "<group>"; }; + A94B895A2434F75400B7DC09 /* Library */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Library; path = ../../../../../Library; sourceTree = "<group>"; }; + A94B895C2434F76800B7DC09 /* SDL2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL2.framework; path = ../../../../../Library/Frameworks/SDL2.framework; sourceTree = "<group>"; }; + A94B895E2434F77C00B7DC09 /* SDL2_ttf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL2_ttf.framework; path = ../../../../../Library/Frameworks/SDL2_ttf.framework; sourceTree = "<group>"; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -32,6 +39,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + A94B895D2434F76800B7DC09 /* SDL2.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -43,6 +51,7 @@ children = ( A94B894E2434F70400B7DC09 /* PIPET-1 */, A94B894D2434F70400B7DC09 /* Products */, + A94B89592434F75400B7DC09 /* Frameworks */, ); sourceTree = "<group>"; }; @@ -57,11 +66,23 @@ A94B894E2434F70400B7DC09 /* PIPET-1 */ = { isa = PBXGroup; children = ( + A94B89572434F73800B7DC09 /* pipet_view.c */, + A94B89562434F73800B7DC09 /* pipet_view.h */, A94B894F2434F70400B7DC09 /* main.c */, ); path = "PIPET-1"; sourceTree = "<group>"; }; + A94B89592434F75400B7DC09 /* Frameworks */ = { + isa = PBXGroup; + children = ( + A94B895E2434F77C00B7DC09 /* SDL2_ttf.framework */, + A94B895C2434F76800B7DC09 /* SDL2.framework */, + A94B895A2434F75400B7DC09 /* Library */, + ); + name = Frameworks; + sourceTree = "<group>"; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -120,6 +141,7 @@ buildActionMask = 2147483647; files = ( A94B89502434F70400B7DC09 /* main.c in Sources */, + A94B89582434F73800B7DC09 /* pipet_view.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -239,6 +261,10 @@ isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_STYLE = Automatic; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(LOCAL_LIBRARY_DIR)/Frameworks", + ); PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Debug; @@ -247,6 +273,10 @@ isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_STYLE = Automatic; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(LOCAL_LIBRARY_DIR)/Frameworks", + ); PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Release; |