Added tobmp as proclib xcode target

master
kts 2014-11-21 14:50:19 -08:00
parent 4d9dd9ad12
commit e48dd3e6c0
1 changed files with 98 additions and 0 deletions

View File

@ -24,6 +24,15 @@
205FCCC01A1F5DA9000AD8D0 /* ktkStructure.c in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB1B1A1F2667000AD8D0 /* ktkStructure.c */; }; 205FCCC01A1F5DA9000AD8D0 /* ktkStructure.c in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB1B1A1F2667000AD8D0 /* ktkStructure.c */; };
205FCCC11A1F5DA9000AD8D0 /* ktkStructure.h in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB1C1A1F2667000AD8D0 /* ktkStructure.h */; }; 205FCCC11A1F5DA9000AD8D0 /* ktkStructure.h in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB1C1A1F2667000AD8D0 /* ktkStructure.h */; };
205FCCC41A1F5DBE000AD8D0 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 205FCCC31A1F5DBE000AD8D0 /* main.c */; }; 205FCCC41A1F5DBE000AD8D0 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 205FCCC31A1F5DBE000AD8D0 /* main.c */; };
20C961EF1A1FF86B00000E7D /* ktk_parse.c in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB151A1F2667000AD8D0 /* ktk_parse.c */; };
20C961F01A1FF86B00000E7D /* ktk_parse.h in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB161A1F2667000AD8D0 /* ktk_parse.h */; };
20C961F11A1FF86B00000E7D /* ktkMap.c in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB171A1F2667000AD8D0 /* ktkMap.c */; };
20C961F21A1FF86B00000E7D /* ktkMap.h in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB181A1F2667000AD8D0 /* ktkMap.h */; };
20C961F31A1FF86B00000E7D /* ktkProgram.c in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB191A1F2667000AD8D0 /* ktkProgram.c */; };
20C961F41A1FF86B00000E7D /* ktkProgram.h in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB1A1A1F2667000AD8D0 /* ktkProgram.h */; };
20C961F51A1FF86B00000E7D /* ktkStructure.c in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB1B1A1F2667000AD8D0 /* ktkStructure.c */; };
20C961F61A1FF86B00000E7D /* ktkStructure.h in Sources */ = {isa = PBXBuildFile; fileRef = 205FCB1C1A1F2667000AD8D0 /* ktkStructure.h */; };
20C961F81A1FF87A00000E7D /* tobmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 20C961F71A1FF87A00000E7D /* tobmp.c */; };
8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; };
8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
/* End PBXBuildFile section */ /* End PBXBuildFile section */
@ -59,6 +68,8 @@
205FCB1E1A1F2667000AD8D0 /* sdl_main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sdl_main.c; path = ../src/sdl_main.c; sourceTree = SOURCE_ROOT; }; 205FCB1E1A1F2667000AD8D0 /* sdl_main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sdl_main.c; path = ../src/sdl_main.c; sourceTree = SOURCE_ROOT; };
205FCCB51A1F5D76000AD8D0 /* main */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = main; sourceTree = BUILT_PRODUCTS_DIR; }; 205FCCB51A1F5D76000AD8D0 /* main */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = main; sourceTree = BUILT_PRODUCTS_DIR; };
205FCCC31A1F5DBE000AD8D0 /* main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = main.c; path = ../src/main.c; sourceTree = SOURCE_ROOT; }; 205FCCC31A1F5DBE000AD8D0 /* main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = main.c; path = ../src/main.c; sourceTree = SOURCE_ROOT; };
20C961EB1A1FF85500000E7D /* tobmp */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = tobmp; sourceTree = BUILT_PRODUCTS_DIR; };
20C961F71A1FF87A00000E7D /* tobmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tobmp.c; path = ../tools/tobmp.c; sourceTree = SOURCE_ROOT; };
29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; }; 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; }; 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
32CA4F630368D1EE00C91783 /* proclib_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = proclib_Prefix.pch; sourceTree = "<group>"; }; 32CA4F630368D1EE00C91783 /* proclib_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = proclib_Prefix.pch; sourceTree = "<group>"; };
@ -74,6 +85,13 @@
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
20C961E91A1FF85500000E7D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
8D11072E0486CEB800E47090 /* Frameworks */ = { 8D11072E0486CEB800E47090 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase; isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
@ -118,6 +136,7 @@
children = ( children = (
8D1107320486CEB800E47090 /* proclib.app */, 8D1107320486CEB800E47090 /* proclib.app */,
205FCCB51A1F5D76000AD8D0 /* main */, 205FCCB51A1F5D76000AD8D0 /* main */,
20C961EB1A1FF85500000E7D /* tobmp */,
); );
name = Products; name = Products;
sourceTree = "<group>"; sourceTree = "<group>";
@ -142,6 +161,7 @@
29B97314FDCFA39411CA2CEA /* proclib */ = { 29B97314FDCFA39411CA2CEA /* proclib */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
20C961F71A1FF87A00000E7D /* tobmp.c */,
205FCB141A1F264D000AD8D0 /* sdl */, 205FCB141A1F264D000AD8D0 /* sdl */,
080E96DDFE201D6D7F000001 /* Classes */, 080E96DDFE201D6D7F000001 /* Classes */,
29B97315FDCFA39411CA2CEA /* Other Sources */, 29B97315FDCFA39411CA2CEA /* Other Sources */,
@ -197,6 +217,22 @@
productReference = 205FCCB51A1F5D76000AD8D0 /* main */; productReference = 205FCCB51A1F5D76000AD8D0 /* main */;
productType = "com.apple.product-type.tool"; productType = "com.apple.product-type.tool";
}; };
20C961EA1A1FF85500000E7D /* tobmp */ = {
isa = PBXNativeTarget;
buildConfigurationList = 20C961F91A1FF87A00000E7D /* Build configuration list for PBXNativeTarget "tobmp" */;
buildPhases = (
20C961E81A1FF85500000E7D /* Sources */,
20C961E91A1FF85500000E7D /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = tobmp;
productName = tobmp;
productReference = 20C961EB1A1FF85500000E7D /* tobmp */;
productType = "com.apple.product-type.tool";
};
8D1107260486CEB800E47090 /* proclib */ = { 8D1107260486CEB800E47090 /* proclib */ = {
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "proclib" */; buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "proclib" */;
@ -237,6 +273,7 @@
targets = ( targets = (
8D1107260486CEB800E47090 /* proclib */, 8D1107260486CEB800E47090 /* proclib */,
205FCCB41A1F5D76000AD8D0 /* main */, 205FCCB41A1F5D76000AD8D0 /* main */,
20C961EA1A1FF85500000E7D /* tobmp */,
); );
}; };
/* End PBXProject section */ /* End PBXProject section */
@ -269,6 +306,22 @@
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
20C961E81A1FF85500000E7D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
20C961EF1A1FF86B00000E7D /* ktk_parse.c in Sources */,
20C961F01A1FF86B00000E7D /* ktk_parse.h in Sources */,
20C961F11A1FF86B00000E7D /* ktkMap.c in Sources */,
20C961F21A1FF86B00000E7D /* ktkMap.h in Sources */,
20C961F31A1FF86B00000E7D /* ktkProgram.c in Sources */,
20C961F41A1FF86B00000E7D /* ktkProgram.h in Sources */,
20C961F51A1FF86B00000E7D /* ktkStructure.c in Sources */,
20C961F61A1FF86B00000E7D /* ktkStructure.h in Sources */,
20C961F81A1FF87A00000E7D /* tobmp.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8D11072C0486CEB800E47090 /* Sources */ = { 8D11072C0486CEB800E47090 /* Sources */ = {
isa = PBXSourcesBuildPhase; isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
@ -326,6 +379,42 @@
}; };
name = Release; name = Release;
}; };
20C961ED1A1FF85600000E7D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
INSTALL_PATH = /usr/local/bin;
PREBINDING = NO;
PRODUCT_NAME = tobmp;
};
name = Debug;
};
20C961EE1A1FF85600000E7D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
GCC_MODEL_TUNING = G5;
HEADER_SEARCH_PATHS = (
"$(HOME)/Library/Frameworks/SDL.framework/Headers",
/Library/Frameworks/SDL.framework/Headers,
"$(HEADER_SEARCH_PATHS)",
../src/,
);
INSTALL_PATH = /usr/local/bin;
PREBINDING = NO;
PRODUCT_NAME = tobmp;
ZERO_LINK = NO;
};
name = Release;
};
C01FCF4B08A954540054247B /* Debug */ = { C01FCF4B08A954540054247B /* Debug */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
@ -421,6 +510,15 @@
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;
}; };
20C961F91A1FF87A00000E7D /* Build configuration list for PBXNativeTarget "tobmp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
20C961ED1A1FF85600000E7D /* Debug */,
20C961EE1A1FF85600000E7D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "proclib" */ = { C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "proclib" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (