mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-08 04:20:09 +00:00
Updated some jucer-generated project files.
This commit is contained in:
parent
9a5022871e
commit
d5db408033
23 changed files with 441 additions and 434 deletions
|
|
@ -43,37 +43,6 @@ public:
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
void resaveJucerFile (const File file)
|
||||
{
|
||||
if (! file.exists())
|
||||
{
|
||||
std::cout << "The file doesn't exist!" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
if (! file.hasFileExtension (Project::projectFileExtension))
|
||||
{
|
||||
std::cout << "Not a valid jucer project file!" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
ScopedPointer <Project> newDoc (new Project (file));
|
||||
|
||||
if (! newDoc->loadFrom (file, true))
|
||||
{
|
||||
std::cout << "Failed to load the project file!" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
String error (newDoc->saveDocument (file));
|
||||
|
||||
if (error.isNotEmpty())
|
||||
{
|
||||
std::cout << "Error when writing project: " << error << std::endl;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
void initialise (const String& commandLine)
|
||||
{
|
||||
/* Running a command-line of the form "Jucer --resave foobar.jucer" will try to load that
|
||||
|
|
@ -149,6 +118,38 @@ public:
|
|||
|
||||
private:
|
||||
ScopedPointer <MainWindow> theMainWindow;
|
||||
|
||||
void resaveJucerFile (const File& file)
|
||||
{
|
||||
if (! file.exists())
|
||||
{
|
||||
std::cout << "The file " << file.getFullPathName() << " doesn't exist!" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
if (! file.hasFileExtension (Project::projectFileExtension))
|
||||
{
|
||||
std::cout << file.getFullPathName() << " isn't a valid jucer project file!" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
ScopedPointer <Project> newDoc (new Project (file));
|
||||
|
||||
if (! newDoc->loadFrom (file, true))
|
||||
{
|
||||
std::cout << "Failed to load the project file: " << file.getFullPathName() << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
std::cout << "The Jucer - Re-saving file: " << file.getFullPathName() << std::endl;
|
||||
String error (newDoc->saveDocument (file));
|
||||
|
||||
if (error.isNotEmpty())
|
||||
{
|
||||
std::cout << "Error when writing project: " << error << std::endl;
|
||||
return;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -36,5 +36,6 @@
|
|||
JUCE_USE_XINERAMA="default" JUCE_USE_XSHM="default" JUCE_PLUGINHOST_VST="default"
|
||||
JUCE_PLUGINHOST_AU="default" JUCE_ONLY_BUILD_CORE_LIBRARY="enabled"
|
||||
JUCE_WEB_BROWSER="default" JUCE_SUPPORT_CARBON="default" JUCE_CHECK_MEMORY_LEAKS="default"
|
||||
JUCE_CATCH_UNHANDLED_EXCEPTIONS="default" JUCE_STRINGS_ARE_UNICODE="default"/>
|
||||
JUCE_CATCH_UNHANDLED_EXCEPTIONS="default" JUCE_STRINGS_ARE_UNICODE="default"
|
||||
JUCE_USE_XRENDER="default"/>
|
||||
</JUCERPROJECT>
|
||||
|
|
|
|||
|
|
@ -6,63 +6,63 @@
|
|||
objectVersion = 44;
|
||||
objects = {
|
||||
|
||||
A4F1A514AFAD8A473A4C01E4 = { isa = PBXBuildFile; fileRef = 79CB6C652001CE2B501302C9; };
|
||||
9051DB1CB5EDFEDFA445C1DA = { isa = PBXBuildFile; fileRef = 9AB91FEE1D30467AFF172A68; };
|
||||
8FC033E88C33D29A9DCB5702 = { isa = PBXBuildFile; fileRef = BC48552CE60BD2436CB32D02; };
|
||||
5034725EDD0CC98F808E70A6 = { isa = PBXBuildFile; fileRef = B4E04E7FAD23EAB92FDC725A; };
|
||||
7723594028A9774919761906 = { isa = PBXBuildFile; fileRef = A576A5F17B2BEB184BA81E94; };
|
||||
78783891CEBFAB807894A2CB = { isa = PBXBuildFile; fileRef = DA152809D75020FC62669796; };
|
||||
F5851BB2067612E3A8553763 = { isa = PBXBuildFile; fileRef = F881EF04C4ACFD32C00F9936; };
|
||||
B36A7C621CDAFAB346681AE0 = { isa = PBXBuildFile; fileRef = ED84760F67FEB5890BCD16BC; };
|
||||
D051F8818275E3A3E1CB8A2E = { isa = PBXBuildFile; fileRef = C1496BE90686A6CF58DF9F19; };
|
||||
96433512E674BD05A6FB960A = { isa = PBXBuildFile; fileRef = 59C0DAF27922C34551218C77; };
|
||||
C9562018C2171BD82DA3A674 = { isa = PBXBuildFile; fileRef = 5E923E245AE23AE7BB8B6A34; };
|
||||
6F94B63007E571DBA9EDFDB7 = { isa = PBXBuildFile; fileRef = BA1FCBD60DDBA8D94DDCFACA; };
|
||||
5826B798E4B6F09026608D9F = { isa = PBXBuildFile; fileRef = 10B6866801A9811231C4DF78; };
|
||||
79CB6C652001CE2B501302C9 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
|
||||
9AB91FEE1D30467AFF172A68 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
|
||||
BC48552CE60BD2436CB32D02 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
|
||||
B4E04E7FAD23EAB92FDC725A = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
|
||||
A576A5F17B2BEB184BA81E94 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
|
||||
DA152809D75020FC62669796 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
|
||||
F881EF04C4ACFD32C00F9936 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
|
||||
ED84760F67FEB5890BCD16BC = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
|
||||
C1496BE90686A6CF58DF9F19 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
||||
59C0DAF27922C34551218C77 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; };
|
||||
5E923E245AE23AE7BB8B6A34 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = System/Library/Frameworks/QuickTime.framework; sourceTree = SDKROOT; };
|
||||
CA1CAD166727F3F5EA4E2F00 = { isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = amalgamator; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
BA1FCBD60DDBA8D94DDCFACA = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = SOURCE_ROOT; };
|
||||
AF687BC6D8447106147C1497 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = SOURCE_ROOT; };
|
||||
3367D363B3EC7F05898D419F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = SOURCE_ROOT; };
|
||||
10B6866801A9811231C4DF78 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode.mm; path = ../../JuceLibraryCode/JuceLibraryCode.mm; sourceTree = SOURCE_ROOT; };
|
||||
BA8673778A175624FC9F52E7 = { isa = PBXGroup; children = (
|
||||
BA1FCBD60DDBA8D94DDCFACA ); name = Source; sourceTree = "<group>"; };
|
||||
AFB48DD8DBF094F63F431979 = { isa = PBXGroup; children = (
|
||||
AF687BC6D8447106147C1497,
|
||||
3367D363B3EC7F05898D419F,
|
||||
10B6866801A9811231C4DF78 ); name = "Juce Library Code"; sourceTree = "<group>"; };
|
||||
78D302C2D44FC9025738F347 = { isa = PBXGroup; children = ( ); name = Resources; sourceTree = "<group>"; };
|
||||
E48144B707BAD4CB5B26617C = { isa = PBXGroup; children = (
|
||||
79CB6C652001CE2B501302C9,
|
||||
9AB91FEE1D30467AFF172A68,
|
||||
BC48552CE60BD2436CB32D02,
|
||||
B4E04E7FAD23EAB92FDC725A,
|
||||
A576A5F17B2BEB184BA81E94,
|
||||
DA152809D75020FC62669796,
|
||||
F881EF04C4ACFD32C00F9936,
|
||||
ED84760F67FEB5890BCD16BC,
|
||||
C1496BE90686A6CF58DF9F19,
|
||||
59C0DAF27922C34551218C77,
|
||||
5E923E245AE23AE7BB8B6A34 ); name = Frameworks; sourceTree = "<group>"; };
|
||||
AD2B02F2BB48C6DB847AB729 = { isa = PBXGroup; children = (
|
||||
CA1CAD166727F3F5EA4E2F00 ); name = Products; sourceTree = "<group>"; };
|
||||
7A94AFBB35D1BABFA6C9DF47 = { isa = PBXGroup; children = (
|
||||
BA8673778A175624FC9F52E7,
|
||||
AFB48DD8DBF094F63F431979,
|
||||
78D302C2D44FC9025738F347,
|
||||
E48144B707BAD4CB5B26617C,
|
||||
AD2B02F2BB48C6DB847AB729 ); name = Source; sourceTree = "<group>"; };
|
||||
D623E5ACBFF093B579AE3E45 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
519A1FD5D107BA064C820D19 = { isa = PBXBuildFile; fileRef = EA2AB86C7C92284FED89D52F; };
|
||||
9DCEEA3865611526540CAE87 = { isa = PBXBuildFile; fileRef = 3960376212D469EABEC890C3; };
|
||||
F8EB5CA1A095AB47E5FD296F = { isa = PBXBuildFile; fileRef = FBDB5BE674CCA98DEAFF320F; };
|
||||
376EF5B6F7CC60A16F29D132 = { isa = PBXBuildFile; fileRef = A9275AFEFE04A58B574DF783; };
|
||||
AC1C38A76EA577862230F779 = { isa = PBXBuildFile; fileRef = D00199E68400301A480EC13C; };
|
||||
CBF16BDB96F6205FF62563ED = { isa = PBXBuildFile; fileRef = 6ADD725F5D8C431F3ED44379; };
|
||||
02FD972668E37139AC6FDB95 = { isa = PBXBuildFile; fileRef = 9A6FC8308FE6F40E6D90B404; };
|
||||
804677E715BD0D17AB576A99 = { isa = PBXBuildFile; fileRef = 44DC6A5C8B7FDF348BB1B939; };
|
||||
B1AED479824B53CD42E2CF43 = { isa = PBXBuildFile; fileRef = 099980A9C6DE98B28A9113C0; };
|
||||
88941AD8669C6AF9710FE99D = { isa = PBXBuildFile; fileRef = 0D21F7B58311040CB1C01680; };
|
||||
14235D597C71A211C34E35D7 = { isa = PBXBuildFile; fileRef = BFB630386598A251EE72BEFC; };
|
||||
E88444FD7BDE1A966EC392A5 = { isa = PBXBuildFile; fileRef = 195A51222E92C3A93F2D6FFA; };
|
||||
4D2A24E908E9A226C5A3D259 = { isa = PBXBuildFile; fileRef = F4A7A8C689EAE11C52879AFF; };
|
||||
EA2AB86C7C92284FED89D52F = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
|
||||
3960376212D469EABEC890C3 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
|
||||
FBDB5BE674CCA98DEAFF320F = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
|
||||
A9275AFEFE04A58B574DF783 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
|
||||
D00199E68400301A480EC13C = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
|
||||
6ADD725F5D8C431F3ED44379 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
|
||||
9A6FC8308FE6F40E6D90B404 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
|
||||
44DC6A5C8B7FDF348BB1B939 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
|
||||
099980A9C6DE98B28A9113C0 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
||||
0D21F7B58311040CB1C01680 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; };
|
||||
BFB630386598A251EE72BEFC = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = System/Library/Frameworks/QuickTime.framework; sourceTree = SDKROOT; };
|
||||
F8AC870D665D0F64E9129D83 = { isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = amalgamator; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
195A51222E92C3A93F2D6FFA = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = SOURCE_ROOT; };
|
||||
AE2AAA898543257DC9074051 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = SOURCE_ROOT; };
|
||||
65A77136970E59DD3E14B4B1 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = SOURCE_ROOT; };
|
||||
F4A7A8C689EAE11C52879AFF = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode.mm; path = ../../JuceLibraryCode/JuceLibraryCode.mm; sourceTree = SOURCE_ROOT; };
|
||||
412B173788F325BD8BA9D522 = { isa = PBXGroup; children = (
|
||||
195A51222E92C3A93F2D6FFA ); name = Source; sourceTree = "<group>"; };
|
||||
1B116FEC4D544DB8E38CB571 = { isa = PBXGroup; children = (
|
||||
AE2AAA898543257DC9074051,
|
||||
65A77136970E59DD3E14B4B1,
|
||||
F4A7A8C689EAE11C52879AFF ); name = "Juce Library Code"; sourceTree = "<group>"; };
|
||||
C08FDFC0A2B182F6A490BA93 = { isa = PBXGroup; children = ( ); name = Resources; sourceTree = "<group>"; };
|
||||
E33E9595882A25EE14ED65F4 = { isa = PBXGroup; children = (
|
||||
EA2AB86C7C92284FED89D52F,
|
||||
3960376212D469EABEC890C3,
|
||||
FBDB5BE674CCA98DEAFF320F,
|
||||
A9275AFEFE04A58B574DF783,
|
||||
D00199E68400301A480EC13C,
|
||||
6ADD725F5D8C431F3ED44379,
|
||||
9A6FC8308FE6F40E6D90B404,
|
||||
44DC6A5C8B7FDF348BB1B939,
|
||||
099980A9C6DE98B28A9113C0,
|
||||
0D21F7B58311040CB1C01680,
|
||||
BFB630386598A251EE72BEFC ); name = Frameworks; sourceTree = "<group>"; };
|
||||
FE436211E76A80250EE3B950 = { isa = PBXGroup; children = (
|
||||
F8AC870D665D0F64E9129D83 ); name = Products; sourceTree = "<group>"; };
|
||||
5DCB99F3A59154C29483AE9B = { isa = PBXGroup; children = (
|
||||
412B173788F325BD8BA9D522,
|
||||
1B116FEC4D544DB8E38CB571,
|
||||
C08FDFC0A2B182F6A490BA93,
|
||||
E33E9595882A25EE14ED65F4,
|
||||
FE436211E76A80250EE3B950 ); name = Source; sourceTree = "<group>"; };
|
||||
B35E392A6BCC0FB318E537E2 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||
PREBINDING = NO;
|
||||
HEADER_SEARCH_PATHS = " $(inherited)";
|
||||
|
|
@ -76,7 +76,7 @@
|
|||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"_DEBUG=1",
|
||||
"DEBUG=1 "); }; name = Debug; };
|
||||
E11D0F60E7C2B13209F441B7 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
4DFAC29D863495AD1E31B6B9 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||
PREBINDING = NO;
|
||||
HEADER_SEARCH_PATHS = " $(inherited)";
|
||||
|
|
@ -88,7 +88,7 @@
|
|||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"_NDEBUG=1",
|
||||
"NDEBUG=1 "); }; name = Release; };
|
||||
2A7232EC86FC4C9937F7FDB1 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
4EAD81574ACF05AC27D04B76 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
|
@ -102,7 +102,7 @@
|
|||
ZERO_LINK = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
PRODUCT_NAME = "amalgamator"; }; name = Debug; };
|
||||
2F5C4639C0B6F8AACA14098A = { isa = XCBuildConfiguration; buildSettings = {
|
||||
322333C2238617224CAE5D89 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
|
@ -116,33 +116,33 @@
|
|||
ZERO_LINK = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
PRODUCT_NAME = "amalgamator"; }; name = Release; };
|
||||
2CFBFFDFB38FB5353DB13339 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
2A7232EC86FC4C9937F7FDB1,
|
||||
2F5C4639C0B6F8AACA14098A ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
9D9354DAA8B4F66302F44EB3 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
D623E5ACBFF093B579AE3E45,
|
||||
E11D0F60E7C2B13209F441B7 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
5203B474A9EC120E05FAFC7E = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
26D5C1A755E31038E6AA5F65 = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
|
||||
6F94B63007E571DBA9EDFDB7,
|
||||
5826B798E4B6F09026608D9F ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
E0796C07FC7AE37755E690BD = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
|
||||
A4F1A514AFAD8A473A4C01E4,
|
||||
9051DB1CB5EDFEDFA445C1DA,
|
||||
8FC033E88C33D29A9DCB5702,
|
||||
5034725EDD0CC98F808E70A6,
|
||||
7723594028A9774919761906,
|
||||
78783891CEBFAB807894A2CB,
|
||||
F5851BB2067612E3A8553763,
|
||||
B36A7C621CDAFAB346681AE0,
|
||||
D051F8818275E3A3E1CB8A2E,
|
||||
96433512E674BD05A6FB960A,
|
||||
C9562018C2171BD82DA3A674 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
B824C4A447FB724196B914CE = { isa = PBXNativeTarget; buildConfigurationList = 9D9354DAA8B4F66302F44EB3; buildPhases = (
|
||||
5203B474A9EC120E05FAFC7E,
|
||||
26D5C1A755E31038E6AA5F65,
|
||||
E0796C07FC7AE37755E690BD ); buildRules = ( ); dependencies = ( ); name = Amalgamator; productName = Amalgamator; productReference = CA1CAD166727F3F5EA4E2F00; productInstallPath = /usr/bin; productType = "com.apple.product-type.tool"; };
|
||||
3F3EC7723ED2D70B1F2AA68A = { isa = PBXProject; buildConfigurationList = 2CFBFFDFB38FB5353DB13339; compatibilityVersion = "Xcode 3.0"; hasScannedForEncodings = 0; mainGroup = 7A94AFBB35D1BABFA6C9DF47; projectDirPath = ""; projectRoot = ""; targets = ( B824C4A447FB724196B914CE ); };
|
||||
FA25EC7DB69A3A88993F2853 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
4EAD81574ACF05AC27D04B76,
|
||||
322333C2238617224CAE5D89 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
9257F9B896FDE4D0483F4D47 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
B35E392A6BCC0FB318E537E2,
|
||||
4DFAC29D863495AD1E31B6B9 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
6D960AB00F450781A680A10C = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
492D061FDF3111EE0092E6B8 = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
|
||||
E88444FD7BDE1A966EC392A5,
|
||||
4D2A24E908E9A226C5A3D259 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
ED422768B82C5C079964D4A9 = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
|
||||
519A1FD5D107BA064C820D19,
|
||||
9DCEEA3865611526540CAE87,
|
||||
F8EB5CA1A095AB47E5FD296F,
|
||||
376EF5B6F7CC60A16F29D132,
|
||||
AC1C38A76EA577862230F779,
|
||||
CBF16BDB96F6205FF62563ED,
|
||||
02FD972668E37139AC6FDB95,
|
||||
804677E715BD0D17AB576A99,
|
||||
B1AED479824B53CD42E2CF43,
|
||||
88941AD8669C6AF9710FE99D,
|
||||
14235D597C71A211C34E35D7 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
C15E717C5DA07024CAFE5177 = { isa = PBXNativeTarget; buildConfigurationList = 9257F9B896FDE4D0483F4D47; buildPhases = (
|
||||
6D960AB00F450781A680A10C,
|
||||
492D061FDF3111EE0092E6B8,
|
||||
ED422768B82C5C079964D4A9 ); buildRules = ( ); dependencies = ( ); name = Amalgamator; productName = Amalgamator; productReference = F8AC870D665D0F64E9129D83; productInstallPath = /usr/bin; productType = "com.apple.product-type.tool"; };
|
||||
BC0813C44DC69E1626F486CE = { isa = PBXProject; buildConfigurationList = FA25EC7DB69A3A88993F2853; compatibilityVersion = "Xcode 3.0"; hasScannedForEncodings = 0; mainGroup = 5DCB99F3A59154C29483AE9B; projectDirPath = ""; projectRoot = ""; targets = ( C15E717C5DA07024CAFE5177 ); };
|
||||
};
|
||||
rootObject = 3F3EC7723ED2D70B1F2AA68A;
|
||||
rootObject = BC0813C44DC69E1626F486CE;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||
# Visual C++ Express 2005
|
||||
Project("{D4CF920D-DA2B-1AAF-EF83-BB77BB696832}") = "Amalgamator", "Amalgamator.vcproj", "{8EBCACB6-792B-92FF-1C9B-34A5D310E725}"
|
||||
Project("{23A76270-2B37-F8DD-86F3-00609C833A1B}") = "Amalgamator", "Amalgamator.vcproj", "{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
@ -9,10 +9,10 @@ Global
|
|||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{8EBCACB6-792B-92FF-1C9B-34A5D310E725}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{8EBCACB6-792B-92FF-1C9B-34A5D310E725}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{8EBCACB6-792B-92FF-1C9B-34A5D310E725}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{8EBCACB6-792B-92FF-1C9B-34A5D310E725}.Release|Win32.Build.0 = Release|Win32
|
||||
{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<VisualStudioProject ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="Amalgamator"
|
||||
ProjectGUID="{8EBCACB6-792B-92FF-1C9B-34A5D310E725}"
|
||||
ProjectGUID="{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}"
|
||||
TargetFrameworkVersion="131072">
|
||||
<Platforms>
|
||||
<Platform Name="Win32"/>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||
# Visual C++ Express 2008
|
||||
Project("{D4CF920D-DA2B-1AAF-EF83-BB77BB696832}") = "Amalgamator", "Amalgamator.vcproj", "{8EBCACB6-792B-92FF-1C9B-34A5D310E725}"
|
||||
Project("{23A76270-2B37-F8DD-86F3-00609C833A1B}") = "Amalgamator", "Amalgamator.vcproj", "{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
@ -9,10 +9,10 @@ Global
|
|||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{8EBCACB6-792B-92FF-1C9B-34A5D310E725}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{8EBCACB6-792B-92FF-1C9B-34A5D310E725}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{8EBCACB6-792B-92FF-1C9B-34A5D310E725}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{8EBCACB6-792B-92FF-1C9B-34A5D310E725}.Release|Win32.Build.0 = Release|Win32
|
||||
{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<VisualStudioProject ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="Amalgamator"
|
||||
ProjectGUID="{8EBCACB6-792B-92FF-1C9B-34A5D310E725}"
|
||||
ProjectGUID="{4285DA55-C038-FF64-E3EC-DA7F0E5D4310}"
|
||||
TargetFrameworkVersion="131072">
|
||||
<Platforms>
|
||||
<Platform Name="Win32"/>
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
//#define JUCE_ENABLE_REPAINT_DEBUGGING
|
||||
//#define JUCE_USE_XINERAMA
|
||||
//#define JUCE_USE_XSHM
|
||||
//#define JUCE_USE_XRENDER
|
||||
//#define JUCE_PLUGINHOST_VST
|
||||
//#define JUCE_PLUGINHOST_AU
|
||||
#define JUCE_ONLY_BUILD_CORE_LIBRARY 1
|
||||
|
|
|
|||
|
|
@ -37,5 +37,6 @@
|
|||
JUCE_USE_XINERAMA="default" JUCE_USE_XSHM="default" JUCE_PLUGINHOST_VST="default"
|
||||
JUCE_PLUGINHOST_AU="default" JUCE_ONLY_BUILD_CORE_LIBRARY="enabled"
|
||||
JUCE_WEB_BROWSER="default" JUCE_SUPPORT_CARBON="default" JUCE_CHECK_MEMORY_LEAKS="default"
|
||||
JUCE_CATCH_UNHANDLED_EXCEPTIONS="default" JUCE_STRINGS_ARE_UNICODE="default"/>
|
||||
JUCE_CATCH_UNHANDLED_EXCEPTIONS="default" JUCE_STRINGS_ARE_UNICODE="default"
|
||||
JUCE_USE_XRENDER="default"/>
|
||||
</JUCERPROJECT>
|
||||
|
|
|
|||
|
|
@ -6,63 +6,63 @@
|
|||
objectVersion = 44;
|
||||
objects = {
|
||||
|
||||
540A84102A635F4601CD7991 = { isa = PBXBuildFile; fileRef = 29D44C51ABC7A22917957B75; };
|
||||
4059BA1831A3C2EE6BC73A86 = { isa = PBXBuildFile; fileRef = 4AB1FEDA98E62A78C6989314; };
|
||||
3FD813D407F9A698544CD0BF = { isa = PBXBuildFile; fileRef = 6C51442861C1B642233596BF; };
|
||||
003C524A58C1AE9E5700E942 = { isa = PBXBuildFile; fileRef = 64E92D6B28E9CEC8F65EEAF7; };
|
||||
283B383CA36F5B48D0E781B2 = { isa = PBXBuildFile; fileRef = 557F94EDE6E0CF27122A8631; };
|
||||
2881178D3974809F4E152A77 = { isa = PBXBuildFile; fileRef = 8A1E07F45206050A29E70F43; };
|
||||
A58DFAAE812BF6E26FD6B01F = { isa = PBXBuildFile; fileRef = B89ACEF04F62D140978112D3; };
|
||||
64735B5D978FDFB20DEA938D = { isa = PBXBuildFile; fileRef = 9D8D55FBE2A49988D24E9E69; };
|
||||
8169D77DFD3BC7A1A84CF3DB = { isa = PBXBuildFile; fileRef = 71514AD5814B8BDE1F5008C6; };
|
||||
474B141E513991137D7C0FB6 = { isa = PBXBuildFile; fileRef = 09C9BAEEE4E8A75328920523; };
|
||||
796E0F144DCCFFE6F4242F21 = { isa = PBXBuildFile; fileRef = 0EAB2D20D5981EF6710DD3E1; };
|
||||
1FAD952C829A55D97F6E6664 = { isa = PBXBuildFile; fileRef = 6A27AAC288808CE8035D7377; };
|
||||
082F96946F7CD4AFEDE1064B = { isa = PBXBuildFile; fileRef = C1BF66548C6E652108454815; };
|
||||
29D44C51ABC7A22917957B75 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
|
||||
4AB1FEDA98E62A78C6989314 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
|
||||
6C51442861C1B642233596BF = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
|
||||
64E92D6B28E9CEC8F65EEAF7 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
|
||||
557F94EDE6E0CF27122A8631 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
|
||||
8A1E07F45206050A29E70F43 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
|
||||
B89ACEF04F62D140978112D3 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
|
||||
9D8D55FBE2A49988D24E9E69 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
|
||||
71514AD5814B8BDE1F5008C6 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
||||
09C9BAEEE4E8A75328920523 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; };
|
||||
0EAB2D20D5981EF6710DD3E1 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = System/Library/Frameworks/QuickTime.framework; sourceTree = SDKROOT; };
|
||||
7A158D02E2EDD703A0CFA8BC = { isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = BinaryBuilder; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
6A27AAC288808CE8035D7377 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = SOURCE_ROOT; };
|
||||
5F606AB153F95504EAFD9D43 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = SOURCE_ROOT; };
|
||||
E470B25F3E925313500ECA4B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = SOURCE_ROOT; };
|
||||
C1BF66548C6E652108454815 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode.mm; path = ../../JuceLibraryCode/JuceLibraryCode.mm; sourceTree = SOURCE_ROOT; };
|
||||
8E18B1DFE36F2C6EE0ECA3EC = { isa = PBXGroup; children = (
|
||||
6A27AAC288808CE8035D7377 ); name = Source; sourceTree = "<group>"; };
|
||||
5FBD6CC457B578F506C48225 = { isa = PBXGroup; children = (
|
||||
5F606AB153F95504EAFD9D43,
|
||||
E470B25F3E925313500ECA4B,
|
||||
C1BF66548C6E652108454815 ); name = "Juce Library Code"; sourceTree = "<group>"; };
|
||||
28DCE1BE5F05AD011EBA6CF3 = { isa = PBXGroup; children = ( ); name = Resources; sourceTree = "<group>"; };
|
||||
949924B27260A9CA22A8DA28 = { isa = PBXGroup; children = (
|
||||
29D44C51ABC7A22917957B75,
|
||||
4AB1FEDA98E62A78C6989314,
|
||||
6C51442861C1B642233596BF,
|
||||
64E92D6B28E9CEC8F65EEAF7,
|
||||
557F94EDE6E0CF27122A8631,
|
||||
8A1E07F45206050A29E70F43,
|
||||
B89ACEF04F62D140978112D3,
|
||||
9D8D55FBE2A49988D24E9E69,
|
||||
71514AD5814B8BDE1F5008C6,
|
||||
09C9BAEEE4E8A75328920523,
|
||||
0EAB2D20D5981EF6710DD3E1 ); name = Frameworks; sourceTree = "<group>"; };
|
||||
5D24E2ED36FDAADA5AFC30D6 = { isa = PBXGroup; children = (
|
||||
7A158D02E2EDD703A0CFA8BC ); name = Products; sourceTree = "<group>"; };
|
||||
97D16C110AD333B7A7B19523 = { isa = PBXGroup; children = (
|
||||
8E18B1DFE36F2C6EE0ECA3EC,
|
||||
5FBD6CC457B578F506C48225,
|
||||
28DCE1BE5F05AD011EBA6CF3,
|
||||
949924B27260A9CA22A8DA28,
|
||||
5D24E2ED36FDAADA5AFC30D6 ); name = Source; sourceTree = "<group>"; };
|
||||
863BC4983AB677B34020A7E1 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
E8996D80686F2B3EC62DBDBB = { isa = PBXBuildFile; fileRef = 7119161802FA9887683494D0; };
|
||||
24BD48D3FBC9865DDEB76D29 = { isa = PBXBuildFile; fileRef = B06F951EA83CD91239635064; };
|
||||
7FE9AA5C36FD1C7F6F98E900 = { isa = PBXBuildFile; fileRef = 72DAB9810A241AB5649BF2B0; };
|
||||
BF6D53618D24D1D9EAC491D3 = { isa = PBXBuildFile; fileRef = 2125B8A9846C15B3D1F8B735; };
|
||||
330A9643F50DE8BEACDBB61B = { isa = PBXBuildFile; fileRef = 58F0F7911A68A142C3A981ED; };
|
||||
53E0B9862C5E908771C0228F = { isa = PBXBuildFile; fileRef = E1CBD0FBF4E4B347B87F031B; };
|
||||
99FCE4C1FE4BE160260A9B37 = { isa = PBXBuildFile; fileRef = 125E25EB254E6536E73B74A5; };
|
||||
0735D492AB157E5F26F2293A = { isa = PBXBuildFile; fileRef = DBDAB8F811D84F6C055C78DA; };
|
||||
489C322518A3C4F4DC8E8FE4 = { isa = PBXBuildFile; fileRef = 9088DD545C3708EA053CC371; };
|
||||
008367830DF5DB21FBAAA93F = { isa = PBXBuildFile; fileRef = 94105561197974333B7BD632; };
|
||||
9B12BA0402DA13494DFAE588 = { isa = PBXBuildFile; fileRef = 36A58EE4FBF01289682D7DAD; };
|
||||
707392A801368BCEE86E5256 = { isa = PBXBuildFile; fileRef = 9049BFDEB4FA33D1BAC82FAC; };
|
||||
D51982959E41125E4F4E92FA = { isa = PBXBuildFile; fileRef = 8B9506611F425243DD224A90; };
|
||||
7119161802FA9887683494D0 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
|
||||
B06F951EA83CD91239635064 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
|
||||
72DAB9810A241AB5649BF2B0 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
|
||||
2125B8A9846C15B3D1F8B735 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
|
||||
58F0F7911A68A142C3A981ED = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
|
||||
E1CBD0FBF4E4B347B87F031B = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
|
||||
125E25EB254E6536E73B74A5 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
|
||||
DBDAB8F811D84F6C055C78DA = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
|
||||
9088DD545C3708EA053CC371 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
||||
94105561197974333B7BD632 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; };
|
||||
36A58EE4FBF01289682D7DAD = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = System/Library/Frameworks/QuickTime.framework; sourceTree = SDKROOT; };
|
||||
7FABD4A9FCB57F9C63BD5D34 = { isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = BinaryBuilder; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
9049BFDEB4FA33D1BAC82FAC = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = SOURCE_ROOT; };
|
||||
351908352BAB95A544A300F2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = SOURCE_ROOT; };
|
||||
FC95DFE22E66CA05B8BF7352 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = SOURCE_ROOT; };
|
||||
8B9506611F425243DD224A90 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode.mm; path = ../../JuceLibraryCode/JuceLibraryCode.mm; sourceTree = SOURCE_ROOT; };
|
||||
B7B714F1BC580B5898069A1D = { isa = PBXGroup; children = (
|
||||
9049BFDEB4FA33D1BAC82FAC ); name = Source; sourceTree = "<group>"; };
|
||||
9310BD97E4BDBEE06D277513 = { isa = PBXGroup; children = (
|
||||
351908352BAB95A544A300F2,
|
||||
FC95DFE22E66CA05B8BF7352,
|
||||
8B9506611F425243DD224A90 ); name = "Juce Library Code"; sourceTree = "<group>"; };
|
||||
578E3D7C3819F32E2E3C6A34 = { isa = PBXGroup; children = ( ); name = Resources; sourceTree = "<group>"; };
|
||||
6A2DE3401F8295169E892596 = { isa = PBXGroup; children = (
|
||||
7119161802FA9887683494D0,
|
||||
B06F951EA83CD91239635064,
|
||||
72DAB9810A241AB5649BF2B0,
|
||||
2125B8A9846C15B3D1F8B735,
|
||||
58F0F7911A68A142C3A981ED,
|
||||
E1CBD0FBF4E4B347B87F031B,
|
||||
125E25EB254E6536E73B74A5,
|
||||
DBDAB8F811D84F6C055C78DA,
|
||||
9088DD545C3708EA053CC371,
|
||||
94105561197974333B7BD632,
|
||||
36A58EE4FBF01289682D7DAD ); name = Frameworks; sourceTree = "<group>"; };
|
||||
8532B0CC7DC2F05D888E79F2 = { isa = PBXGroup; children = (
|
||||
7FABD4A9FCB57F9C63BD5D34 ); name = Products; sourceTree = "<group>"; };
|
||||
07E3546C6DFA9084D23A33E9 = { isa = PBXGroup; children = (
|
||||
B7B714F1BC580B5898069A1D,
|
||||
9310BD97E4BDBEE06D277513,
|
||||
578E3D7C3819F32E2E3C6A34,
|
||||
6A2DE3401F8295169E892596,
|
||||
8532B0CC7DC2F05D888E79F2 ); name = Source; sourceTree = "<group>"; };
|
||||
4B4D97D6F12470EB9280F783 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||
PREBINDING = NO;
|
||||
HEADER_SEARCH_PATHS = " $(inherited)";
|
||||
|
|
@ -76,7 +76,7 @@
|
|||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"_DEBUG=1",
|
||||
"DEBUG=1 "); }; name = Debug; };
|
||||
A116EE5C62789530CF75BA63 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
D4E910481C9C05D598DC755B = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||
PREBINDING = NO;
|
||||
HEADER_SEARCH_PATHS = " $(inherited)";
|
||||
|
|
@ -88,7 +88,7 @@
|
|||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"_NDEBUG=1",
|
||||
"NDEBUG=1 "); }; name = Release; };
|
||||
DA7B11D801B220A70E79666D = { isa = XCBuildConfiguration; buildSettings = {
|
||||
C69BDE02D12775D4A17BFA17 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
|
@ -102,7 +102,7 @@
|
|||
ZERO_LINK = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
PRODUCT_NAME = "BinaryBuilder"; }; name = Debug; };
|
||||
DF5425353B7CCCB990957226 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
B911917EBAEE875AC65A0C2B = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
|
@ -116,33 +116,33 @@
|
|||
ZERO_LINK = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
PRODUCT_NAME = "BinaryBuilder"; }; name = Release; };
|
||||
DCF3DECB3E449934F432BCE5 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
DA7B11D801B220A70E79666D,
|
||||
DF5425353B7CCCB990957226 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
4D9C43C6237ADA72C875B760 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
863BC4983AB677B34020A7E1,
|
||||
A116EE5C62789530CF75BA63 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
021B93602492F70DDC7B752A = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
D6DEA193D099F447BC2BC812 = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
|
||||
1FAD952C829A55D97F6E6664,
|
||||
082F96946F7CD4AFEDE1064B ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
90724B03672FC7862B671969 = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
|
||||
540A84102A635F4601CD7991,
|
||||
4059BA1831A3C2EE6BC73A86,
|
||||
3FD813D407F9A698544CD0BF,
|
||||
003C524A58C1AE9E5700E942,
|
||||
283B383CA36F5B48D0E781B2,
|
||||
2881178D3974809F4E152A77,
|
||||
A58DFAAE812BF6E26FD6B01F,
|
||||
64735B5D978FDFB20DEA938D,
|
||||
8169D77DFD3BC7A1A84CF3DB,
|
||||
474B141E513991137D7C0FB6,
|
||||
796E0F144DCCFFE6F4242F21 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
683DA490C2B056506C3A8D7B = { isa = PBXNativeTarget; buildConfigurationList = 4D9C43C6237ADA72C875B760; buildPhases = (
|
||||
021B93602492F70DDC7B752A,
|
||||
D6DEA193D099F447BC2BC812,
|
||||
90724B03672FC7862B671969 ); buildRules = ( ); dependencies = ( ); name = BinaryBuilder; productName = BinaryBuilder; productReference = 7A158D02E2EDD703A0CFA8BC; productInstallPath = /usr/bin; productType = "com.apple.product-type.tool"; };
|
||||
EF47A66EA997AB0AD6AB1E37 = { isa = PBXProject; buildConfigurationList = DCF3DECB3E449934F432BCE5; compatibilityVersion = "Xcode 3.0"; hasScannedForEncodings = 0; mainGroup = 97D16C110AD333B7A7B19523; projectDirPath = ""; projectRoot = ""; targets = ( 683DA490C2B056506C3A8D7B ); };
|
||||
71143A294DF2ABC013DAD8F4 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
C69BDE02D12775D4A17BFA17,
|
||||
B911917EBAEE875AC65A0C2B ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
195657633D555407C2EA0CE8 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
4B4D97D6F12470EB9280F783,
|
||||
D4E910481C9C05D598DC755B ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
F485685C969D78B9212B61AD = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
C02C54CA659982168A3DA559 = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
|
||||
707392A801368BCEE86E5256,
|
||||
D51982959E41125E4F4E92FA ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
753185144E84CC3E130F945B = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
|
||||
E8996D80686F2B3EC62DBDBB,
|
||||
24BD48D3FBC9865DDEB76D29,
|
||||
7FE9AA5C36FD1C7F6F98E900,
|
||||
BF6D53618D24D1D9EAC491D3,
|
||||
330A9643F50DE8BEACDBB61B,
|
||||
53E0B9862C5E908771C0228F,
|
||||
99FCE4C1FE4BE160260A9B37,
|
||||
0735D492AB157E5F26F2293A,
|
||||
489C322518A3C4F4DC8E8FE4,
|
||||
008367830DF5DB21FBAAA93F,
|
||||
9B12BA0402DA13494DFAE588 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
495DDE27E308E15C44991018 = { isa = PBXNativeTarget; buildConfigurationList = 195657633D555407C2EA0CE8; buildPhases = (
|
||||
F485685C969D78B9212B61AD,
|
||||
C02C54CA659982168A3DA559,
|
||||
753185144E84CC3E130F945B ); buildRules = ( ); dependencies = ( ); name = BinaryBuilder; productName = BinaryBuilder; productReference = 7FABD4A9FCB57F9C63BD5D34; productInstallPath = /usr/bin; productType = "com.apple.product-type.tool"; };
|
||||
33F77160E42E0F4DA09F3660 = { isa = PBXProject; buildConfigurationList = 71143A294DF2ABC013DAD8F4; compatibilityVersion = "Xcode 3.0"; hasScannedForEncodings = 0; mainGroup = 07E3546C6DFA9084D23A33E9; projectDirPath = ""; projectRoot = ""; targets = ( 495DDE27E308E15C44991018 ); };
|
||||
};
|
||||
rootObject = EF47A66EA997AB0AD6AB1E37;
|
||||
rootObject = 33F77160E42E0F4DA09F3660;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||
# Visual C++ Express 2005
|
||||
Project("{C479B19D-B6A5-76F6-B2B7-67CB084FECC6}") = "BinaryBuilder", "BinaryBuilder.vcproj", "{BE095571-69DE-975F-8583-455F8A65BB32}"
|
||||
Project("{D7FD13D0-EADB-347A-0525-9F0597899B5A}") = "BinaryBuilder", "BinaryBuilder.vcproj", "{07A3F0B4-D234-EC23-96A2-85290D0A0775}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
@ -9,10 +9,10 @@ Global
|
|||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{BE095571-69DE-975F-8583-455F8A65BB32}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{BE095571-69DE-975F-8583-455F8A65BB32}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{BE095571-69DE-975F-8583-455F8A65BB32}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{BE095571-69DE-975F-8583-455F8A65BB32}.Release|Win32.Build.0 = Release|Win32
|
||||
{07A3F0B4-D234-EC23-96A2-85290D0A0775}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{07A3F0B4-D234-EC23-96A2-85290D0A0775}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{07A3F0B4-D234-EC23-96A2-85290D0A0775}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{07A3F0B4-D234-EC23-96A2-85290D0A0775}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<VisualStudioProject ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="BinaryBuilder"
|
||||
ProjectGUID="{BE095571-69DE-975F-8583-455F8A65BB32}"
|
||||
ProjectGUID="{07A3F0B4-D234-EC23-96A2-85290D0A0775}"
|
||||
TargetFrameworkVersion="131072">
|
||||
<Platforms>
|
||||
<Platform Name="Win32"/>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||
# Visual C++ Express 2008
|
||||
Project("{C479B19D-B6A5-76F6-B2B7-67CB084FECC6}") = "BinaryBuilder", "BinaryBuilder.vcproj", "{BE095571-69DE-975F-8583-455F8A65BB32}"
|
||||
Project("{D7FD13D0-EADB-347A-0525-9F0597899B5A}") = "BinaryBuilder", "BinaryBuilder.vcproj", "{07A3F0B4-D234-EC23-96A2-85290D0A0775}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
@ -9,10 +9,10 @@ Global
|
|||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{BE095571-69DE-975F-8583-455F8A65BB32}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{BE095571-69DE-975F-8583-455F8A65BB32}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{BE095571-69DE-975F-8583-455F8A65BB32}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{BE095571-69DE-975F-8583-455F8A65BB32}.Release|Win32.Build.0 = Release|Win32
|
||||
{07A3F0B4-D234-EC23-96A2-85290D0A0775}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{07A3F0B4-D234-EC23-96A2-85290D0A0775}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{07A3F0B4-D234-EC23-96A2-85290D0A0775}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{07A3F0B4-D234-EC23-96A2-85290D0A0775}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<VisualStudioProject ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="BinaryBuilder"
|
||||
ProjectGUID="{BE095571-69DE-975F-8583-455F8A65BB32}"
|
||||
ProjectGUID="{07A3F0B4-D234-EC23-96A2-85290D0A0775}"
|
||||
TargetFrameworkVersion="131072">
|
||||
<Platforms>
|
||||
<Platform Name="Win32"/>
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
//#define JUCE_ENABLE_REPAINT_DEBUGGING
|
||||
//#define JUCE_USE_XINERAMA
|
||||
//#define JUCE_USE_XSHM
|
||||
//#define JUCE_USE_XRENDER
|
||||
//#define JUCE_PLUGINHOST_VST
|
||||
//#define JUCE_PLUGINHOST_AU
|
||||
#define JUCE_ONLY_BUILD_CORE_LIBRARY 1
|
||||
|
|
|
|||
|
|
@ -6,79 +6,79 @@
|
|||
objectVersion = 44;
|
||||
objects = {
|
||||
|
||||
56FD709F3CB6A985C1B7A694 = { isa = PBXBuildFile; fileRef = 2BC738E0BC1BED69E88EA879; };
|
||||
424CA69742F61D1D3CB06799 = { isa = PBXBuildFile; fileRef = 4DA4EA699A4965B89682B027; };
|
||||
32CB0F63084DF1D72436FDB2 = { isa = PBXBuildFile; fileRef = 6E4420A77315F181F32EB3C2; };
|
||||
022F4ED96A15F8CD27091655 = { isa = PBXBuildFile; fileRef = 66DC19FA3A3D19F7C647180A; };
|
||||
2A2E24CBB5B3A687A1E1AFB5 = { isa = PBXBuildFile; fileRef = 5762707CF8340A66D213B444; };
|
||||
2A73031C4AC8DACE1F1F477A = { isa = PBXBuildFile; fileRef = 8C00F38364695F4AF9D12D56; };
|
||||
A770E63D828F312130C0DD22 = { isa = PBXBuildFile; fileRef = BA8DBA8F50B61C70577A3FE6; };
|
||||
666547ECA9E319F1DED3B090 = { isa = PBXBuildFile; fileRef = 9F70418AF407D4C7A238BC7C; };
|
||||
835CC30C0F8F02E1783610EE = { isa = PBXBuildFile; fileRef = 73443664929FC50DEF4A25C9; };
|
||||
493E009D628DEC433D662CC9 = { isa = PBXBuildFile; fileRef = 0BBCA67DF63CE283F99C2236; };
|
||||
7B51FB935F204A16C41E4C34 = { isa = PBXBuildFile; fileRef = 009D09AFE7FC582542F600E4; };
|
||||
119081BB83FE901930589367 = { isa = PBXBuildFile; fileRef = 6C1A965199E4D717D447908A; };
|
||||
C9B8263DF607601C36830D13 = { isa = PBXBuildFile; fileRef = FC820277427C81F276F67A7F; };
|
||||
1FC28AA47241BA007DC7AD31 = { isa = PBXBuildFile; fileRef = F673B9CC3D25A521A00E8A89; };
|
||||
8CC14F76A67862D14F2B6801 = { isa = PBXBuildFile; fileRef = AFFC570DFFCFD15459170281; };
|
||||
E9DF0549CBAF0A93118023C1 = { isa = PBXBuildFile; fileRef = 5776F55FA169FD97F1118A78; };
|
||||
56DECA1CFFD6A264D3E4ED81 = { isa = PBXBuildFile; fileRef = F0FF93A063F329CAA91BF370; };
|
||||
2BC738E0BC1BED69E88EA879 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
|
||||
4DA4EA699A4965B89682B027 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
|
||||
6E4420A77315F181F32EB3C2 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
|
||||
66DC19FA3A3D19F7C647180A = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
|
||||
5762707CF8340A66D213B444 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
|
||||
8C00F38364695F4AF9D12D56 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
|
||||
BA8DBA8F50B61C70577A3FE6 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
|
||||
9F70418AF407D4C7A238BC7C = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
|
||||
73443664929FC50DEF4A25C9 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
||||
0BBCA67DF63CE283F99C2236 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; };
|
||||
009D09AFE7FC582542F600E4 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = System/Library/Frameworks/QuickTime.framework; sourceTree = SDKROOT; };
|
||||
7C087991E331224371B9C5CF = { isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HelloWorld.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
91703547CD56D6CCA2F93889 = { isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Info.plist; sourceTree = SOURCE_ROOT; };
|
||||
6C1A965199E4D717D447908A = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = SOURCE_ROOT; };
|
||||
FC820277427C81F276F67A7F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainComponent.cpp; path = ../../Source/MainComponent.cpp; sourceTree = SOURCE_ROOT; };
|
||||
DAD19F84822BABA3F8B0D111 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainComponent.h; path = ../../Source/MainComponent.h; sourceTree = SOURCE_ROOT; };
|
||||
51534640645D9043ABE7BA46 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = SOURCE_ROOT; };
|
||||
E662AEEE3FF59E4320F8E75E = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = SOURCE_ROOT; };
|
||||
F673B9CC3D25A521A00E8A89 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode1.mm; path = ../../JuceLibraryCode/JuceLibraryCode1.mm; sourceTree = SOURCE_ROOT; };
|
||||
AFFC570DFFCFD15459170281 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode2.mm; path = ../../JuceLibraryCode/JuceLibraryCode2.mm; sourceTree = SOURCE_ROOT; };
|
||||
5776F55FA169FD97F1118A78 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode3.mm; path = ../../JuceLibraryCode/JuceLibraryCode3.mm; sourceTree = SOURCE_ROOT; };
|
||||
F0FF93A063F329CAA91BF370 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode4.mm; path = ../../JuceLibraryCode/JuceLibraryCode4.mm; sourceTree = SOURCE_ROOT; };
|
||||
AA11C8578F0825D0211C7C71 = { isa = PBXGroup; children = (
|
||||
6C1A965199E4D717D447908A,
|
||||
FC820277427C81F276F67A7F,
|
||||
DAD19F84822BABA3F8B0D111 ); name = Source; sourceTree = "<group>"; };
|
||||
52AF58536809B334D6BEBF28 = { isa = PBXGroup; children = (
|
||||
51534640645D9043ABE7BA46,
|
||||
E662AEEE3FF59E4320F8E75E,
|
||||
F673B9CC3D25A521A00E8A89,
|
||||
AFFC570DFFCFD15459170281,
|
||||
5776F55FA169FD97F1118A78,
|
||||
F0FF93A063F329CAA91BF370 ); name = "Juce Library Code"; sourceTree = "<group>"; };
|
||||
2ACEDD4D6058F840EEA38906 = { isa = PBXGroup; children = (
|
||||
91703547CD56D6CCA2F93889 ); name = Resources; sourceTree = "<group>"; };
|
||||
968C104183C4F309F291072B = { isa = PBXGroup; children = (
|
||||
2BC738E0BC1BED69E88EA879,
|
||||
4DA4EA699A4965B89682B027,
|
||||
6E4420A77315F181F32EB3C2,
|
||||
66DC19FA3A3D19F7C647180A,
|
||||
5762707CF8340A66D213B444,
|
||||
8C00F38364695F4AF9D12D56,
|
||||
BA8DBA8F50B61C70577A3FE6,
|
||||
9F70418AF407D4C7A238BC7C,
|
||||
73443664929FC50DEF4A25C9,
|
||||
0BBCA67DF63CE283F99C2236,
|
||||
009D09AFE7FC582542F600E4 ); name = Frameworks; sourceTree = "<group>"; };
|
||||
5F17DE7C4751F5192BE55DD9 = { isa = PBXGroup; children = (
|
||||
7C087991E331224371B9C5CF ); name = Products; sourceTree = "<group>"; };
|
||||
7F35A8BE5FF618393F413498 = { isa = PBXGroup; children = (
|
||||
AA11C8578F0825D0211C7C71,
|
||||
52AF58536809B334D6BEBF28,
|
||||
2ACEDD4D6058F840EEA38906,
|
||||
968C104183C4F309F291072B,
|
||||
5F17DE7C4751F5192BE55DD9 ); name = Source; sourceTree = "<group>"; };
|
||||
882EB0274C09C2F31019C4F4 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
3F902D2C41E0C1FFC90C2724 = { isa = PBXBuildFile; fileRef = C820D5B3DC8B4E486B13FF4A; };
|
||||
7BC4087FD54A2C1ED196C892 = { isa = PBXBuildFile; fileRef = 076655B982BD7FD33C52BAEE; };
|
||||
C5E169F7107EC2306276438A = { isa = PBXBuildFile; fileRef = D9D2682DE4A5B07668895C2A; };
|
||||
056513FD57B5879AEDB3FB4D = { isa = PBXBuildFile; fileRef = 772D78456EEEBC74C5D711AE; };
|
||||
891256EECE8E8E7FAFCA1185 = { isa = PBXBuildFile; fileRef = AE08A72CF4EA4703C698EB57; };
|
||||
A9F87921F5EF364874BF8D08 = { isa = PBXBuildFile; fileRef = 38D39096CD656A18BC6E6D85; };
|
||||
EFF4A46CD8DC98212AF9F5A0 = { isa = PBXBuildFile; fileRef = 6866E587FFD01BF7EA2ADE1F; };
|
||||
6D3C942E85A6141029E184A4 = { isa = PBXBuildFile; fileRef = 22D27893FB59F52DF84AD344; };
|
||||
9EA4F1C0E2356AB5C07CE95E = { isa = PBXBuildFile; fileRef = E6809DE026C8BEAB082B3DEB; };
|
||||
569A272ED68671F2FE9903B8 = { isa = PBXBuildFile; fileRef = EA28150CE20A1AF43E5A30AB; };
|
||||
E12A6AAFEC6BB91A41D85FF2 = { isa = PBXBuildFile; fileRef = 8DBD4D8FD571C84A6C0CD817; };
|
||||
C67B5243DBC7218FEC5DBCC0 = { isa = PBXBuildFile; fileRef = E7507E799D8BDA92BDB78915; };
|
||||
9B11A7532637EC12F1DC4B2E = { isa = PBXBuildFile; fileRef = 0DB195C2B3538434D7D20B51; };
|
||||
CFFBB821ECB7D85603624533 = { isa = PBXBuildFile; fileRef = 57FFE120531343D50B7D2D28; };
|
||||
CB81C9C2C8729E6E3D47894E = { isa = PBXBuildFile; fileRef = 9025A92B6F0FB6F8EF51A168; };
|
||||
D718D953943D6576572CCD49 = { isa = PBXBuildFile; fileRef = EA4C72277CEA392BC33435A7; };
|
||||
D3AEE9F470093C7E82F10144 = { isa = PBXBuildFile; fileRef = 23634B2289D5AC4EA728B8F7; };
|
||||
C820D5B3DC8B4E486B13FF4A = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
|
||||
076655B982BD7FD33C52BAEE = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
|
||||
D9D2682DE4A5B07668895C2A = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
|
||||
772D78456EEEBC74C5D711AE = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
|
||||
AE08A72CF4EA4703C698EB57 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
|
||||
38D39096CD656A18BC6E6D85 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
|
||||
6866E587FFD01BF7EA2ADE1F = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
|
||||
22D27893FB59F52DF84AD344 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
|
||||
E6809DE026C8BEAB082B3DEB = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
||||
EA28150CE20A1AF43E5A30AB = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; };
|
||||
8DBD4D8FD571C84A6C0CD817 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = System/Library/Frameworks/QuickTime.framework; sourceTree = SDKROOT; };
|
||||
D5A29444C637255D66ACB7AE = { isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HelloWorld.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
B786F246076E6F5D363A6A2C = { isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Info.plist; sourceTree = SOURCE_ROOT; };
|
||||
E7507E799D8BDA92BDB78915 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = SOURCE_ROOT; };
|
||||
0DB195C2B3538434D7D20B51 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainComponent.cpp; path = ../../Source/MainComponent.cpp; sourceTree = SOURCE_ROOT; };
|
||||
A1E4765345FA980DAFA5BDE3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainComponent.h; path = ../../Source/MainComponent.h; sourceTree = SOURCE_ROOT; };
|
||||
8B21C8D0F53D4B6647916A6C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = SOURCE_ROOT; };
|
||||
43AD9F8DF7F760C6BBADDECC = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = SOURCE_ROOT; };
|
||||
57FFE120531343D50B7D2D28 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode1.mm; path = ../../JuceLibraryCode/JuceLibraryCode1.mm; sourceTree = SOURCE_ROOT; };
|
||||
9025A92B6F0FB6F8EF51A168 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode2.mm; path = ../../JuceLibraryCode/JuceLibraryCode2.mm; sourceTree = SOURCE_ROOT; };
|
||||
EA4C72277CEA392BC33435A7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode3.mm; path = ../../JuceLibraryCode/JuceLibraryCode3.mm; sourceTree = SOURCE_ROOT; };
|
||||
23634B2289D5AC4EA728B8F7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode4.mm; path = ../../JuceLibraryCode/JuceLibraryCode4.mm; sourceTree = SOURCE_ROOT; };
|
||||
A0C5DD7F69DC35BF462718E4 = { isa = PBXGroup; children = (
|
||||
E7507E799D8BDA92BDB78915,
|
||||
0DB195C2B3538434D7D20B51,
|
||||
A1E4765345FA980DAFA5BDE3 ); name = Source; sourceTree = "<group>"; };
|
||||
E9187C22BD3E64A16116DF8C = { isa = PBXGroup; children = (
|
||||
8B21C8D0F53D4B6647916A6C,
|
||||
43AD9F8DF7F760C6BBADDECC,
|
||||
57FFE120531343D50B7D2D28,
|
||||
9025A92B6F0FB6F8EF51A168,
|
||||
EA4C72277CEA392BC33435A7,
|
||||
23634B2289D5AC4EA728B8F7 ); name = "Juce Library Code"; sourceTree = "<group>"; };
|
||||
AE86EC0712AA99EF212AD4AE = { isa = PBXGroup; children = (
|
||||
B786F246076E6F5D363A6A2C ); name = Resources; sourceTree = "<group>"; };
|
||||
C134A2DBF8134BD791778F0F = { isa = PBXGroup; children = (
|
||||
C820D5B3DC8B4E486B13FF4A,
|
||||
076655B982BD7FD33C52BAEE,
|
||||
D9D2682DE4A5B07668895C2A,
|
||||
772D78456EEEBC74C5D711AE,
|
||||
AE08A72CF4EA4703C698EB57,
|
||||
38D39096CD656A18BC6E6D85,
|
||||
6866E587FFD01BF7EA2ADE1F,
|
||||
22D27893FB59F52DF84AD344,
|
||||
E6809DE026C8BEAB082B3DEB,
|
||||
EA28150CE20A1AF43E5A30AB,
|
||||
8DBD4D8FD571C84A6C0CD817 ); name = Frameworks; sourceTree = "<group>"; };
|
||||
DC3A70675753A61E8C7CD36B = { isa = PBXGroup; children = (
|
||||
D5A29444C637255D66ACB7AE ); name = Products; sourceTree = "<group>"; };
|
||||
4297D3C9A6348BA224516847 = { isa = PBXGroup; children = (
|
||||
A0C5DD7F69DC35BF462718E4,
|
||||
E9187C22BD3E64A16116DF8C,
|
||||
AE86EC0712AA99EF212AD4AE,
|
||||
C134A2DBF8134BD791778F0F,
|
||||
DC3A70675753A61E8C7CD36B ); name = Source; sourceTree = "<group>"; };
|
||||
91545771DBB516AC857F51FD = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||
PREBINDING = NO;
|
||||
HEADER_SEARCH_PATHS = " $(inherited)";
|
||||
|
|
@ -93,7 +93,7 @@
|
|||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"_DEBUG=1",
|
||||
"DEBUG=1 "); }; name = Debug; };
|
||||
9309DAEB73DBD07F906FD766 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
2BF0DFE3F61DBC969BCBD0C4 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||
PREBINDING = NO;
|
||||
HEADER_SEARCH_PATHS = " $(inherited)";
|
||||
|
|
@ -106,7 +106,7 @@
|
|||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"_NDEBUG=1",
|
||||
"NDEBUG=1 "); }; name = Release; };
|
||||
DC6E0D6712057BE7CE629370 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
1C939EADBAB81B95A46A6581 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
|
@ -120,7 +120,7 @@
|
|||
ZERO_LINK = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
PRODUCT_NAME = "HelloWorld"; }; name = Debug; };
|
||||
D14711B44DC017E8618FAF39 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
0F295119837F2D1BC9387794 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
|
@ -134,37 +134,37 @@
|
|||
ZERO_LINK = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
PRODUCT_NAME = "HelloWorld"; }; name = Release; };
|
||||
DEE6CA5A3F98D473C53CD9F8 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
DC6E0D6712057BE7CE629370,
|
||||
D14711B44DC017E8618FAF39 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
4F8F2F5535CE15A1996FD473 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
882EB0274C09C2F31019C4F4,
|
||||
9309DAEB73DBD07F906FD766 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
040E7FFF35F5314CAC65923E = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
D8C19D22E1FD4F768D15F525 = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
|
||||
119081BB83FE901930589367,
|
||||
C9B8263DF607601C36830D13,
|
||||
1FC28AA47241BA007DC7AD31,
|
||||
8CC14F76A67862D14F2B6801,
|
||||
E9DF0549CBAF0A93118023C1,
|
||||
56DECA1CFFD6A264D3E4ED81 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
92652782798302B5FC51366D = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
|
||||
56FD709F3CB6A985C1B7A694,
|
||||
424CA69742F61D1D3CB06799,
|
||||
32CB0F63084DF1D72436FDB2,
|
||||
022F4ED96A15F8CD27091655,
|
||||
2A2E24CBB5B3A687A1E1AFB5,
|
||||
2A73031C4AC8DACE1F1F477A,
|
||||
A770E63D828F312130C0DD22,
|
||||
666547ECA9E319F1DED3B090,
|
||||
835CC30C0F8F02E1783610EE,
|
||||
493E009D628DEC433D662CC9,
|
||||
7B51FB935F204A16C41E4C34 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
6A20902FD404918F3D24BA8E = { isa = PBXNativeTarget; buildConfigurationList = 4F8F2F5535CE15A1996FD473; buildPhases = (
|
||||
040E7FFF35F5314CAC65923E,
|
||||
D8C19D22E1FD4F768D15F525,
|
||||
92652782798302B5FC51366D ); buildRules = ( ); dependencies = ( ); name = HelloWorld; productName = HelloWorld; productReference = 7C087991E331224371B9C5CF; productInstallPath = "$(HOME)/Applications"; productType = "com.apple.product-type.application"; };
|
||||
E13992FDBAEBF649A7954C3A = { isa = PBXProject; buildConfigurationList = DEE6CA5A3F98D473C53CD9F8; compatibilityVersion = "Xcode 3.0"; hasScannedForEncodings = 0; mainGroup = 7F35A8BE5FF618393F413498; projectDirPath = ""; projectRoot = ""; targets = ( 6A20902FD404918F3D24BA8E ); };
|
||||
C71BF9C42683418116C8426E = { isa = XCConfigurationList; buildConfigurations = (
|
||||
1C939EADBAB81B95A46A6581,
|
||||
0F295119837F2D1BC9387794 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
6F5E160F06E7FAD8B5C96752 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
91545771DBB516AC857F51FD,
|
||||
2BF0DFE3F61DBC969BCBD0C4 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
4B8D17F77F2E2E7A2419CB17 = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
172414663F1A38D78D2B00C3 = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
|
||||
C67B5243DBC7218FEC5DBCC0,
|
||||
9B11A7532637EC12F1DC4B2E,
|
||||
CFFBB821ECB7D85603624533,
|
||||
CB81C9C2C8729E6E3D47894E,
|
||||
D718D953943D6576572CCD49,
|
||||
D3AEE9F470093C7E82F10144 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
CB4944AF280662FF07FEFEC4 = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
|
||||
3F902D2C41E0C1FFC90C2724,
|
||||
7BC4087FD54A2C1ED196C892,
|
||||
C5E169F7107EC2306276438A,
|
||||
056513FD57B5879AEDB3FB4D,
|
||||
891256EECE8E8E7FAFCA1185,
|
||||
A9F87921F5EF364874BF8D08,
|
||||
EFF4A46CD8DC98212AF9F5A0,
|
||||
6D3C942E85A6141029E184A4,
|
||||
9EA4F1C0E2356AB5C07CE95E,
|
||||
569A272ED68671F2FE9903B8,
|
||||
E12A6AAFEC6BB91A41D85FF2 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
9F559EB2CC99871D47887B82 = { isa = PBXNativeTarget; buildConfigurationList = 6F5E160F06E7FAD8B5C96752; buildPhases = (
|
||||
4B8D17F77F2E2E7A2419CB17,
|
||||
172414663F1A38D78D2B00C3,
|
||||
CB4944AF280662FF07FEFEC4 ); buildRules = ( ); dependencies = ( ); name = HelloWorld; productName = HelloWorld; productReference = D5A29444C637255D66ACB7AE; productInstallPath = "$(HOME)/Applications"; productType = "com.apple.product-type.application"; };
|
||||
9A0E300BBDAFA50EA37EA0D9 = { isa = PBXProject; buildConfigurationList = C71BF9C42683418116C8426E; compatibilityVersion = "Xcode 3.0"; hasScannedForEncodings = 0; mainGroup = 4297D3C9A6348BA224516847; projectDirPath = ""; projectRoot = ""; targets = ( 9F559EB2CC99871D47887B82 ); };
|
||||
};
|
||||
rootObject = E13992FDBAEBF649A7954C3A;
|
||||
rootObject = 9A0E300BBDAFA50EA37EA0D9;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||
# Visual C++ Express 2005
|
||||
Project("{4D8D7276-61CD-98C8-9805-B0C09E338293}") = "HelloWorld", "HelloWorld.vcproj", "{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}"
|
||||
Project("{B2F78CC9-CD50-16B6-2910-2265E55052A4}") = "HelloWorld", "HelloWorld.vcproj", "{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
@ -9,10 +9,10 @@ Global
|
|||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}.Release|Win32.Build.0 = Release|Win32
|
||||
{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<VisualStudioProject ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="HelloWorld"
|
||||
ProjectGUID="{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}"
|
||||
ProjectGUID="{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}"
|
||||
TargetFrameworkVersion="131072">
|
||||
<Platforms>
|
||||
<Platform Name="Win32"/>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||
# Visual C++ Express 2008
|
||||
Project("{4D8D7276-61CD-98C8-9805-B0C09E338293}") = "HelloWorld", "HelloWorld.vcproj", "{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}"
|
||||
Project("{B2F78CC9-CD50-16B6-2910-2265E55052A4}") = "HelloWorld", "HelloWorld.vcproj", "{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
@ -9,10 +9,10 @@ Global
|
|||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}.Release|Win32.Build.0 = Release|Win32
|
||||
{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<VisualStudioProject ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="HelloWorld"
|
||||
ProjectGUID="{E29E0A3E-FB4C-D74C-B035-BEF5617409AB}"
|
||||
ProjectGUID="{6ABB053F-FD6B-A828-D0FF-2D3BE343D9F7}"
|
||||
TargetFrameworkVersion="131072">
|
||||
<Platforms>
|
||||
<Platform Name="Win32"/>
|
||||
|
|
|
|||
|
|
@ -6,58 +6,58 @@
|
|||
objectVersion = 44;
|
||||
objects = {
|
||||
|
||||
DE7161FA80C6931E0CFDAC36 = { isa = PBXBuildFile; fileRef = 14CFDA402C804AFA5EA5C15A; };
|
||||
09AD751CF664DDADD5BB38FF = { isa = PBXBuildFile; fileRef = 850EBAC8BF163BD3166F14D7; };
|
||||
F33E06EEF327B7B3B24CBDDB = { isa = PBXBuildFile; fileRef = DA3A5A1A682E0C08F8A5F7BE; };
|
||||
52BAF97F520041392D0A16DD = { isa = PBXBuildFile; fileRef = A6FBC62F929C9862AF26776E; };
|
||||
119081BB83FE901930589367 = { isa = PBXBuildFile; fileRef = 6C1A965199E4D717D447908A; };
|
||||
C9B8263DF607601C36830D13 = { isa = PBXBuildFile; fileRef = FC820277427C81F276F67A7F; };
|
||||
1FC28AA47241BA007DC7AD31 = { isa = PBXBuildFile; fileRef = F673B9CC3D25A521A00E8A89; };
|
||||
8CC14F76A67862D14F2B6801 = { isa = PBXBuildFile; fileRef = AFFC570DFFCFD15459170281; };
|
||||
E9DF0549CBAF0A93118023C1 = { isa = PBXBuildFile; fileRef = 5776F55FA169FD97F1118A78; };
|
||||
56DECA1CFFD6A264D3E4ED81 = { isa = PBXBuildFile; fileRef = F0FF93A063F329CAA91BF370; };
|
||||
14CFDA402C804AFA5EA5C15A = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
||||
850EBAC8BF163BD3166F14D7 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
||||
DA3A5A1A682E0C08F8A5F7BE = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
||||
A6FBC62F929C9862AF26776E = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
|
||||
7C087991E331224371B9C5CF = { isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HelloWorld.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
91703547CD56D6CCA2F93889 = { isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Info.plist; sourceTree = SOURCE_ROOT; };
|
||||
6C1A965199E4D717D447908A = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = SOURCE_ROOT; };
|
||||
FC820277427C81F276F67A7F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainComponent.cpp; path = ../../Source/MainComponent.cpp; sourceTree = SOURCE_ROOT; };
|
||||
DAD19F84822BABA3F8B0D111 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainComponent.h; path = ../../Source/MainComponent.h; sourceTree = SOURCE_ROOT; };
|
||||
51534640645D9043ABE7BA46 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = SOURCE_ROOT; };
|
||||
E662AEEE3FF59E4320F8E75E = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = SOURCE_ROOT; };
|
||||
F673B9CC3D25A521A00E8A89 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode1.mm; path = ../../JuceLibraryCode/JuceLibraryCode1.mm; sourceTree = SOURCE_ROOT; };
|
||||
AFFC570DFFCFD15459170281 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode2.mm; path = ../../JuceLibraryCode/JuceLibraryCode2.mm; sourceTree = SOURCE_ROOT; };
|
||||
5776F55FA169FD97F1118A78 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode3.mm; path = ../../JuceLibraryCode/JuceLibraryCode3.mm; sourceTree = SOURCE_ROOT; };
|
||||
F0FF93A063F329CAA91BF370 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode4.mm; path = ../../JuceLibraryCode/JuceLibraryCode4.mm; sourceTree = SOURCE_ROOT; };
|
||||
AA11C8578F0825D0211C7C71 = { isa = PBXGroup; children = (
|
||||
6C1A965199E4D717D447908A,
|
||||
FC820277427C81F276F67A7F,
|
||||
DAD19F84822BABA3F8B0D111 ); name = Source; sourceTree = "<group>"; };
|
||||
52AF58536809B334D6BEBF28 = { isa = PBXGroup; children = (
|
||||
51534640645D9043ABE7BA46,
|
||||
E662AEEE3FF59E4320F8E75E,
|
||||
F673B9CC3D25A521A00E8A89,
|
||||
AFFC570DFFCFD15459170281,
|
||||
5776F55FA169FD97F1118A78,
|
||||
F0FF93A063F329CAA91BF370 ); name = "Juce Library Code"; sourceTree = "<group>"; };
|
||||
2ACEDD4D6058F840EEA38906 = { isa = PBXGroup; children = (
|
||||
91703547CD56D6CCA2F93889 ); name = Resources; sourceTree = "<group>"; };
|
||||
968C104183C4F309F291072B = { isa = PBXGroup; children = (
|
||||
14CFDA402C804AFA5EA5C15A,
|
||||
850EBAC8BF163BD3166F14D7,
|
||||
DA3A5A1A682E0C08F8A5F7BE,
|
||||
A6FBC62F929C9862AF26776E ); name = Frameworks; sourceTree = "<group>"; };
|
||||
5F17DE7C4751F5192BE55DD9 = { isa = PBXGroup; children = (
|
||||
7C087991E331224371B9C5CF ); name = Products; sourceTree = "<group>"; };
|
||||
7F35A8BE5FF618393F413498 = { isa = PBXGroup; children = (
|
||||
AA11C8578F0825D0211C7C71,
|
||||
52AF58536809B334D6BEBF28,
|
||||
2ACEDD4D6058F840EEA38906,
|
||||
968C104183C4F309F291072B,
|
||||
5F17DE7C4751F5192BE55DD9 ); name = Source; sourceTree = "<group>"; };
|
||||
882EB0274C09C2F31019C4F4 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
BAEB975FAD8A99FA884DC593 = { isa = PBXBuildFile; fileRef = 6B236CD90C0803738D7B5235; };
|
||||
D8DBAED4AB03622A655367C6 = { isa = PBXBuildFile; fileRef = 3DE047A554FB376BE3DA4C65; };
|
||||
1622BC343C98F98AC2AC0459 = { isa = PBXBuildFile; fileRef = AA21728A979A53287A0DEFED; };
|
||||
D397D8CEF8663F449B4439C0 = { isa = PBXBuildFile; fileRef = 18665A7A93EDBA956B64774E; };
|
||||
C67B5243DBC7218FEC5DBCC0 = { isa = PBXBuildFile; fileRef = E7507E799D8BDA92BDB78915; };
|
||||
9B11A7532637EC12F1DC4B2E = { isa = PBXBuildFile; fileRef = 0DB195C2B3538434D7D20B51; };
|
||||
CFFBB821ECB7D85603624533 = { isa = PBXBuildFile; fileRef = 57FFE120531343D50B7D2D28; };
|
||||
CB81C9C2C8729E6E3D47894E = { isa = PBXBuildFile; fileRef = 9025A92B6F0FB6F8EF51A168; };
|
||||
D718D953943D6576572CCD49 = { isa = PBXBuildFile; fileRef = EA4C72277CEA392BC33435A7; };
|
||||
D3AEE9F470093C7E82F10144 = { isa = PBXBuildFile; fileRef = 23634B2289D5AC4EA728B8F7; };
|
||||
6B236CD90C0803738D7B5235 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
||||
3DE047A554FB376BE3DA4C65 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
||||
AA21728A979A53287A0DEFED = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
||||
18665A7A93EDBA956B64774E = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
|
||||
D5A29444C637255D66ACB7AE = { isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HelloWorld.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
B786F246076E6F5D363A6A2C = { isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Info.plist; sourceTree = SOURCE_ROOT; };
|
||||
E7507E799D8BDA92BDB78915 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = SOURCE_ROOT; };
|
||||
0DB195C2B3538434D7D20B51 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainComponent.cpp; path = ../../Source/MainComponent.cpp; sourceTree = SOURCE_ROOT; };
|
||||
A1E4765345FA980DAFA5BDE3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainComponent.h; path = ../../Source/MainComponent.h; sourceTree = SOURCE_ROOT; };
|
||||
8B21C8D0F53D4B6647916A6C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = SOURCE_ROOT; };
|
||||
43AD9F8DF7F760C6BBADDECC = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = SOURCE_ROOT; };
|
||||
57FFE120531343D50B7D2D28 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode1.mm; path = ../../JuceLibraryCode/JuceLibraryCode1.mm; sourceTree = SOURCE_ROOT; };
|
||||
9025A92B6F0FB6F8EF51A168 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode2.mm; path = ../../JuceLibraryCode/JuceLibraryCode2.mm; sourceTree = SOURCE_ROOT; };
|
||||
EA4C72277CEA392BC33435A7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode3.mm; path = ../../JuceLibraryCode/JuceLibraryCode3.mm; sourceTree = SOURCE_ROOT; };
|
||||
23634B2289D5AC4EA728B8F7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = JuceLibraryCode4.mm; path = ../../JuceLibraryCode/JuceLibraryCode4.mm; sourceTree = SOURCE_ROOT; };
|
||||
A0C5DD7F69DC35BF462718E4 = { isa = PBXGroup; children = (
|
||||
E7507E799D8BDA92BDB78915,
|
||||
0DB195C2B3538434D7D20B51,
|
||||
A1E4765345FA980DAFA5BDE3 ); name = Source; sourceTree = "<group>"; };
|
||||
E9187C22BD3E64A16116DF8C = { isa = PBXGroup; children = (
|
||||
8B21C8D0F53D4B6647916A6C,
|
||||
43AD9F8DF7F760C6BBADDECC,
|
||||
57FFE120531343D50B7D2D28,
|
||||
9025A92B6F0FB6F8EF51A168,
|
||||
EA4C72277CEA392BC33435A7,
|
||||
23634B2289D5AC4EA728B8F7 ); name = "Juce Library Code"; sourceTree = "<group>"; };
|
||||
AE86EC0712AA99EF212AD4AE = { isa = PBXGroup; children = (
|
||||
B786F246076E6F5D363A6A2C ); name = Resources; sourceTree = "<group>"; };
|
||||
C134A2DBF8134BD791778F0F = { isa = PBXGroup; children = (
|
||||
6B236CD90C0803738D7B5235,
|
||||
3DE047A554FB376BE3DA4C65,
|
||||
AA21728A979A53287A0DEFED,
|
||||
18665A7A93EDBA956B64774E ); name = Frameworks; sourceTree = "<group>"; };
|
||||
DC3A70675753A61E8C7CD36B = { isa = PBXGroup; children = (
|
||||
D5A29444C637255D66ACB7AE ); name = Products; sourceTree = "<group>"; };
|
||||
4297D3C9A6348BA224516847 = { isa = PBXGroup; children = (
|
||||
A0C5DD7F69DC35BF462718E4,
|
||||
E9187C22BD3E64A16116DF8C,
|
||||
AE86EC0712AA99EF212AD4AE,
|
||||
C134A2DBF8134BD791778F0F,
|
||||
DC3A70675753A61E8C7CD36B ); name = Source; sourceTree = "<group>"; };
|
||||
91545771DBB516AC857F51FD = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||
PREBINDING = NO;
|
||||
HEADER_SEARCH_PATHS = " $(inherited)";
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"_DEBUG=1",
|
||||
"DEBUG=1 "); }; name = Debug; };
|
||||
9309DAEB73DBD07F906FD766 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
2BF0DFE3F61DBC969BCBD0C4 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||
PREBINDING = NO;
|
||||
HEADER_SEARCH_PATHS = " $(inherited)";
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"_NDEBUG=1",
|
||||
"NDEBUG=1 "); }; name = Release; };
|
||||
DC6E0D6712057BE7CE629370 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
1C939EADBAB81B95A46A6581 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
ZERO_LINK = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
PRODUCT_NAME = "HelloWorld"; }; name = Debug; };
|
||||
D14711B44DC017E8618FAF39 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
0F295119837F2D1BC9387794 = { isa = XCBuildConfiguration; buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
|
@ -113,30 +113,30 @@
|
|||
ZERO_LINK = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
PRODUCT_NAME = "HelloWorld"; }; name = Release; };
|
||||
DEE6CA5A3F98D473C53CD9F8 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
DC6E0D6712057BE7CE629370,
|
||||
D14711B44DC017E8618FAF39 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
4F8F2F5535CE15A1996FD473 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
882EB0274C09C2F31019C4F4,
|
||||
9309DAEB73DBD07F906FD766 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
040E7FFF35F5314CAC65923E = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
D8C19D22E1FD4F768D15F525 = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
|
||||
119081BB83FE901930589367,
|
||||
C9B8263DF607601C36830D13,
|
||||
1FC28AA47241BA007DC7AD31,
|
||||
8CC14F76A67862D14F2B6801,
|
||||
E9DF0549CBAF0A93118023C1,
|
||||
56DECA1CFFD6A264D3E4ED81 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
92652782798302B5FC51366D = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
|
||||
DE7161FA80C6931E0CFDAC36,
|
||||
09AD751CF664DDADD5BB38FF,
|
||||
F33E06EEF327B7B3B24CBDDB,
|
||||
52BAF97F520041392D0A16DD ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
6A20902FD404918F3D24BA8E = { isa = PBXNativeTarget; buildConfigurationList = 4F8F2F5535CE15A1996FD473; buildPhases = (
|
||||
040E7FFF35F5314CAC65923E,
|
||||
D8C19D22E1FD4F768D15F525,
|
||||
92652782798302B5FC51366D ); buildRules = ( ); dependencies = ( ); name = HelloWorld; productName = HelloWorld; productReference = 7C087991E331224371B9C5CF; productInstallPath = "$(HOME)/Applications"; productType = "com.apple.product-type.application"; };
|
||||
E13992FDBAEBF649A7954C3A = { isa = PBXProject; buildConfigurationList = DEE6CA5A3F98D473C53CD9F8; compatibilityVersion = "Xcode 3.0"; hasScannedForEncodings = 0; mainGroup = 7F35A8BE5FF618393F413498; projectDirPath = ""; projectRoot = ""; targets = ( 6A20902FD404918F3D24BA8E ); };
|
||||
C71BF9C42683418116C8426E = { isa = XCConfigurationList; buildConfigurations = (
|
||||
1C939EADBAB81B95A46A6581,
|
||||
0F295119837F2D1BC9387794 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
6F5E160F06E7FAD8B5C96752 = { isa = XCConfigurationList; buildConfigurations = (
|
||||
91545771DBB516AC857F51FD,
|
||||
2BF0DFE3F61DBC969BCBD0C4 ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
|
||||
4B8D17F77F2E2E7A2419CB17 = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
172414663F1A38D78D2B00C3 = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
|
||||
C67B5243DBC7218FEC5DBCC0,
|
||||
9B11A7532637EC12F1DC4B2E,
|
||||
CFFBB821ECB7D85603624533,
|
||||
CB81C9C2C8729E6E3D47894E,
|
||||
D718D953943D6576572CCD49,
|
||||
D3AEE9F470093C7E82F10144 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
CB4944AF280662FF07FEFEC4 = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
|
||||
BAEB975FAD8A99FA884DC593,
|
||||
D8DBAED4AB03622A655367C6,
|
||||
1622BC343C98F98AC2AC0459,
|
||||
D397D8CEF8663F449B4439C0 ); runOnlyForDeploymentPostprocessing = 0; };
|
||||
9F559EB2CC99871D47887B82 = { isa = PBXNativeTarget; buildConfigurationList = 6F5E160F06E7FAD8B5C96752; buildPhases = (
|
||||
4B8D17F77F2E2E7A2419CB17,
|
||||
172414663F1A38D78D2B00C3,
|
||||
CB4944AF280662FF07FEFEC4 ); buildRules = ( ); dependencies = ( ); name = HelloWorld; productName = HelloWorld; productReference = D5A29444C637255D66ACB7AE; productInstallPath = "$(HOME)/Applications"; productType = "com.apple.product-type.application"; };
|
||||
9A0E300BBDAFA50EA37EA0D9 = { isa = PBXProject; buildConfigurationList = C71BF9C42683418116C8426E; compatibilityVersion = "Xcode 3.0"; hasScannedForEncodings = 0; mainGroup = 4297D3C9A6348BA224516847; projectDirPath = ""; projectRoot = ""; targets = ( 9F559EB2CC99871D47887B82 ); };
|
||||
};
|
||||
rootObject = E13992FDBAEBF649A7954C3A;
|
||||
rootObject = 9A0E300BBDAFA50EA37EA0D9;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,5 +44,6 @@
|
|||
JUCE_USE_XINERAMA="default" JUCE_USE_XSHM="default" JUCE_PLUGINHOST_VST="default"
|
||||
JUCE_PLUGINHOST_AU="default" JUCE_ONLY_BUILD_CORE_LIBRARY="default"
|
||||
JUCE_WEB_BROWSER="default" JUCE_SUPPORT_CARBON="default" JUCE_CHECK_MEMORY_LEAKS="default"
|
||||
JUCE_CATCH_UNHANDLED_EXCEPTIONS="default" JUCE_STRINGS_ARE_UNICODE="default"/>
|
||||
JUCE_CATCH_UNHANDLED_EXCEPTIONS="default" JUCE_STRINGS_ARE_UNICODE="default"
|
||||
JUCE_USE_XRENDER="default"/>
|
||||
</JUCERPROJECT>
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
//#define JUCE_ENABLE_REPAINT_DEBUGGING
|
||||
//#define JUCE_USE_XINERAMA
|
||||
//#define JUCE_USE_XSHM
|
||||
//#define JUCE_USE_XRENDER
|
||||
//#define JUCE_PLUGINHOST_VST
|
||||
//#define JUCE_PLUGINHOST_AU
|
||||
//#define JUCE_ONLY_BUILD_CORE_LIBRARY
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue