mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 05:37:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,124 @@
|
||||
|
||||
#include "rbx/test/Base.UnitTest.Lib.h"
|
||||
#include "boost/test/unit_test_suite.hpp"
|
||||
#include "JetBrains/teamcity_messages.h"
|
||||
|
||||
using namespace JetBrains;
|
||||
BOOST_GLOBAL_FIXTURE(TeamcityFormatterRegistrar);
|
||||
|
||||
namespace RBX { namespace Test {
|
||||
|
||||
bool BaseGlobalFixture::fflagsAllOn = false;
|
||||
bool BaseGlobalFixture::fflagsAllOff = false;
|
||||
|
||||
BaseGlobalFixture::BaseGlobalFixture()
|
||||
{
|
||||
boost::unit_test::framework::register_observer(*this);
|
||||
if (!RBX::assertionHook())
|
||||
RBX::setAssertionHook(&handleDebugAssert);
|
||||
|
||||
if (!RBX::failureHook())
|
||||
RBX::setFailureHook(&handleFailure);
|
||||
|
||||
setAreAssertsTested(true);
|
||||
}
|
||||
|
||||
bool BaseGlobalFixture::tooManyAssertionsCheck()
|
||||
{
|
||||
const long maxCount = 100;
|
||||
|
||||
long count = assertCount++;
|
||||
|
||||
if (count < maxCount)
|
||||
return false;
|
||||
|
||||
if (count == maxCount)
|
||||
BOOST_MESSAGE("Too many assertions. No more will be reported for the current test");
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool BaseGlobalFixture::handleDebugAssert(const char* expression, const char* filename, int lineNumber)
|
||||
{
|
||||
if (!tooManyAssertionsCheck())
|
||||
{
|
||||
std::string message = "Assertion Failed: ";
|
||||
message += expression;
|
||||
BOOST_CHECK_MESSAGE_SOURCE(false, message.c_str(), filename, lineNumber);
|
||||
}
|
||||
return false; // let other processing take place, too
|
||||
}
|
||||
|
||||
bool BaseGlobalFixture::handleFailure(const char* expression, const char* filename, int lineNumber)
|
||||
{
|
||||
std::string message = "Assertion Failed: ";
|
||||
message += expression;
|
||||
BOOST_REQUIRE_MESSAGE_SOURCE(false, message.c_str(), filename, lineNumber);
|
||||
return true; // Don't let other processing take place. We're going to exit
|
||||
}
|
||||
|
||||
static bool skipFastFlag(const char* flagName) {
|
||||
return
|
||||
// Test flags (never remove)
|
||||
strcmp(flagName, "TestFastFlag") == 0 ||
|
||||
strcmp(flagName, "TestTrueValue") == 0 ||
|
||||
strcmp(flagName, "TestFalseValue") == 0 ||
|
||||
// Debug flags
|
||||
strncmp(flagName, "Debug", 5) == 0 ||
|
||||
// Broken flags
|
||||
strcmp(flagName, "UseClusterCache") == 0;
|
||||
}
|
||||
|
||||
static void setFFlag(const std::string& name, const std::string& varValue, void* context)
|
||||
{
|
||||
if (!skipFastFlag(name.c_str())) {
|
||||
bool value = *reinterpret_cast<bool*>(context);
|
||||
if(value && varValue == "false")
|
||||
FLog::SetValue(name, "true", FASTVARTYPE_ANY, false);
|
||||
if(!value && varValue == "true")
|
||||
FLog::SetValue(name, "false", FASTVARTYPE_ANY, false);
|
||||
}
|
||||
}
|
||||
|
||||
static void setAllFFlags(bool value)
|
||||
{
|
||||
BaseGlobalFixture::fflagsAllOn = value;
|
||||
BaseGlobalFixture::fflagsAllOff = !value;
|
||||
FLog::ForEachVariable(&setFFlag, &value, FASTVARTYPE_ANY);
|
||||
}
|
||||
|
||||
bool BaseGlobalFixture::processArg( const std::string arg )
|
||||
{
|
||||
if (arg.find("--help") == 0)
|
||||
{
|
||||
std::cout << "ROBLOX custom arguments:\n";
|
||||
std::cout << " --fflags=true|false - override all FFlag values\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
const char* fflagArg = "--fflags=";
|
||||
if (arg.find(fflagArg) == 0)
|
||||
{
|
||||
std::string fflagValue = arg.substr(strlen(fflagArg));
|
||||
if (fflagValue == "true")
|
||||
{
|
||||
BOOST_MESSAGE("setting all FFlags to true");
|
||||
setAllFFlags(true);
|
||||
}
|
||||
else if (fflagValue == "false")
|
||||
{
|
||||
BOOST_MESSAGE("setting all FFlags to false");
|
||||
setAllFFlags(false);
|
||||
}
|
||||
else
|
||||
throw boost::unit_test::framework::setup_error("bad fflag value. Must be true or false");
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
rbx::atomic<int> BaseGlobalFixture::assertCount;
|
||||
}}
|
||||
@@ -0,0 +1,118 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{C5E89A79-BBC2-4FF3-80E1-69F5291F0C3C}</ProjectGuid>
|
||||
<RootNamespace>BaseUnitTestLib</RootNamespace>
|
||||
<SccProjectName>SAK</SccProjectName>
|
||||
<SccLocalPath>SAK</SccLocalPath>
|
||||
<SccProvider>SAK</SccProvider>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<SccAuxPath>SAK</SccAuxPath>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v110</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v140_xp</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>11.0.50727.1</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
||||
<IntDir>$(Configuration)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
||||
<IntDir>$(Configuration)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;.\include;.\include\JetBrains;..\Base\include;..\TBB_4_1\include;..\Log\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>BOOST_THREAD_BUILD_LIB;WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader />
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<AdditionalOptions>/D "_SECURE_SCL=0" %(AdditionalOptions)</AdditionalOptions>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;.\include;.\include\JetBrains;..\Base\include;..\TBB_4_1\include;..\Log\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>BOOST_THREAD_BUILD_LIB;WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader />
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="Base.UnitTest.Lib.cpp" />
|
||||
<ClCompile Include="teamcity_boost.cpp" />
|
||||
<ClCompile Include="teamcity_messages.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\rbx\test\Base.UnitTest.Lib.h" />
|
||||
<ClInclude Include="include\rbx\test\ErrorLogsFixture.h" />
|
||||
<ClInclude Include="include\rbx\test\ScopedFastFlagSetting.h" />
|
||||
<ClInclude Include="include\JetBrains\teamcity_messages.h" />
|
||||
<ClInclude Include="include\rbx\test\test_tools.h" />
|
||||
<ClInclude Include="include\rbx\test\TimeoutFixture.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Text Include="teamcity_README.txt" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Base\Base.vcxproj">
|
||||
<Project>{3025c00a-7746-469b-a279-96127c72abee}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\boostlibs\boost.test.vcxproj">
|
||||
<Project>{55b54c4c-1951-4d6b-af5a-794214553001}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Resource Files">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="Base.UnitTest.Lib.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="teamcity_boost.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="teamcity_messages.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\rbx\test\Base.UnitTest.Lib.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="include\rbx\test\ErrorLogsFixture.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="include\rbx\test\ScopedFastFlagSetting.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="include\JetBrains\teamcity_messages.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="include\rbx\test\test_tools.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="include\rbx\test\TimeoutFixture.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Text Include="teamcity_README.txt" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,580 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
10EE19B715DC2CEF00C77EF8 /* libboost-d-1_55.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 10EE19B615DC2CE700C77EF8 /* libboost-d-1_55.a */; };
|
||||
1F28447615E6F96400120D64 /* ErrorLogsFixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8D261712DCEF1500EF0515 /* ErrorLogsFixture.h */; };
|
||||
1F28447715E6F96400120D64 /* test_tools.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8D261812DCEF1500EF0515 /* test_tools.h */; };
|
||||
1F28447815E6F96400120D64 /* TimeoutFixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8D261912DCEF1500EF0515 /* TimeoutFixture.h */; };
|
||||
1F28447915E6F96400120D64 /* teamcity_messages.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8D261D12DCEF2500EF0515 /* teamcity_messages.h */; };
|
||||
1F28447A15E6F96400120D64 /* Base.UnitTest.Lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 52743DC415053D570062A339 /* Base.UnitTest.Lib.h */; };
|
||||
1F28447C15E6F96400120D64 /* teamcity_boost.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8D261212DCEEEC00EF0515 /* teamcity_boost.cpp */; };
|
||||
1F28447D15E6F96400120D64 /* teamcity_messages.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8D261312DCEEEC00EF0515 /* teamcity_messages.cpp */; };
|
||||
1F28447E15E6F96400120D64 /* Base.UnitTest.Lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52743DC615053D620062A339 /* Base.UnitTest.Lib.cpp */; };
|
||||
1F28448015E6F96400120D64 /* libboost-d-1_55.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 10EE19B615DC2CE700C77EF8 /* libboost-d-1_55.a */; };
|
||||
1F8D261412DCEEEC00EF0515 /* teamcity_boost.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8D261212DCEEEC00EF0515 /* teamcity_boost.cpp */; };
|
||||
1F8D261512DCEEEC00EF0515 /* teamcity_messages.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8D261312DCEEEC00EF0515 /* teamcity_messages.cpp */; };
|
||||
1F8D261A12DCEF1500EF0515 /* ErrorLogsFixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8D261712DCEF1500EF0515 /* ErrorLogsFixture.h */; };
|
||||
1F8D261B12DCEF1500EF0515 /* test_tools.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8D261812DCEF1500EF0515 /* test_tools.h */; };
|
||||
1F8D261C12DCEF1500EF0515 /* TimeoutFixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8D261912DCEF1500EF0515 /* TimeoutFixture.h */; };
|
||||
1F8D261E12DCEF2500EF0515 /* teamcity_messages.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8D261D12DCEF2500EF0515 /* teamcity_messages.h */; };
|
||||
52743DC515053D570062A339 /* Base.UnitTest.Lib.h in Headers */ = {isa = PBXBuildFile; fileRef = 52743DC415053D570062A339 /* Base.UnitTest.Lib.h */; };
|
||||
52743DC715053D620062A339 /* Base.UnitTest.Lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52743DC615053D620062A339 /* Base.UnitTest.Lib.cpp */; };
|
||||
9FA5E957167A8D5B0040EE8C /* ScopedFastFlagSetting.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA5E956167A8D5B0040EE8C /* ScopedFastFlagSetting.h */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
10EE19B315DC2CE700C77EF8 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 10EE19AE15DC2CE700C77EF8 /* boost.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = D2AAC09D05546B4700DB518D;
|
||||
remoteInfo = boost;
|
||||
};
|
||||
10EE19B515DC2CE700C77EF8 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 10EE19AE15DC2CE700C77EF8 /* boost.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = E79762DF12886ADD00CE6714;
|
||||
remoteInfo = boost_static;
|
||||
};
|
||||
10EE19C215DC2D4400C77EF8 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 10EE19AE15DC2CE700C77EF8 /* boost.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = E79762DE12886ADD00CE6714;
|
||||
remoteInfo = boost_static;
|
||||
};
|
||||
1F28447415E6F96400120D64 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 10EE19AE15DC2CE700C77EF8 /* boost.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = E79762DE12886ADD00CE6714;
|
||||
remoteInfo = boost_static;
|
||||
};
|
||||
1F97D9E315EC086700993FF3 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 10EE19AE15DC2CE700C77EF8 /* boost.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 106B8D7D15E7217400C1FF6B;
|
||||
remoteInfo = "Boost static iOS";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
10EE19AE15DC2CE700C77EF8 /* boost.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = boost.xcodeproj; path = ../boostlibs/boost.xcodeproj; sourceTree = SOURCE_ROOT; };
|
||||
1F28448415E6F96400120D64 /* libBase.UnitTest.iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libBase.UnitTest.iOS.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
1F8D261212DCEEEC00EF0515 /* teamcity_boost.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = teamcity_boost.cpp; sourceTree = "<group>"; };
|
||||
1F8D261312DCEEEC00EF0515 /* teamcity_messages.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = teamcity_messages.cpp; sourceTree = "<group>"; };
|
||||
1F8D261712DCEF1500EF0515 /* ErrorLogsFixture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ErrorLogsFixture.h; path = include/rbx/test/ErrorLogsFixture.h; sourceTree = "<group>"; };
|
||||
1F8D261812DCEF1500EF0515 /* test_tools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_tools.h; path = include/rbx/test/test_tools.h; sourceTree = "<group>"; };
|
||||
1F8D261912DCEF1500EF0515 /* TimeoutFixture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TimeoutFixture.h; path = include/rbx/test/TimeoutFixture.h; sourceTree = "<group>"; };
|
||||
1F8D261D12DCEF2500EF0515 /* teamcity_messages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = teamcity_messages.h; path = include/JetBrains/teamcity_messages.h; sourceTree = "<group>"; };
|
||||
52743DC415053D570062A339 /* Base.UnitTest.Lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Base.UnitTest.Lib.h; path = include/rbx/test/Base.UnitTest.Lib.h; sourceTree = "<group>"; };
|
||||
52743DC615053D620062A339 /* Base.UnitTest.Lib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Base.UnitTest.Lib.cpp; sourceTree = "<group>"; };
|
||||
9FA5E956167A8D5B0040EE8C /* ScopedFastFlagSetting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScopedFastFlagSetting.h; path = include/rbx/test/ScopedFastFlagSetting.h; sourceTree = "<group>"; };
|
||||
D2AAC046055464E500DB518D /* libBase.UnitTest.Lib.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libBase.UnitTest.Lib.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
1F28447F15E6F96400120D64 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1F28448015E6F96400120D64 /* libboost-d-1_55.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
D289987405E68DCB004EDB86 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
10EE19B715DC2CEF00C77EF8 /* libboost-d-1_55.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
08FB7794FE84155DC02AAC07 /* Base.UnitTest.Lib */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
10EE19AE15DC2CE700C77EF8 /* boost.xcodeproj */,
|
||||
1F8D261612DCEEF300EF0515 /* Header */,
|
||||
08FB7795FE84155DC02AAC07 /* Source */,
|
||||
C6A0FF2B0290797F04C91782 /* Documentation */,
|
||||
1AB674ADFE9D54B511CA2CBB /* Products */,
|
||||
);
|
||||
name = Base.UnitTest.Lib;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08FB7795FE84155DC02AAC07 /* Source */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
52743DC615053D620062A339 /* Base.UnitTest.Lib.cpp */,
|
||||
1F8D261212DCEEEC00EF0515 /* teamcity_boost.cpp */,
|
||||
1F8D261312DCEEEC00EF0515 /* teamcity_messages.cpp */,
|
||||
);
|
||||
name = Source;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
10EE19AF15DC2CE700C77EF8 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
10EE19B415DC2CE700C77EF8 /* Boost_1_55.dylib */,
|
||||
10EE19B615DC2CE700C77EF8 /* libboost-d-1_55.a */,
|
||||
1F97D9E415EC086700993FF3 /* libBoost static iOS.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1AB674ADFE9D54B511CA2CBB /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
D2AAC046055464E500DB518D /* libBase.UnitTest.Lib.a */,
|
||||
1F28448415E6F96400120D64 /* libBase.UnitTest.iOS.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1F8D261612DCEEF300EF0515 /* Header */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
9FA5E956167A8D5B0040EE8C /* ScopedFastFlagSetting.h */,
|
||||
52743DC415053D570062A339 /* Base.UnitTest.Lib.h */,
|
||||
1F8D261D12DCEF2500EF0515 /* teamcity_messages.h */,
|
||||
1F8D261712DCEF1500EF0515 /* ErrorLogsFixture.h */,
|
||||
1F8D261812DCEF1500EF0515 /* test_tools.h */,
|
||||
1F8D261912DCEF1500EF0515 /* TimeoutFixture.h */,
|
||||
);
|
||||
name = Header;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
C6A0FF2B0290797F04C91782 /* Documentation */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
);
|
||||
name = Documentation;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
1F28447515E6F96400120D64 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1F28447615E6F96400120D64 /* ErrorLogsFixture.h in Headers */,
|
||||
1F28447715E6F96400120D64 /* test_tools.h in Headers */,
|
||||
1F28447815E6F96400120D64 /* TimeoutFixture.h in Headers */,
|
||||
1F28447915E6F96400120D64 /* teamcity_messages.h in Headers */,
|
||||
1F28447A15E6F96400120D64 /* Base.UnitTest.Lib.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
D2AAC043055464E500DB518D /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1F8D261A12DCEF1500EF0515 /* ErrorLogsFixture.h in Headers */,
|
||||
1F8D261B12DCEF1500EF0515 /* test_tools.h in Headers */,
|
||||
1F8D261C12DCEF1500EF0515 /* TimeoutFixture.h in Headers */,
|
||||
1F8D261E12DCEF2500EF0515 /* teamcity_messages.h in Headers */,
|
||||
52743DC515053D570062A339 /* Base.UnitTest.Lib.h in Headers */,
|
||||
9FA5E957167A8D5B0040EE8C /* ScopedFastFlagSetting.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
1F28447215E6F96400120D64 /* Base.UnitTest.iOS */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1F28448115E6F96400120D64 /* Build configuration list for PBXNativeTarget "Base.UnitTest.iOS" */;
|
||||
buildPhases = (
|
||||
1F28447515E6F96400120D64 /* Headers */,
|
||||
1F28447B15E6F96400120D64 /* Sources */,
|
||||
1F28447F15E6F96400120D64 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
1F28447315E6F96400120D64 /* PBXTargetDependency */,
|
||||
);
|
||||
name = Base.UnitTest.iOS;
|
||||
productName = Base.UnitTest.Lib;
|
||||
productReference = 1F28448415E6F96400120D64 /* libBase.UnitTest.iOS.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
D2AAC045055464E500DB518D /* Base.UnitTest.Lib */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1DEB91EB08733DB70010E9CD /* Build configuration list for PBXNativeTarget "Base.UnitTest.Lib" */;
|
||||
buildPhases = (
|
||||
D2AAC043055464E500DB518D /* Headers */,
|
||||
D2AAC044055464E500DB518D /* Sources */,
|
||||
D289987405E68DCB004EDB86 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
10EE19C315DC2D4400C77EF8 /* PBXTargetDependency */,
|
||||
);
|
||||
name = Base.UnitTest.Lib;
|
||||
productName = Base.UnitTest.Lib;
|
||||
productReference = D2AAC046055464E500DB518D /* libBase.UnitTest.Lib.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
};
|
||||
buildConfigurationList = 1DEB91EF08733DB70010E9CD /* Build configuration list for PBXProject "Base.UnitTest.Lib" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 1;
|
||||
knownRegions = (
|
||||
English,
|
||||
Japanese,
|
||||
French,
|
||||
German,
|
||||
);
|
||||
mainGroup = 08FB7794FE84155DC02AAC07 /* Base.UnitTest.Lib */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 10EE19AF15DC2CE700C77EF8 /* Products */;
|
||||
ProjectRef = 10EE19AE15DC2CE700C77EF8 /* boost.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
D2AAC045055464E500DB518D /* Base.UnitTest.Lib */,
|
||||
1F28447215E6F96400120D64 /* Base.UnitTest.iOS */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
10EE19B415DC2CE700C77EF8 /* Boost_1_55.dylib */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = "compiled.mach-o.dylib";
|
||||
path = Boost_1_55.dylib;
|
||||
remoteRef = 10EE19B315DC2CE700C77EF8 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
10EE19B615DC2CE700C77EF8 /* libboost-d-1_55.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "libboost-d-1_55.a";
|
||||
remoteRef = 10EE19B515DC2CE700C77EF8 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
1F97D9E415EC086700993FF3 /* libBoost static iOS.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "libBoost static iOS.a";
|
||||
remoteRef = 1F97D9E315EC086700993FF3 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
1F28447B15E6F96400120D64 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1F28447C15E6F96400120D64 /* teamcity_boost.cpp in Sources */,
|
||||
1F28447D15E6F96400120D64 /* teamcity_messages.cpp in Sources */,
|
||||
1F28447E15E6F96400120D64 /* Base.UnitTest.Lib.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
D2AAC044055464E500DB518D /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1F8D261412DCEEEC00EF0515 /* teamcity_boost.cpp in Sources */,
|
||||
1F8D261512DCEEEC00EF0515 /* teamcity_messages.cpp in Sources */,
|
||||
52743DC715053D620062A339 /* Base.UnitTest.Lib.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
10EE19C315DC2D4400C77EF8 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = boost_static;
|
||||
targetProxy = 10EE19C215DC2D4400C77EF8 /* PBXContainerItemProxy */;
|
||||
};
|
||||
1F28447315E6F96400120D64 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = boost_static;
|
||||
targetProxy = 1F28447415E6F96400120D64 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
1DEB91EC08733DB70010E9CD /* 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;
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
../Base/include,
|
||||
../Log/include,
|
||||
./include,
|
||||
);
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PRODUCT_NAME = Base.UnitTest.Lib;
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
1DEB91ED08733DB70010E9CD /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
../Base/include,
|
||||
../Log/include,
|
||||
./include,
|
||||
);
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PRODUCT_NAME = Base.UnitTest.Lib;
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
1DEB91F008733DB70010E9CD /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = i386;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = "_DEBUG=1";
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
|
||||
GCC_VERSION = 4.2;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = macosx10.8;
|
||||
VALID_ARCHS = i386;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
1DEB91F108733DB70010E9CD /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = i386;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1";
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
|
||||
GCC_VERSION = 4.2;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = macosx10.8;
|
||||
VALID_ARCHS = i386;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
1F28448215E6F96400120D64 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = (
|
||||
armv7,
|
||||
armv6,
|
||||
);
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
RBX_PLATFORM_IOS,
|
||||
);
|
||||
GCC_VERSION = com.apple.compilers.llvmgcc42;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
../Base/include,
|
||||
../Log/include,
|
||||
./include,
|
||||
);
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 4.0;
|
||||
PRODUCT_NAME = Base.UnitTest.iOS;
|
||||
SDKROOT = iphoneos;
|
||||
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos";
|
||||
VALID_ARCHS = "armv6 armv7";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
1F28448315E6F96400120D64 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = (
|
||||
armv7,
|
||||
armv6,
|
||||
);
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
RBX_PLATFORM_IOS,
|
||||
);
|
||||
GCC_VERSION = com.apple.compilers.llvmgcc42;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
../Base/include,
|
||||
../Log/include,
|
||||
./include,
|
||||
);
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 4.0;
|
||||
PRODUCT_NAME = Base.UnitTest.iOS;
|
||||
SDKROOT = iphoneos;
|
||||
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos";
|
||||
VALID_ARCHS = "armv6 armv7";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
D0D04FC91C75F2A900CDE19D /* NoOpt */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = i386;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"NDEBUG=1",
|
||||
"_NOOPT=1",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
|
||||
GCC_VERSION = 4.2;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = macosx10.8;
|
||||
VALID_ARCHS = i386;
|
||||
};
|
||||
name = NoOpt;
|
||||
};
|
||||
D0D04FCA1C75F2A900CDE19D /* NoOpt */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
../Base/include,
|
||||
../Log/include,
|
||||
./include,
|
||||
);
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PRODUCT_NAME = Base.UnitTest.Lib;
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = NoOpt;
|
||||
};
|
||||
D0D04FCB1C75F2A900CDE19D /* NoOpt */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = (
|
||||
armv7,
|
||||
armv6,
|
||||
);
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
RBX_PLATFORM_IOS,
|
||||
);
|
||||
GCC_VERSION = com.apple.compilers.llvmgcc42;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
../Base/include,
|
||||
../Log/include,
|
||||
./include,
|
||||
);
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 4.0;
|
||||
PRODUCT_NAME = Base.UnitTest.iOS;
|
||||
SDKROOT = iphoneos;
|
||||
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos";
|
||||
VALID_ARCHS = "armv6 armv7";
|
||||
};
|
||||
name = NoOpt;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
1DEB91EB08733DB70010E9CD /* Build configuration list for PBXNativeTarget "Base.UnitTest.Lib" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1DEB91EC08733DB70010E9CD /* Debug */,
|
||||
1DEB91ED08733DB70010E9CD /* Release */,
|
||||
D0D04FCA1C75F2A900CDE19D /* NoOpt */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
1DEB91EF08733DB70010E9CD /* Build configuration list for PBXProject "Base.UnitTest.Lib" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1DEB91F008733DB70010E9CD /* Debug */,
|
||||
1DEB91F108733DB70010E9CD /* Release */,
|
||||
D0D04FC91C75F2A900CDE19D /* NoOpt */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
1F28448115E6F96400120D64 /* Build configuration list for PBXNativeTarget "Base.UnitTest.iOS" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1F28448215E6F96400120D64 /* Debug */,
|
||||
1F28448315E6F96400120D64 /* Release */,
|
||||
D0D04FCB1C75F2A900CDE19D /* NoOpt */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
/* Copyright 2009 JetBrains
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
* $Revision: 50800 $
|
||||
*/
|
||||
|
||||
#ifndef H_TEAMCITY_MESSAGES
|
||||
#define H_TEAMCITY_MESSAGES
|
||||
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
||||
namespace JetBrains {
|
||||
|
||||
bool underTeamcity();
|
||||
|
||||
struct TeamcityFormatterRegistrar {
|
||||
TeamcityFormatterRegistrar();
|
||||
};
|
||||
class TeamcityMessages {
|
||||
std::ostream *m_out;
|
||||
|
||||
protected:
|
||||
std::string escape(std::string s);
|
||||
|
||||
void openMsg(const std::string &name);
|
||||
void writeProperty(std::string name, std::string value);
|
||||
void closeMsg();
|
||||
|
||||
public:
|
||||
TeamcityMessages();
|
||||
|
||||
void setOutput(std::ostream &);
|
||||
|
||||
void suiteStarted(std::string name);
|
||||
void suiteFinished(std::string name);
|
||||
|
||||
void testStarted(std::string name);
|
||||
void testFailed(std::string name, std::string message, std::string details = "");
|
||||
void testIgnored(std::string name, std::string message = "");
|
||||
void testFinished(std::string name, unsigned long elapsed);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif /* H_TEAMCITY_MESSAGES */
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "rbx/test/test_tools.h"
|
||||
#include "boost/test/test_observer.hpp"
|
||||
#include "boost/test/framework.hpp"
|
||||
|
||||
namespace RBX { namespace Test {
|
||||
|
||||
class BaseGlobalFixture : public boost::unit_test::test_observer
|
||||
{
|
||||
static rbx::atomic<int> assertCount;
|
||||
|
||||
virtual void test_unit_finish( boost::unit_test::test_unit const&, unsigned long /* elapsed */ )
|
||||
{
|
||||
assertCount = 0;
|
||||
}
|
||||
|
||||
static bool tooManyAssertionsCheck();
|
||||
static bool handleDebugAssert(const char* expression, const char* filename, int lineNumber);
|
||||
static bool handleFailure(const char* expression, const char* filename, int lineNumber);
|
||||
public:
|
||||
|
||||
static bool fflagsAllOn;
|
||||
static bool fflagsAllOff;
|
||||
|
||||
static void setAreAssertsTested(bool value)
|
||||
{
|
||||
FLog::Asserts = value ? 1 : 0;
|
||||
}
|
||||
|
||||
BaseGlobalFixture();
|
||||
|
||||
~BaseGlobalFixture()
|
||||
{
|
||||
boost::unit_test::framework::deregister_observer(*this);
|
||||
}
|
||||
|
||||
// returns true if the arg is processed
|
||||
static bool processArg(const std::string arg);
|
||||
};
|
||||
|
||||
|
||||
class PerformanceTestFixture
|
||||
{
|
||||
const FLog::Channel oldValue;
|
||||
public:
|
||||
PerformanceTestFixture()
|
||||
:oldValue(FLog::Asserts)
|
||||
{
|
||||
BOOST_MESSAGE("Running performance test");
|
||||
BOOST_CHECK(true); // to prevent "Test case doesn't include any assertions"
|
||||
|
||||
FLog::Asserts = 0;
|
||||
}
|
||||
~PerformanceTestFixture()
|
||||
{
|
||||
FLog::Asserts = oldValue;
|
||||
}
|
||||
};
|
||||
|
||||
}}
|
||||
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include "util/standardout.h"
|
||||
|
||||
namespace RBX { namespace Test {
|
||||
|
||||
class CaptureErrorLogs
|
||||
{
|
||||
rbx::signals::scoped_connection connection;
|
||||
static void onMessage(const RBX::StandardOutMessage& message)
|
||||
{
|
||||
BOOST_CHECK_MESSAGE(message.type != RBX::MESSAGE_ERROR, message.message);
|
||||
// ??? BOOST_WARN_MESSAGE(message.type != RBX::MESSAGE_WARNING, message.message);
|
||||
}
|
||||
public:
|
||||
CaptureErrorLogs()
|
||||
{
|
||||
connection = RBX::StandardOut::singleton()->messageOut.connect(&CaptureErrorLogs::onMessage);
|
||||
}
|
||||
};
|
||||
|
||||
}}
|
||||
@@ -0,0 +1,68 @@
|
||||
#pragma once
|
||||
|
||||
// FOR TESTS ONLY.
|
||||
// DO NOT USE THIS IN ANY NON-TEST CODE
|
||||
// THIS HAS NO THREADING GUARANTEES, AND IS UNSUITABLE FOR PRODUCTION
|
||||
|
||||
// Most tests will not need this. Instead, the command line option
|
||||
// --fflags can be used to run tests with different flags enabled / disabled.
|
||||
|
||||
// Because FastFlags are static (process scoped), it can be difficult to
|
||||
// know exactly when in the execution a FastFlag is read. For this reason,
|
||||
// be extra careful to examine the uses of a FastFlag before setting it
|
||||
// in a unit test. Beware, some flags are only read at startup time, and
|
||||
// the effects of the flag are not changed if the flag value is subsequently
|
||||
// changed.
|
||||
|
||||
#include "FastLog.h"
|
||||
#include "rbx/Debug.h"
|
||||
|
||||
struct ScopedFastFlagSetting {
|
||||
private:
|
||||
bool success;
|
||||
std::string oldValue;
|
||||
const char* flagName;
|
||||
public:
|
||||
ScopedFastFlagSetting(const char* flagName, bool value) : flagName(flagName) {
|
||||
success = false;
|
||||
success = FLog::GetValue(flagName, oldValue)
|
||||
&& FLog::SetValue(flagName, value ? "True" : "False", FASTVARTYPE_ANY, false);
|
||||
RBXASSERT(success);
|
||||
}
|
||||
~ScopedFastFlagSetting() {
|
||||
if (success) {
|
||||
FLog::SetValue(flagName, oldValue, FASTVARTYPE_ANY, false);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
struct ScopedFastIntSetting {
|
||||
private:
|
||||
bool success;
|
||||
std::string oldValue;
|
||||
const char* flagName;
|
||||
public:
|
||||
ScopedFastIntSetting(const char* flagName, int value) : flagName(flagName) {
|
||||
success = false;
|
||||
std::string newValueString = convertToString(value);
|
||||
success = FLog::GetValue(flagName, oldValue)
|
||||
&& FLog::SetValue(flagName, newValueString, FASTVARTYPE_ANY, false);
|
||||
RBXASSERT(success);
|
||||
}
|
||||
~ScopedFastIntSetting() {
|
||||
if (success) {
|
||||
FLog::SetValue(flagName, oldValue, FASTVARTYPE_ANY, false);
|
||||
}
|
||||
}
|
||||
|
||||
std::string convertToString(int a)
|
||||
{
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable: 4996)
|
||||
char temp[200];
|
||||
snprintf(temp, 200-1, "%d", a);
|
||||
return temp;
|
||||
#pragma warning(pop)
|
||||
}
|
||||
};
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
#pragma once
|
||||
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/thread.hpp>
|
||||
|
||||
namespace RBX { namespace Test {
|
||||
|
||||
template<int timeout>
|
||||
class TimeoutFixture
|
||||
{
|
||||
boost::thread thread;
|
||||
volatile bool done;
|
||||
boost::condition_variable cond;
|
||||
boost::mutex mut;
|
||||
|
||||
void monitor()
|
||||
{
|
||||
boost::system_time const time = boost::get_system_time() + boost::posix_time::seconds(timeout);
|
||||
{
|
||||
boost::unique_lock<boost::mutex> lock(mut);
|
||||
if (!done)
|
||||
BOOST_REQUIRE_MESSAGE(cond.timed_wait(lock, time), "Timeout reached!");
|
||||
}
|
||||
}
|
||||
public:
|
||||
TimeoutFixture()
|
||||
:done(false)
|
||||
{
|
||||
boost::unique_lock<boost::mutex> lock(mut);
|
||||
thread = boost::thread(boost::bind(&TimeoutFixture::monitor, this));
|
||||
}
|
||||
|
||||
~TimeoutFixture()
|
||||
{
|
||||
{
|
||||
boost::unique_lock<boost::mutex> lock(mut);
|
||||
done = true;
|
||||
cond.notify_one();
|
||||
}
|
||||
thread.join();
|
||||
}
|
||||
};
|
||||
|
||||
}}
|
||||
@@ -0,0 +1,72 @@
|
||||
#pragma once
|
||||
|
||||
#include "boost/test/test_tools.hpp"
|
||||
#include "rbx/Debug.h"
|
||||
#include "rbx/atomic.h"
|
||||
#include "rbx/rbxTime.h"
|
||||
#include "boost/thread.hpp"
|
||||
#include "boost/date_time/posix_time/posix_time.hpp"
|
||||
|
||||
#define RBX_TEST_WITH_TIMEOUT(F, T) testWithTimeout(F, T, BOOST_STRINGIZE(F))
|
||||
|
||||
static void checkNoThrow(boost::function<void()> f, std::string stringized)
|
||||
{
|
||||
try
|
||||
{
|
||||
f();
|
||||
}
|
||||
catch(RBX::base_exception& ex)
|
||||
{
|
||||
BOOST_CHECK_IMPL( false, RBX::format("exception '%s' thrown by %s", ex.what(), stringized.c_str() ), CHECK, CHECK_MSG );
|
||||
}
|
||||
catch( ... )
|
||||
{
|
||||
BOOST_CHECK_IMPL( false, RBX::format("exception thrown by %s", stringized.c_str() ), CHECK, CHECK_MSG );
|
||||
}
|
||||
}
|
||||
|
||||
static void testWithTimeout(boost::function<void()> f, RBX::Time::Interval timeout, std::string stringized)
|
||||
{
|
||||
boost::thread t(boost::bind(&checkNoThrow, f, stringized));
|
||||
|
||||
BOOST_CHECK_MESSAGE(
|
||||
t.timed_join(boost::posix_time::milliseconds((int)(timeout.seconds()*1000.0))),
|
||||
RBX::format("Timeout of '%s' after %g seconds", stringized.c_str(), timeout.seconds())
|
||||
);
|
||||
}
|
||||
|
||||
#define RBX_CHECK_NO_EXECEPTION_IMPL( S, TL ) \
|
||||
try { \
|
||||
S; \
|
||||
BOOST_CHECK_IMPL( true, "no exceptions thrown by " BOOST_STRINGIZE( S ), TL, CHECK_MSG ); } \
|
||||
catch(RBX::base_exception& ex) { \
|
||||
std::string message = ex.what(); \
|
||||
message += " thrown by " BOOST_STRINGIZE( S ); \
|
||||
BOOST_CHECK_IMPL( false, ex.what(), TL, CHECK_MSG ); \
|
||||
} \
|
||||
/**/
|
||||
|
||||
#define RBX_WARN_NO_EXECEPTION( S ) RBX_CHECK_NO_EXECEPTION_IMPL( S, WARN )
|
||||
#define RBX_CHECK_NO_EXECEPTION( S ) RBX_CHECK_NO_EXECEPTION_IMPL( S, CHECK )
|
||||
#define RBX_REQUIRE_NO_EXECEPTION( S ) RBX_CHECK_NO_EXECEPTION_IMPL( S, REQUIRE )
|
||||
|
||||
#define BOOST_TEST_TOOL_IMPL2( func, P, check_descr, TL, CT, F, L ) \
|
||||
::boost::test_tools::tt_detail::func( \
|
||||
P, \
|
||||
::boost::unit_test::lazy_ostream::instance() << check_descr, \
|
||||
F, \
|
||||
(std::size_t)L, \
|
||||
::boost::test_tools::tt_detail::TL, \
|
||||
::boost::test_tools::tt_detail::CT \
|
||||
/**/
|
||||
|
||||
#define BOOST_CHECK_IMPL2( P, check_descr, TL, CT, F, L ) \
|
||||
do { \
|
||||
BOOST_TEST_PASSPOINT(); \
|
||||
BOOST_TEST_TOOL_IMPL2( check_impl, P, check_descr, TL, CT, F, L ), 0 );\
|
||||
} while( ::boost::test_tools::dummy_cond ) \
|
||||
/**/
|
||||
|
||||
#define BOOST_CHECK_MESSAGE_SOURCE( P, M, F, L ) BOOST_CHECK_IMPL2( (P), M, CHECK, CHECK_MSG, F, L )
|
||||
#define BOOST_REQUIRE_MESSAGE_SOURCE( P, M, F, L ) BOOST_CHECK_IMPL2( (P), M, REQUIRE, CHECK_MSG, F, L )
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
Boost listener for TeamCity
|
||||
---------------------------
|
||||
|
||||
To report your tests result to TeamCity server
|
||||
just include teamcity_messages.* teamcity_boost.cpp
|
||||
to your project.
|
||||
|
||||
That code will register global fixture
|
||||
( http://www.boost.org/doc/libs/1_38_0/libs/test/doc/html/utf/user-guide/fixture/global.html )
|
||||
to replace output formatter if run under TeamCity.
|
||||
|
||||
If you have tests with test parameters,
|
||||
look at http://jetbrains.net/tracker/issue/TW-7043 for quick solution.
|
||||
|
||||
Technical details
|
||||
-----------------
|
||||
|
||||
Reporting implemented as writing TeamCity service messages to stdout.
|
||||
|
||||
See
|
||||
http://www.jetbrains.net/confluence/display/TCD3/Build+Script+Interaction+with+TeamCity
|
||||
for more details.
|
||||
|
||||
Contact information
|
||||
-------------------
|
||||
|
||||
See http://www.jetbrains.com/support/teamcity
|
||||
|
||||
License
|
||||
-------
|
||||
|
||||
Apache, version 2.0
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
@@ -0,0 +1,147 @@
|
||||
/* Copyright 2009 JetBrains
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
* $Revision: 51262 $
|
||||
*/
|
||||
|
||||
#include "teamcity_messages.h"
|
||||
|
||||
#include <sstream>
|
||||
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/test/unit_test_log_formatter.hpp>
|
||||
#include <boost/test/results_collector.hpp>
|
||||
|
||||
using namespace boost::unit_test;
|
||||
using namespace std;
|
||||
|
||||
namespace JetBrains {
|
||||
|
||||
// Custom formatter for TeamCity messages
|
||||
class TeamcityBoostLogFormatter: public boost::unit_test::unit_test_log_formatter {
|
||||
TeamcityMessages messages;
|
||||
std::string currentDetails;
|
||||
|
||||
public:
|
||||
TeamcityBoostLogFormatter();
|
||||
|
||||
void log_start(std::ostream&, boost::unit_test::counter_t test_cases_amount);
|
||||
void log_finish(std::ostream&);
|
||||
void log_build_info(std::ostream&);
|
||||
|
||||
void test_unit_start(std::ostream&, boost::unit_test::test_unit const& tu);
|
||||
void test_unit_finish(std::ostream&,
|
||||
boost::unit_test::test_unit const& tu,
|
||||
unsigned long elapsed);
|
||||
void test_unit_skipped(std::ostream&, boost::unit_test::test_unit const& tu);
|
||||
|
||||
void log_exception(std::ostream&,
|
||||
boost::unit_test::log_checkpoint_data const&,
|
||||
boost::unit_test::const_string explanation);
|
||||
|
||||
void log_entry_start(std::ostream&,
|
||||
boost::unit_test::log_entry_data const&,
|
||||
log_entry_types let);
|
||||
void log_entry_value(std::ostream&, boost::unit_test::const_string value);
|
||||
void log_entry_finish(std::ostream&);
|
||||
};
|
||||
|
||||
// Fake fixture to register formatter
|
||||
TeamcityFormatterRegistrar::TeamcityFormatterRegistrar() {
|
||||
if (JetBrains::underTeamcity()) {
|
||||
boost::unit_test::unit_test_log.set_formatter(new JetBrains::TeamcityBoostLogFormatter());
|
||||
}
|
||||
}
|
||||
|
||||
BOOST_GLOBAL_FIXTURE(TeamcityFormatterRegistrar);
|
||||
|
||||
// Formatter implementation
|
||||
string toString(const_string bstr) {
|
||||
stringstream ss;
|
||||
|
||||
ss << bstr;
|
||||
|
||||
return ss.str();
|
||||
}
|
||||
|
||||
TeamcityBoostLogFormatter::TeamcityBoostLogFormatter() {
|
||||
}
|
||||
|
||||
void TeamcityBoostLogFormatter::log_start(ostream &out, counter_t test_cases_amount)
|
||||
{}
|
||||
|
||||
void TeamcityBoostLogFormatter::log_finish(ostream &out)
|
||||
{}
|
||||
|
||||
void TeamcityBoostLogFormatter::log_build_info(ostream &out)
|
||||
{}
|
||||
|
||||
void TeamcityBoostLogFormatter::test_unit_start(ostream &out, test_unit const& tu) {
|
||||
messages.setOutput(out);
|
||||
|
||||
if (tu.p_type == tut_case) {
|
||||
messages.testStarted(tu.p_name);
|
||||
} else {
|
||||
messages.suiteStarted(tu.p_name);
|
||||
}
|
||||
|
||||
currentDetails.clear();
|
||||
}
|
||||
|
||||
void TeamcityBoostLogFormatter::test_unit_finish(ostream &out, test_unit const& tu, unsigned long elapsed) {
|
||||
messages.setOutput(out);
|
||||
|
||||
test_results const& tr = results_collector.results( tu.p_id );
|
||||
if (tu.p_type == tut_case) {
|
||||
if(!tr.passed()) {
|
||||
if(tr.p_skipped) {
|
||||
messages.testIgnored(tu.p_name);
|
||||
} else if (tr.p_aborted) {
|
||||
messages.testFailed(tu.p_name, "aborted", currentDetails);
|
||||
} else {
|
||||
messages.testFailed(tu.p_name, "failed", currentDetails);
|
||||
}
|
||||
}
|
||||
|
||||
messages.testFinished(tu.p_name, elapsed);
|
||||
} else {
|
||||
messages.suiteFinished(tu.p_name);
|
||||
}
|
||||
}
|
||||
|
||||
void TeamcityBoostLogFormatter::test_unit_skipped(ostream &out, test_unit const& tu)
|
||||
{}
|
||||
|
||||
void TeamcityBoostLogFormatter::log_exception(ostream &out, log_checkpoint_data const&, const_string explanation) {
|
||||
string what = toString(explanation);
|
||||
|
||||
out << what << endl;
|
||||
currentDetails += what + "\n";
|
||||
}
|
||||
|
||||
|
||||
void TeamcityBoostLogFormatter::log_entry_start(ostream&, log_entry_data const&, log_entry_types let)
|
||||
{}
|
||||
|
||||
void TeamcityBoostLogFormatter::log_entry_value(ostream &out, const_string value) {
|
||||
out << value;
|
||||
currentDetails += toString(value);
|
||||
}
|
||||
|
||||
void TeamcityBoostLogFormatter::log_entry_finish(ostream &out) {
|
||||
out << endl;
|
||||
currentDetails += "\n";
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,115 @@
|
||||
/* Copyright 2009 JetBrains
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
* $Revision: 51263 $
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "teamcity_messages.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace JetBrains {
|
||||
|
||||
bool underTeamcity() {
|
||||
return getenv("TEAMCITY_PROJECT_NAME") != NULL;
|
||||
}
|
||||
|
||||
TeamcityMessages::TeamcityMessages()
|
||||
: m_out(&cout)
|
||||
{}
|
||||
|
||||
void TeamcityMessages::setOutput(ostream &out) {
|
||||
m_out = &out;
|
||||
}
|
||||
|
||||
string TeamcityMessages::escape(string s) {
|
||||
string result;
|
||||
|
||||
for (size_t i = 0; i < s.length(); i++) {
|
||||
char c = s[i];
|
||||
|
||||
switch (c) {
|
||||
case '\n': result.append("|n"); break;
|
||||
case '\r': result.append("|r"); break;
|
||||
case '\'': result.append("|'"); break;
|
||||
case '|': result.append("||"); break;
|
||||
case ']': result.append("|]"); break;
|
||||
default: result.append(&c, 1);
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
void TeamcityMessages::openMsg(const string &name) {
|
||||
// endl for http://jetbrains.net/tracker/issue/TW-4412
|
||||
*m_out << endl << "##teamcity[" << name;
|
||||
}
|
||||
|
||||
void TeamcityMessages::closeMsg() {
|
||||
*m_out << "]";
|
||||
// endl for http://jetbrains.net/tracker/issue/TW-4412
|
||||
*m_out << endl;
|
||||
m_out->flush();
|
||||
}
|
||||
|
||||
void TeamcityMessages::writeProperty(string name, string value) {
|
||||
*m_out << " " << name << "='" << escape(value) << "'";
|
||||
}
|
||||
|
||||
void TeamcityMessages::suiteStarted(string name) {
|
||||
openMsg("testSuiteStarted");
|
||||
writeProperty("name", name);
|
||||
closeMsg();
|
||||
}
|
||||
|
||||
void TeamcityMessages::suiteFinished(string name) {
|
||||
openMsg("testSuiteFinished");
|
||||
writeProperty("name", name);
|
||||
closeMsg();
|
||||
}
|
||||
|
||||
void TeamcityMessages::testStarted(string name) {
|
||||
openMsg("testStarted");
|
||||
writeProperty("name", name);
|
||||
closeMsg();
|
||||
}
|
||||
|
||||
void TeamcityMessages::testFinished(string name, unsigned long elapsed) {
|
||||
openMsg("testFinished");
|
||||
writeProperty("name", name);
|
||||
char buffer[32];
|
||||
sprintf(buffer, "%lu", elapsed/1000);
|
||||
writeProperty("duration", buffer);
|
||||
closeMsg();
|
||||
}
|
||||
|
||||
void TeamcityMessages::testFailed(string name, string message, string details) {
|
||||
openMsg("testFailed");
|
||||
writeProperty("name", name);
|
||||
writeProperty("message", message);
|
||||
writeProperty("details", details);
|
||||
closeMsg();
|
||||
}
|
||||
|
||||
void TeamcityMessages::testIgnored(std::string name, std::string message) {
|
||||
openMsg("testIgnored");
|
||||
writeProperty("name", name);
|
||||
writeProperty("message", message);
|
||||
closeMsg();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
include(Boost)
|
||||
|
||||
message(STATUS "boost_ROOT=${boost_ROOT}")
|
||||
|
||||
file(GLOB_RECURSE HEADERS "${boost_ROOT}/include/*.h")
|
||||
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/chrono/src/chrono.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/chrono/src/process_cpu_clocks.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/chrono/src/thread_clock.cpp")
|
||||
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/iostreams/src/file_descriptor.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/iostreams/src/gzip.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/iostreams/src/mapped_file.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/iostreams/src/zlib.cpp")
|
||||
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/filesystem/src/codecvt_error_category.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/filesystem/src/operations.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/filesystem/src/path.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/filesystem/src/path_traits.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/filesystem/src/portability.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/filesystem/src/unique_path.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/filesystem/src/utf8_codecvt_facet.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/filesystem/src/windows_file_codecvt.cpp")
|
||||
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/thread/src/future.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/thread/src/pthread/once.cpp")
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/thread/src/pthread/thread.cpp")
|
||||
|
||||
list(APPEND SOURCES "${boost_ROOT}/libs/system/src/error_code.cpp")
|
||||
|
||||
add_library(boost OBJECT ${SOURCES} ${HEADERS})
|
||||
@@ -0,0 +1,253 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|ARM">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|Durango">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Durango</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Durango">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Durango</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{5423BFB6-D3EB-4B00-A82B-38001EB8745F}</ProjectGuid>
|
||||
<RootNamespace>boostfile_system</RootNamespace>
|
||||
<SccProjectName>Perforce Project</SccProjectName>
|
||||
<SccLocalPath>..</SccLocalPath>
|
||||
<SccProvider>MSSCCI:Perforce SCM</SccProvider>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<ApplicationEnvironment>title</ApplicationEnvironment>
|
||||
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v110</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v110_xp</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Durango'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v110</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v110</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v110_xp</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Durango'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v110</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Durango'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Durango'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>11.0.50727.1</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>bin\$(Configuration)\$(ProjectName)\</OutDir>
|
||||
<IntDir>obj\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Durango'">
|
||||
<ExecutablePath>$(Console_SdkRoot)bin;$(Console_SdkRoot)xdk\fxc\amd64;$(VCInstallDir)bin\x86_amd64;$(VCInstallDir)bin;$(WindowsSDK_ExecutablePath_x86);$(VSInstallDir)Common7\Tools\bin;$(VSInstallDir)Common7\tools;$(VSInstallDir)Common7\ide;$(ProgramFiles)\HTML Help Workshop;$(MSBuildToolsPath32);$(FxCopDir);$(PATH);</ExecutablePath>
|
||||
<IncludePath>$(Console_SdkIncludeRoot)\um;$(Console_SdkIncludeRoot)\shared;$(Console_SdkIncludeRoot)\winrt</IncludePath>
|
||||
<ReferencePath>$(Console_SdkLibPath);$(Console_SdkWindowsMetadataPath)</ReferencePath>
|
||||
<LibraryPath>$(Console_SdkLibPath)</LibraryPath>
|
||||
<LibraryWPath>$(Console_SdkLibPath);$(Console_SdkWindowsMetadataPath)</LibraryWPath>
|
||||
<OutDir>bin\$(Configuration)$(Platform)\</OutDir>
|
||||
<IntDir>obj\$(Configuration)$(Platform)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>bin\$(Configuration)\$(ProjectName)\</OutDir>
|
||||
<IntDir>obj\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Durango'">
|
||||
<ExecutablePath>$(Console_SdkRoot)bin;$(Console_SdkRoot)xdk\fxc\amd64;$(VCInstallDir)bin\x86_amd64;$(VCInstallDir)bin;$(WindowsSDK_ExecutablePath_x86);$(VSInstallDir)Common7\Tools\bin;$(VSInstallDir)Common7\tools;$(VSInstallDir)Common7\ide;$(ProgramFiles)\HTML Help Workshop;$(MSBuildToolsPath32);$(FxCopDir);$(PATH);</ExecutablePath>
|
||||
<IncludePath>$(Console_SdkIncludeRoot)\um;$(Console_SdkIncludeRoot)\shared;$(Console_SdkIncludeRoot)\winrt</IncludePath>
|
||||
<ReferencePath>$(Console_SdkLibPath);$(Console_SdkWindowsMetadataPath)</ReferencePath>
|
||||
<LibraryPath>$(Console_SdkLibPath)</LibraryPath>
|
||||
<LibraryWPath>$(Console_SdkLibPath);$(Console_SdkWindowsMetadataPath)</LibraryWPath>
|
||||
<OutDir>bin\$(Configuration)$(Platform)\</OutDir>
|
||||
<IntDir>obj\$(Configuration)$(Platform)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;$(CONTRIB_PATH)\windows\x86\zlib\zlib-1.2.8\include\zlib;$(CONTRIB_PATH)\cpp-netlib-0.11.0-final;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;ZLIB_WINAPI;_DEBUG;_LIB;_WIN32_WINNT=0x0501;NTDDI_VERSION=0x05010100;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;$(CONTRIB_PATH)\windows\x86\zlib\zlib-1.2.8\include\zlib;$(CONTRIB_PATH)\cpp-netlib-0.11.0-final;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;ZLIB_WINAPI;_DEBUG;_LIB;_WIN32_WINNT=0x0501;NTDDI_VERSION=0x05010100;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Durango'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;$(CONTRIB_PATH)\windows\x86\zlib\zlib-1.2.8\include\zlib;$(CONTRIB_PATH)\cpp-netlib-0.11.0-final;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>BOOST_CXX11_NO_DELETED_FUNCTIONS;WIN32;ZLIB_WINAPI;RBX_PLATFORM_WIN_DURANGO;_DEBUG;_LIB;_WIN32_WINNT=0x0501;NTDDI_VERSION=0x05010100;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<EnableEnhancedInstructionSet>AdvancedVectorExtensions</EnableEnhancedInstructionSet>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<AdditionalOptions>/D "_SECURE_SCL=0" %(AdditionalOptions)</AdditionalOptions>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;$(CONTRIB_PATH)\windows\x86\zlib\zlib-1.2.8\include\zlib;$(CONTRIB_PATH)\cpp-netlib-0.11.0-final;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;ZLIB_WINAPI;NDEBUG;_LIB;_WIN32_WINNT=0x0501;NTDDI_VERSION=0x05010100;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
<ClCompile>
|
||||
<AdditionalOptions>/D "_SECURE_SCL=0" %(AdditionalOptions)</AdditionalOptions>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;$(CONTRIB_PATH)\windows\x86\zlib\zlib-1.2.8\include\zlib;$(CONTRIB_PATH)\cpp-netlib-0.11.0-final;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;ZLIB_WINAPI;NDEBUG;_LIB;_WIN32_WINNT=0x0501;NTDDI_VERSION=0x05010100;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Durango'">
|
||||
<ClCompile>
|
||||
<AdditionalOptions>/D "_SECURE_SCL=0" %(AdditionalOptions)</AdditionalOptions>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;$(CONTRIB_PATH)\windows\x86\zlib\zlib-1.2.8\include\zlib;$(CONTRIB_PATH)\cpp-netlib-0.11.0-final;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;BOOST_CXX11_NO_DELETED_FUNCTIONS;WIN32;ZLIB_WINAPI;RBX_PLATFORM_WIN_DURANGO;NDEBUG;_LIB;_WIN32_WINNT=0x0501;NTDDI_VERSION=0x05010100;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
||||
<EnableEnhancedInstructionSet>AdvancedVectorExtensions</EnableEnhancedInstructionSet>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
<OmitFramePointers>false</OmitFramePointers>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\chrono\src\chrono.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\chrono\src\process_cpu_clocks.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\chrono\src\thread_clock.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\codecvt_error_category.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\operations.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\path.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\path_traits.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\portability.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\unique_path.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\utf8_codecvt_facet.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\windows_file_codecvt.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\iostreams\src\file_descriptor.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\iostreams\src\gzip.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\iostreams\src\mapped_file.cpp">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Durango'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Durango'">true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\iostreams\src\zlib.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\system\src\error_code.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\thread\src\future.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\thread\src\tss_null.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\thread\src\win32\thread.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\thread\src\win32\tss_dll.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\thread\src\win32\tss_pe.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\cpp-netlib-0.11.0-final\libs\network\src\uri\uri.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\windows_file_codecvt.hpp" />
|
||||
<ClInclude Include="..\..\..\..\Contrib2\boost_1_56_0\include\boost\thread\win32\thread_primitives.hpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,100 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\iostreams">
|
||||
<UniqueIdentifier>{6e894fe9-59ee-490c-b97c-eba1e0fa90d1}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\filesystem">
|
||||
<UniqueIdentifier>{be2597dc-17f6-4729-8c39-ffb15827f55e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\chrono">
|
||||
<UniqueIdentifier>{eebcfbc4-edb2-4fef-9640-c55225773d93}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\system">
|
||||
<UniqueIdentifier>{6b8c1048-e437-4d13-aaae-02894af77cb5}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\thread">
|
||||
<UniqueIdentifier>{d4134366-2a46-47e0-9f71-3fa933356451}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\chrono\src\process_cpu_clocks.cpp">
|
||||
<Filter>Source Files\chrono</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\chrono\src\thread_clock.cpp">
|
||||
<Filter>Source Files\chrono</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\chrono\src\chrono.cpp">
|
||||
<Filter>Source Files\chrono</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\portability.cpp">
|
||||
<Filter>Source Files\filesystem</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\unique_path.cpp">
|
||||
<Filter>Source Files\filesystem</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\utf8_codecvt_facet.cpp">
|
||||
<Filter>Source Files\filesystem</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\windows_file_codecvt.cpp">
|
||||
<Filter>Source Files\filesystem</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\codecvt_error_category.cpp">
|
||||
<Filter>Source Files\filesystem</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\operations.cpp">
|
||||
<Filter>Source Files\filesystem</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\path.cpp">
|
||||
<Filter>Source Files\filesystem</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\path_traits.cpp">
|
||||
<Filter>Source Files\filesystem</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\iostreams\src\gzip.cpp">
|
||||
<Filter>Source Files\iostreams</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\iostreams\src\mapped_file.cpp">
|
||||
<Filter>Source Files\iostreams</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\iostreams\src\zlib.cpp">
|
||||
<Filter>Source Files\iostreams</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\iostreams\src\file_descriptor.cpp">
|
||||
<Filter>Source Files\iostreams</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\system\src\error_code.cpp">
|
||||
<Filter>Source Files\system</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\thread\src\win32\tss_pe.cpp">
|
||||
<Filter>Source Files\thread</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\thread\src\win32\thread.cpp">
|
||||
<Filter>Source Files\thread</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\thread\src\win32\tss_dll.cpp">
|
||||
<Filter>Source Files\thread</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\thread\src\tss_null.cpp">
|
||||
<Filter>Source Files\thread</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\thread\src\future.cpp">
|
||||
<Filter>Source Files\thread</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\cpp-netlib-0.11.0-final\libs\network\src\uri\uri.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="$(CONTRIB_PATH)\boost_1_56_0\libs\filesystem\src\windows_file_codecvt.hpp">
|
||||
<Filter>Source Files\filesystem</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\Contrib2\boost_1_56_0\include\boost\thread\win32\thread_primitives.hpp">
|
||||
<Filter>Source Files\thread</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,365 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|ARM">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{55B54C4C-1951-4D6B-AF5A-794214553001}</ProjectGuid>
|
||||
<RootNamespace>boost</RootNamespace>
|
||||
<SccProjectName>Perforce Project</SccProjectName>
|
||||
<SccLocalPath>..</SccLocalPath>
|
||||
<SccProvider>MSSCCI:Perforce SCM</SccProvider>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v110</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v110_xp</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v140_xp</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v140_xp</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>11.0.50727.1</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>bin\$(Configuration)\$(ProjectName)\</OutDir>
|
||||
<IntDir>obj\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>bin\$(Configuration)\$(ProjectName)\</OutDir>
|
||||
<IntDir>obj\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>BOOST_THREAD_BUILD_LIB;WIN32;_DEBUG;_LIB;BOOST_TEST_NO_MAIN;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Async</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>BOOST_THREAD_BUILD_LIB;WIN32;_DEBUG;_LIB;BOOST_TEST_NO_MAIN;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Async</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<AdditionalOptions>/D "_SECURE_SCL=0" %(AdditionalOptions)</AdditionalOptions>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>BOOST_THREAD_BUILD_LIB;WIN32;NDEBUG;_LIB;BOOST_TEST_NO_MAIN;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
<ClCompile>
|
||||
<AdditionalOptions>/D "_SECURE_SCL=0" %(AdditionalOptions)</AdditionalOptions>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(CONTRIB_PATH)\boost_1_56_0\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>BOOST_THREAD_BUILD_LIB;WIN32;NDEBUG;_LIB;BOOST_TEST_NO_MAIN;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
||||
<FloatingPointModel>Fast</FloatingPointModel>
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\compiler_log_formatter.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\cpp_main.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\debug.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\exception_safety.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\execution_monitor.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\framework.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\interaction_based.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\logged_expectations.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\plain_report_formatter.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\progress_monitor.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\results_collector.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\results_reporter.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\test_main.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\test_tools.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\unit_test_log.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\unit_test_main.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\unit_test_monitor.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\unit_test_parameters.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\unit_test_suite.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\xml_log_formatter.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\xml_report_formatter.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Resource Files">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Source Files.old">
|
||||
<UniqueIdentifier>{62ac6334-34ba-4897-86ce-313e3898167e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{5656dcfa-8e9b-4435-90b8-79472e40f9a1}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\compiler_log_formatter.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\cpp_main.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\debug.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\exception_safety.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\execution_monitor.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\framework.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\interaction_based.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\logged_expectations.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\plain_report_formatter.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\progress_monitor.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\results_collector.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\results_reporter.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\test_main.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\test_tools.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\unit_test_log.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\unit_test_main.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\unit_test_monitor.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\unit_test_parameters.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\unit_test_suite.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\xml_log_formatter.cpp" />
|
||||
<ClCompile Include="$(CONTRIB_PATH)\boost_1_56_0\libs\test\src\xml_report_formatter.cpp" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,805 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
106B8D8015E7217400C1FF6B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 106B8D7F15E7217400C1FF6B /* Foundation.framework */; };
|
||||
1FE9211F18D22C2B00AEEFF6 /* file_descriptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211B18D22C2B00AEEFF6 /* file_descriptor.cpp */; };
|
||||
1FE9212018D22C2B00AEEFF6 /* file_descriptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211B18D22C2B00AEEFF6 /* file_descriptor.cpp */; };
|
||||
1FE9212118D22C2B00AEEFF6 /* file_descriptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211B18D22C2B00AEEFF6 /* file_descriptor.cpp */; };
|
||||
1FE9212218D22C2B00AEEFF6 /* gzip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211C18D22C2B00AEEFF6 /* gzip.cpp */; };
|
||||
1FE9212318D22C2B00AEEFF6 /* gzip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211C18D22C2B00AEEFF6 /* gzip.cpp */; };
|
||||
1FE9212418D22C2B00AEEFF6 /* gzip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211C18D22C2B00AEEFF6 /* gzip.cpp */; };
|
||||
1FE9212518D22C2B00AEEFF6 /* mapped_file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211D18D22C2B00AEEFF6 /* mapped_file.cpp */; };
|
||||
1FE9212618D22C2B00AEEFF6 /* mapped_file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211D18D22C2B00AEEFF6 /* mapped_file.cpp */; };
|
||||
1FE9212718D22C2B00AEEFF6 /* mapped_file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211D18D22C2B00AEEFF6 /* mapped_file.cpp */; };
|
||||
1FE9212818D22C2B00AEEFF6 /* zlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211E18D22C2B00AEEFF6 /* zlib.cpp */; };
|
||||
1FE9212918D22C2B00AEEFF6 /* zlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211E18D22C2B00AEEFF6 /* zlib.cpp */; };
|
||||
1FE9212A18D22C2B00AEEFF6 /* zlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9211E18D22C2B00AEEFF6 /* zlib.cpp */; };
|
||||
1FE9213218D22CB100AEEFF6 /* codecvt_error_category.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212B18D22CB100AEEFF6 /* codecvt_error_category.cpp */; };
|
||||
1FE9213318D22CB100AEEFF6 /* codecvt_error_category.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212B18D22CB100AEEFF6 /* codecvt_error_category.cpp */; };
|
||||
1FE9213418D22CB100AEEFF6 /* codecvt_error_category.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212B18D22CB100AEEFF6 /* codecvt_error_category.cpp */; };
|
||||
1FE9213518D22CB100AEEFF6 /* operations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212C18D22CB100AEEFF6 /* operations.cpp */; };
|
||||
1FE9213618D22CB100AEEFF6 /* operations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212C18D22CB100AEEFF6 /* operations.cpp */; };
|
||||
1FE9213718D22CB100AEEFF6 /* operations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212C18D22CB100AEEFF6 /* operations.cpp */; };
|
||||
1FE9213818D22CB100AEEFF6 /* path_traits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212D18D22CB100AEEFF6 /* path_traits.cpp */; };
|
||||
1FE9213918D22CB100AEEFF6 /* path_traits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212D18D22CB100AEEFF6 /* path_traits.cpp */; };
|
||||
1FE9213A18D22CB100AEEFF6 /* path_traits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212D18D22CB100AEEFF6 /* path_traits.cpp */; };
|
||||
1FE9213B18D22CB100AEEFF6 /* path.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212E18D22CB100AEEFF6 /* path.cpp */; };
|
||||
1FE9213C18D22CB100AEEFF6 /* path.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212E18D22CB100AEEFF6 /* path.cpp */; };
|
||||
1FE9213D18D22CB100AEEFF6 /* path.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212E18D22CB100AEEFF6 /* path.cpp */; };
|
||||
1FE9213E18D22CB100AEEFF6 /* portability.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212F18D22CB100AEEFF6 /* portability.cpp */; };
|
||||
1FE9213F18D22CB100AEEFF6 /* portability.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212F18D22CB100AEEFF6 /* portability.cpp */; };
|
||||
1FE9214018D22CB100AEEFF6 /* portability.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9212F18D22CB100AEEFF6 /* portability.cpp */; };
|
||||
1FE9214118D22CB100AEEFF6 /* unique_path.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9213018D22CB100AEEFF6 /* unique_path.cpp */; };
|
||||
1FE9214218D22CB100AEEFF6 /* unique_path.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9213018D22CB100AEEFF6 /* unique_path.cpp */; };
|
||||
1FE9214318D22CB100AEEFF6 /* unique_path.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9213018D22CB100AEEFF6 /* unique_path.cpp */; };
|
||||
1FE9214418D22CB100AEEFF6 /* utf8_codecvt_facet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9213118D22CB100AEEFF6 /* utf8_codecvt_facet.cpp */; };
|
||||
1FE9214518D22CB100AEEFF6 /* utf8_codecvt_facet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9213118D22CB100AEEFF6 /* utf8_codecvt_facet.cpp */; };
|
||||
1FE9214618D22CB100AEEFF6 /* utf8_codecvt_facet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9213118D22CB100AEEFF6 /* utf8_codecvt_facet.cpp */; };
|
||||
1FE9214A18D22D1900AEEFF6 /* once.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9214718D22D1900AEEFF6 /* once.cpp */; };
|
||||
1FE9214B18D22D1900AEEFF6 /* once.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9214718D22D1900AEEFF6 /* once.cpp */; };
|
||||
1FE9214C18D22D1900AEEFF6 /* once.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9214718D22D1900AEEFF6 /* once.cpp */; };
|
||||
1FE9214D18D22D1900AEEFF6 /* thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9214818D22D1900AEEFF6 /* thread.cpp */; };
|
||||
1FE9214E18D22D1900AEEFF6 /* thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9214818D22D1900AEEFF6 /* thread.cpp */; };
|
||||
1FE9214F18D22D1900AEEFF6 /* thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9214818D22D1900AEEFF6 /* thread.cpp */; };
|
||||
1FE9215018D22D1900AEEFF6 /* tss_null.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9214918D22D1900AEEFF6 /* tss_null.cpp */; };
|
||||
1FE9215118D22D1900AEEFF6 /* tss_null.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9214918D22D1900AEEFF6 /* tss_null.cpp */; };
|
||||
1FE9215218D22D1900AEEFF6 /* tss_null.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9214918D22D1900AEEFF6 /* tss_null.cpp */; };
|
||||
1FE9215818D22D4E00AEEFF6 /* connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215318D22D4E00AEEFF6 /* connection.cpp */; };
|
||||
1FE9215918D22D4E00AEEFF6 /* connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215318D22D4E00AEEFF6 /* connection.cpp */; };
|
||||
1FE9215A18D22D4E00AEEFF6 /* connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215318D22D4E00AEEFF6 /* connection.cpp */; };
|
||||
1FE9215B18D22D4E00AEEFF6 /* named_slot_map.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215418D22D4E00AEEFF6 /* named_slot_map.cpp */; };
|
||||
1FE9215C18D22D4E00AEEFF6 /* named_slot_map.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215418D22D4E00AEEFF6 /* named_slot_map.cpp */; };
|
||||
1FE9215D18D22D4E00AEEFF6 /* named_slot_map.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215418D22D4E00AEEFF6 /* named_slot_map.cpp */; };
|
||||
1FE9215E18D22D4E00AEEFF6 /* signal_base.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215518D22D4E00AEEFF6 /* signal_base.cpp */; };
|
||||
1FE9215F18D22D4E00AEEFF6 /* signal_base.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215518D22D4E00AEEFF6 /* signal_base.cpp */; };
|
||||
1FE9216018D22D4E00AEEFF6 /* signal_base.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215518D22D4E00AEEFF6 /* signal_base.cpp */; };
|
||||
1FE9216118D22D4E00AEEFF6 /* slot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215618D22D4E00AEEFF6 /* slot.cpp */; };
|
||||
1FE9216218D22D4E00AEEFF6 /* slot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215618D22D4E00AEEFF6 /* slot.cpp */; };
|
||||
1FE9216318D22D4E00AEEFF6 /* slot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215618D22D4E00AEEFF6 /* slot.cpp */; };
|
||||
1FE9216418D22D4E00AEEFF6 /* trackable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215718D22D4E00AEEFF6 /* trackable.cpp */; };
|
||||
1FE9216518D22D4E00AEEFF6 /* trackable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215718D22D4E00AEEFF6 /* trackable.cpp */; };
|
||||
1FE9216618D22D4E00AEEFF6 /* trackable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9215718D22D4E00AEEFF6 /* trackable.cpp */; };
|
||||
1FE9216818D22D7500AEEFF6 /* error_code.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9216718D22D7500AEEFF6 /* error_code.cpp */; };
|
||||
1FE9216918D22D7500AEEFF6 /* error_code.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9216718D22D7500AEEFF6 /* error_code.cpp */; };
|
||||
1FE9216A18D22D7500AEEFF6 /* error_code.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE9216718D22D7500AEEFF6 /* error_code.cpp */; };
|
||||
1FF6FB9C15D58ADF00FC557C /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FF6FB9B15D58ADF00FC557C /* libz.dylib */; };
|
||||
42975361192BFD9200566182 /* future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42975360192BFD9200566182 /* future.cpp */; };
|
||||
42975362192BFD9200566182 /* future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42975360192BFD9200566182 /* future.cpp */; };
|
||||
42975363192BFD9200566182 /* future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42975360192BFD9200566182 /* future.cpp */; };
|
||||
5652D9C7195A57790018C56E /* chrono.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5652D9C4195A57790018C56E /* chrono.cpp */; };
|
||||
5652D9C8195A57790018C56E /* chrono.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5652D9C4195A57790018C56E /* chrono.cpp */; };
|
||||
5652D9C9195A57790018C56E /* chrono.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5652D9C4195A57790018C56E /* chrono.cpp */; };
|
||||
5652D9CA195A57790018C56E /* process_cpu_clocks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5652D9C5195A57790018C56E /* process_cpu_clocks.cpp */; };
|
||||
5652D9CB195A57790018C56E /* process_cpu_clocks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5652D9C5195A57790018C56E /* process_cpu_clocks.cpp */; };
|
||||
5652D9CC195A57790018C56E /* process_cpu_clocks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5652D9C5195A57790018C56E /* process_cpu_clocks.cpp */; };
|
||||
5652D9CD195A57790018C56E /* thread_clock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5652D9C6195A57790018C56E /* thread_clock.cpp */; };
|
||||
5652D9CE195A57790018C56E /* thread_clock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5652D9C6195A57790018C56E /* thread_clock.cpp */; };
|
||||
5652D9CF195A57790018C56E /* thread_clock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5652D9C6195A57790018C56E /* thread_clock.cpp */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXCopyFilesBuildPhase section */
|
||||
106B8D7B15E7217400C1FF6B /* CopyFiles */ = {
|
||||
isa = PBXCopyFilesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
dstPath = "include/${PRODUCT_NAME}";
|
||||
dstSubfolderSpec = 16;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
106B8D7D15E7217400C1FF6B /* libBoost static iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libBoost static iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
106B8D7F15E7217400C1FF6B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
||||
1FE9211B18D22C2B00AEEFF6 /* file_descriptor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = file_descriptor.cpp; path = boost_1_55_0/libs/iostreams/src/file_descriptor.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9211C18D22C2B00AEEFF6 /* gzip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = gzip.cpp; path = boost_1_55_0/libs/iostreams/src/gzip.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9211D18D22C2B00AEEFF6 /* mapped_file.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mapped_file.cpp; path = boost_1_55_0/libs/iostreams/src/mapped_file.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9211E18D22C2B00AEEFF6 /* zlib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = zlib.cpp; path = boost_1_55_0/libs/iostreams/src/zlib.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9212B18D22CB100AEEFF6 /* codecvt_error_category.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = codecvt_error_category.cpp; path = boost_1_55_0/libs/filesystem/src/codecvt_error_category.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9212C18D22CB100AEEFF6 /* operations.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = operations.cpp; path = boost_1_55_0/libs/filesystem/src/operations.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9212D18D22CB100AEEFF6 /* path_traits.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = path_traits.cpp; path = boost_1_55_0/libs/filesystem/src/path_traits.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9212E18D22CB100AEEFF6 /* path.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = path.cpp; path = boost_1_55_0/libs/filesystem/src/path.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9212F18D22CB100AEEFF6 /* portability.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = portability.cpp; path = boost_1_55_0/libs/filesystem/src/portability.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9213018D22CB100AEEFF6 /* unique_path.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = unique_path.cpp; path = boost_1_55_0/libs/filesystem/src/unique_path.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9213118D22CB100AEEFF6 /* utf8_codecvt_facet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = utf8_codecvt_facet.cpp; path = boost_1_55_0/libs/filesystem/src/utf8_codecvt_facet.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9214718D22D1900AEEFF6 /* once.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = once.cpp; path = boost_1_55_0/libs/thread/src/pthread/once.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9214818D22D1900AEEFF6 /* thread.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = thread.cpp; path = boost_1_55_0/libs/thread/src/pthread/thread.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9214918D22D1900AEEFF6 /* tss_null.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tss_null.cpp; path = boost_1_55_0/libs/thread/src/tss_null.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9215318D22D4E00AEEFF6 /* connection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = connection.cpp; path = boost_1_55_0/libs/signals/src/connection.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9215418D22D4E00AEEFF6 /* named_slot_map.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = named_slot_map.cpp; path = boost_1_55_0/libs/signals/src/named_slot_map.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9215518D22D4E00AEEFF6 /* signal_base.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = signal_base.cpp; path = boost_1_55_0/libs/signals/src/signal_base.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9215618D22D4E00AEEFF6 /* slot.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = slot.cpp; path = boost_1_55_0/libs/signals/src/slot.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9215718D22D4E00AEEFF6 /* trackable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trackable.cpp; path = boost_1_55_0/libs/signals/src/trackable.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FE9216718D22D7500AEEFF6 /* error_code.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = error_code.cpp; path = boost_1_55_0/libs/system/src/error_code.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FF6FB9B15D58ADF00FC557C /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
|
||||
42975360192BFD9200566182 /* future.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = future.cpp; path = boost_1_55_0/libs/thread/src/future.cpp; sourceTree = CONTRIB_PATH; };
|
||||
5652D9C4195A57790018C56E /* chrono.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = chrono.cpp; path = boost_1_55_0/libs/chrono/src/chrono.cpp; sourceTree = CONTRIB_PATH; };
|
||||
5652D9C5195A57790018C56E /* process_cpu_clocks.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = process_cpu_clocks.cpp; path = boost_1_55_0/libs/chrono/src/process_cpu_clocks.cpp; sourceTree = CONTRIB_PATH; };
|
||||
5652D9C6195A57790018C56E /* thread_clock.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = thread_clock.cpp; path = boost_1_55_0/libs/chrono/src/thread_clock.cpp; sourceTree = CONTRIB_PATH; };
|
||||
D2AAC09D05546B4700DB518D /* Boost_1_55.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = Boost_1_55.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
E79762DF12886ADD00CE6714 /* libboost-d-1_55.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libboost-d-1_55.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
106B8D7A15E7217400C1FF6B /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
106B8D8015E7217400C1FF6B /* Foundation.framework in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
D2AAC09B05546B4700DB518D /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1FF6FB9C15D58ADF00FC557C /* libz.dylib in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
E79762DD12886ADD00CE6714 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
034768DDFF38A45A11DB9C8B /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
D2AAC09D05546B4700DB518D /* Boost_1_55.dylib */,
|
||||
E79762DF12886ADD00CE6714 /* libboost-d-1_55.a */,
|
||||
106B8D7D15E7217400C1FF6B /* libBoost static iOS.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0867D691FE84028FC02AAC07 /* boost */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08FB77ACFE841707C02AAC07 /* Source */,
|
||||
106B8D7E15E7217400C1FF6B /* Frameworks */,
|
||||
034768DDFF38A45A11DB9C8B /* Products */,
|
||||
1FF6FB9B15D58ADF00FC557C /* libz.dylib */,
|
||||
);
|
||||
name = boost;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08FB77ACFE841707C02AAC07 /* Source */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5652D9D0195A577E0018C56E /* chrono */,
|
||||
10C513D515D1BD8300F70324 /* iostream */,
|
||||
E797637712886EA300CE6714 /* filesystem */,
|
||||
D43BAA5311C0784D00DE5354 /* pthread */,
|
||||
D43BAA5211C0783A00DE5354 /* signals */,
|
||||
E797637C12886F4C00CE6714 /* system */,
|
||||
);
|
||||
name = Source;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
106B8D7E15E7217400C1FF6B /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
106B8D7F15E7217400C1FF6B /* Foundation.framework */,
|
||||
);
|
||||
name = Frameworks;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
10C513D515D1BD8300F70324 /* iostream */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1FE9211B18D22C2B00AEEFF6 /* file_descriptor.cpp */,
|
||||
1FE9211C18D22C2B00AEEFF6 /* gzip.cpp */,
|
||||
1FE9211D18D22C2B00AEEFF6 /* mapped_file.cpp */,
|
||||
1FE9211E18D22C2B00AEEFF6 /* zlib.cpp */,
|
||||
);
|
||||
name = iostream;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5652D9D0195A577E0018C56E /* chrono */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5652D9C4195A57790018C56E /* chrono.cpp */,
|
||||
5652D9C5195A57790018C56E /* process_cpu_clocks.cpp */,
|
||||
5652D9C6195A57790018C56E /* thread_clock.cpp */,
|
||||
);
|
||||
name = chrono;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
D43BAA5211C0783A00DE5354 /* signals */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1FE9215318D22D4E00AEEFF6 /* connection.cpp */,
|
||||
1FE9215418D22D4E00AEEFF6 /* named_slot_map.cpp */,
|
||||
1FE9215518D22D4E00AEEFF6 /* signal_base.cpp */,
|
||||
1FE9215618D22D4E00AEEFF6 /* slot.cpp */,
|
||||
1FE9215718D22D4E00AEEFF6 /* trackable.cpp */,
|
||||
);
|
||||
name = signals;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
D43BAA5311C0784D00DE5354 /* pthread */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
42975360192BFD9200566182 /* future.cpp */,
|
||||
1FE9214718D22D1900AEEFF6 /* once.cpp */,
|
||||
1FE9214818D22D1900AEEFF6 /* thread.cpp */,
|
||||
1FE9214918D22D1900AEEFF6 /* tss_null.cpp */,
|
||||
);
|
||||
name = pthread;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E797637712886EA300CE6714 /* filesystem */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1FE9212B18D22CB100AEEFF6 /* codecvt_error_category.cpp */,
|
||||
1FE9212C18D22CB100AEEFF6 /* operations.cpp */,
|
||||
1FE9212D18D22CB100AEEFF6 /* path_traits.cpp */,
|
||||
1FE9212E18D22CB100AEEFF6 /* path.cpp */,
|
||||
1FE9212F18D22CB100AEEFF6 /* portability.cpp */,
|
||||
1FE9213018D22CB100AEEFF6 /* unique_path.cpp */,
|
||||
1FE9213118D22CB100AEEFF6 /* utf8_codecvt_facet.cpp */,
|
||||
);
|
||||
name = filesystem;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E797637C12886F4C00CE6714 /* system */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1FE9216718D22D7500AEEFF6 /* error_code.cpp */,
|
||||
);
|
||||
name = system;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
D2AAC09905546B4700DB518D /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
E79762DB12886ADD00CE6714 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
106B8D7C15E7217400C1FF6B /* Boost static iOS */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 106B8D8A15E721E300C1FF6B /* Build configuration list for PBXNativeTarget "Boost static iOS" */;
|
||||
buildPhases = (
|
||||
106B8D7915E7217400C1FF6B /* Sources */,
|
||||
106B8D7A15E7217400C1FF6B /* Frameworks */,
|
||||
106B8D7B15E7217400C1FF6B /* CopyFiles */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = "Boost static iOS";
|
||||
productName = "Boost iOS";
|
||||
productReference = 106B8D7D15E7217400C1FF6B /* libBoost static iOS.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
D2AAC09C05546B4700DB518D /* boost */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1DEB916008733D950010E9CD /* Build configuration list for PBXNativeTarget "boost" */;
|
||||
buildPhases = (
|
||||
D2AAC09905546B4700DB518D /* Headers */,
|
||||
D2AAC09B05546B4700DB518D /* Frameworks */,
|
||||
D2AAC09A05546B4700DB518D /* Sources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = boost;
|
||||
productName = libboost;
|
||||
productReference = D2AAC09D05546B4700DB518D /* Boost_1_55.dylib */;
|
||||
productType = "com.apple.product-type.library.dynamic";
|
||||
};
|
||||
E79762DE12886ADD00CE6714 /* boost_static */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = E79762F812886B5800CE6714 /* Build configuration list for PBXNativeTarget "boost_static" */;
|
||||
buildPhases = (
|
||||
E79762DB12886ADD00CE6714 /* Headers */,
|
||||
E79762DC12886ADD00CE6714 /* Sources */,
|
||||
E79762DD12886ADD00CE6714 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = boost_static;
|
||||
productName = libboost_static;
|
||||
productReference = E79762DF12886ADD00CE6714 /* libboost-d-1_55.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
0867D690FE84028FC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
ORGANIZATIONNAME = roblox;
|
||||
};
|
||||
buildConfigurationList = 1DEB916408733D950010E9CD /* Build configuration list for PBXProject "boost" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 1;
|
||||
knownRegions = (
|
||||
English,
|
||||
Japanese,
|
||||
French,
|
||||
German,
|
||||
);
|
||||
mainGroup = 0867D691FE84028FC02AAC07 /* boost */;
|
||||
productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
D2AAC09C05546B4700DB518D /* boost */,
|
||||
E79762DE12886ADD00CE6714 /* boost_static */,
|
||||
106B8D7C15E7217400C1FF6B /* Boost static iOS */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
106B8D7915E7217400C1FF6B /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1FE9212A18D22C2B00AEEFF6 /* zlib.cpp in Sources */,
|
||||
1FE9213418D22CB100AEEFF6 /* codecvt_error_category.cpp in Sources */,
|
||||
1FE9213718D22CB100AEEFF6 /* operations.cpp in Sources */,
|
||||
1FE9216618D22D4E00AEEFF6 /* trackable.cpp in Sources */,
|
||||
1FE9212418D22C2B00AEEFF6 /* gzip.cpp in Sources */,
|
||||
1FE9213D18D22CB100AEEFF6 /* path.cpp in Sources */,
|
||||
1FE9215A18D22D4E00AEEFF6 /* connection.cpp in Sources */,
|
||||
1FE9215D18D22D4E00AEEFF6 /* named_slot_map.cpp in Sources */,
|
||||
1FE9214618D22CB100AEEFF6 /* utf8_codecvt_facet.cpp in Sources */,
|
||||
1FE9214318D22CB100AEEFF6 /* unique_path.cpp in Sources */,
|
||||
1FE9214F18D22D1900AEEFF6 /* thread.cpp in Sources */,
|
||||
1FE9216318D22D4E00AEEFF6 /* slot.cpp in Sources */,
|
||||
5652D9CF195A57790018C56E /* thread_clock.cpp in Sources */,
|
||||
1FE9213A18D22CB100AEEFF6 /* path_traits.cpp in Sources */,
|
||||
1FE9214018D22CB100AEEFF6 /* portability.cpp in Sources */,
|
||||
1FE9212718D22C2B00AEEFF6 /* mapped_file.cpp in Sources */,
|
||||
1FE9216018D22D4E00AEEFF6 /* signal_base.cpp in Sources */,
|
||||
5652D9CC195A57790018C56E /* process_cpu_clocks.cpp in Sources */,
|
||||
42975363192BFD9200566182 /* future.cpp in Sources */,
|
||||
1FE9216A18D22D7500AEEFF6 /* error_code.cpp in Sources */,
|
||||
1FE9215218D22D1900AEEFF6 /* tss_null.cpp in Sources */,
|
||||
1FE9212118D22C2B00AEEFF6 /* file_descriptor.cpp in Sources */,
|
||||
5652D9C9195A57790018C56E /* chrono.cpp in Sources */,
|
||||
1FE9214C18D22D1900AEEFF6 /* once.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
D2AAC09A05546B4700DB518D /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1FE9212818D22C2B00AEEFF6 /* zlib.cpp in Sources */,
|
||||
1FE9213218D22CB100AEEFF6 /* codecvt_error_category.cpp in Sources */,
|
||||
1FE9216418D22D4E00AEEFF6 /* trackable.cpp in Sources */,
|
||||
1FE9213518D22CB100AEEFF6 /* operations.cpp in Sources */,
|
||||
1FE9215818D22D4E00AEEFF6 /* connection.cpp in Sources */,
|
||||
1FE9215B18D22D4E00AEEFF6 /* named_slot_map.cpp in Sources */,
|
||||
1FE9212218D22C2B00AEEFF6 /* gzip.cpp in Sources */,
|
||||
1FE9213B18D22CB100AEEFF6 /* path.cpp in Sources */,
|
||||
1FE9216118D22D4E00AEEFF6 /* slot.cpp in Sources */,
|
||||
1FE9214D18D22D1900AEEFF6 /* thread.cpp in Sources */,
|
||||
1FE9214418D22CB100AEEFF6 /* utf8_codecvt_facet.cpp in Sources */,
|
||||
1FE9214118D22CB100AEEFF6 /* unique_path.cpp in Sources */,
|
||||
5652D9CD195A57790018C56E /* thread_clock.cpp in Sources */,
|
||||
1FE9215E18D22D4E00AEEFF6 /* signal_base.cpp in Sources */,
|
||||
1FE9215018D22D1900AEEFF6 /* tss_null.cpp in Sources */,
|
||||
1FE9213818D22CB100AEEFF6 /* path_traits.cpp in Sources */,
|
||||
1FE9213E18D22CB100AEEFF6 /* portability.cpp in Sources */,
|
||||
5652D9CA195A57790018C56E /* process_cpu_clocks.cpp in Sources */,
|
||||
42975361192BFD9200566182 /* future.cpp in Sources */,
|
||||
1FE9216818D22D7500AEEFF6 /* error_code.cpp in Sources */,
|
||||
1FE9212518D22C2B00AEEFF6 /* mapped_file.cpp in Sources */,
|
||||
1FE9211F18D22C2B00AEEFF6 /* file_descriptor.cpp in Sources */,
|
||||
5652D9C7195A57790018C56E /* chrono.cpp in Sources */,
|
||||
1FE9214A18D22D1900AEEFF6 /* once.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
E79762DC12886ADD00CE6714 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1FE9212918D22C2B00AEEFF6 /* zlib.cpp in Sources */,
|
||||
1FE9213318D22CB100AEEFF6 /* codecvt_error_category.cpp in Sources */,
|
||||
1FE9216518D22D4E00AEEFF6 /* trackable.cpp in Sources */,
|
||||
1FE9213618D22CB100AEEFF6 /* operations.cpp in Sources */,
|
||||
1FE9215918D22D4E00AEEFF6 /* connection.cpp in Sources */,
|
||||
1FE9215C18D22D4E00AEEFF6 /* named_slot_map.cpp in Sources */,
|
||||
1FE9212318D22C2B00AEEFF6 /* gzip.cpp in Sources */,
|
||||
1FE9213C18D22CB100AEEFF6 /* path.cpp in Sources */,
|
||||
1FE9216218D22D4E00AEEFF6 /* slot.cpp in Sources */,
|
||||
1FE9214E18D22D1900AEEFF6 /* thread.cpp in Sources */,
|
||||
1FE9214518D22CB100AEEFF6 /* utf8_codecvt_facet.cpp in Sources */,
|
||||
1FE9214218D22CB100AEEFF6 /* unique_path.cpp in Sources */,
|
||||
5652D9CE195A57790018C56E /* thread_clock.cpp in Sources */,
|
||||
1FE9215F18D22D4E00AEEFF6 /* signal_base.cpp in Sources */,
|
||||
1FE9215118D22D1900AEEFF6 /* tss_null.cpp in Sources */,
|
||||
1FE9213918D22CB100AEEFF6 /* path_traits.cpp in Sources */,
|
||||
1FE9213F18D22CB100AEEFF6 /* portability.cpp in Sources */,
|
||||
5652D9CB195A57790018C56E /* process_cpu_clocks.cpp in Sources */,
|
||||
42975362192BFD9200566182 /* future.cpp in Sources */,
|
||||
1FE9216918D22D7500AEEFF6 /* error_code.cpp in Sources */,
|
||||
1FE9212618D22C2B00AEEFF6 /* mapped_file.cpp in Sources */,
|
||||
1FE9212018D22C2B00AEEFF6 /* file_descriptor.cpp in Sources */,
|
||||
5652D9C8195A57790018C56E /* chrono.cpp in Sources */,
|
||||
1FE9214B18D22D1900AEEFF6 /* once.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
106B8D8815E7217500C1FF6B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DSTROOT = /tmp/Boost_static_iOS.dst;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = NO;
|
||||
GCC_PREFIX_HEADER = "";
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/",
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
"$(CONTRIB_PATH)/cpp-netlib-0.11.0-final",
|
||||
);
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 5.1.1;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
OTHER_LDFLAGS = "-ObjC";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = iphoneos;
|
||||
SKIP_INSTALL = YES;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
106B8D8915E7217500C1FF6B /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEPLOYMENT_POSTPROCESSING = NO;
|
||||
DSTROOT = /tmp/Boost_static_iOS.dst;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 2;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = NO;
|
||||
GCC_PREFIX_HEADER = "";
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/",
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
"$(CONTRIB_PATH)/cpp-netlib-0.11.0-final",
|
||||
);
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 5.1.1;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
OTHER_LDFLAGS = "-ObjC";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = iphoneos;
|
||||
SKIP_INSTALL = YES;
|
||||
STRIP_INSTALLED_PRODUCT = NO;
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
1DEB916108733D950010E9CD /* 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_ENABLE_SYMBOL_SEPARATION = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = "";
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
"$(CONTRIB_PATH)/cpp-netlib-0.11.0-final",
|
||||
);
|
||||
PRODUCT_NAME = Boost_1_55;
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
1DEB916208733D950010E9CD /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_ENABLE_SYMBOL_SEPARATION = NO;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = "";
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
"$(CONTRIB_PATH)/cpp-netlib-0.11.0-final",
|
||||
);
|
||||
PRODUCT_NAME = Boost_1_55;
|
||||
SDKROOT = macosx;
|
||||
STRIP_INSTALLED_PRODUCT = YES;
|
||||
STRIP_STYLE = "non-global";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
1DEB916508733D950010E9CD /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = YES;
|
||||
ARCHS = i386;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = "";
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_TREAT_WARNINGS_AS_ERRORS = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = "";
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = macosx10.8;
|
||||
USER_HEADER_SEARCH_PATHS = ../Rendering/g3d/include;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
1DEB916608733D950010E9CD /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = YES;
|
||||
ARCHS = i386;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEAD_CODE_STRIPPING = YES;
|
||||
DEPLOYMENT_POSTPROCESSING = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1";
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_TREAT_WARNINGS_AS_ERRORS = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = "";
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = macosx10.8;
|
||||
STRIP_INSTALLED_PRODUCT = YES;
|
||||
USER_HEADER_SEARCH_PATHS = ../Rendering/g3d/include;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
D0D04FD71C76024C00CDE19D /* NoOpt */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = YES;
|
||||
ARCHS = i386;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEAD_CODE_STRIPPING = YES;
|
||||
DEPLOYMENT_POSTPROCESSING = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1";
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_TREAT_WARNINGS_AS_ERRORS = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = "";
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = macosx10.8;
|
||||
STRIP_INSTALLED_PRODUCT = YES;
|
||||
USER_HEADER_SEARCH_PATHS = ../Rendering/g3d/include;
|
||||
};
|
||||
name = NoOpt;
|
||||
};
|
||||
D0D04FD81C76024C00CDE19D /* NoOpt */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_ENABLE_SYMBOL_SEPARATION = NO;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = "";
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
"$(CONTRIB_PATH)/cpp-netlib-0.11.0-final",
|
||||
);
|
||||
PRODUCT_NAME = Boost_1_55;
|
||||
SDKROOT = macosx;
|
||||
STRIP_INSTALLED_PRODUCT = YES;
|
||||
STRIP_STYLE = "non-global";
|
||||
};
|
||||
name = NoOpt;
|
||||
};
|
||||
D0D04FD91C76024C00CDE19D /* NoOpt */ = {
|
||||
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;
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/",
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
"$(CONTRIB_PATH)/cpp-netlib-0.11.0-final",
|
||||
);
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = "boost-1_55";
|
||||
SDKROOT = macosx;
|
||||
ZERO_LINK = NO;
|
||||
};
|
||||
name = NoOpt;
|
||||
};
|
||||
D0D04FDA1C76024C00CDE19D /* NoOpt */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEPLOYMENT_POSTPROCESSING = NO;
|
||||
DSTROOT = /tmp/Boost_static_iOS.dst;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = NO;
|
||||
GCC_PREFIX_HEADER = "";
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/",
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
"$(CONTRIB_PATH)/cpp-netlib-0.11.0-final",
|
||||
);
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 5.1.1;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
OTHER_LDFLAGS = "-ObjC";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = iphoneos;
|
||||
SKIP_INSTALL = YES;
|
||||
STRIP_INSTALLED_PRODUCT = NO;
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
name = NoOpt;
|
||||
};
|
||||
E79762E012886ADD00CE6714 /* 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_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/",
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
"$(CONTRIB_PATH)/cpp-netlib-0.11.0-final",
|
||||
);
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = "boost-d-1_55";
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
E79762E112886ADD00CE6714 /* 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;
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/",
|
||||
"$(CONTRIB_PATH)/boost_1_55_0/include",
|
||||
"$(CONTRIB_PATH)/cpp-netlib-0.11.0-final",
|
||||
);
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = "boost-1_55";
|
||||
SDKROOT = macosx;
|
||||
ZERO_LINK = NO;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
106B8D8A15E721E300C1FF6B /* Build configuration list for PBXNativeTarget "Boost static iOS" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
106B8D8815E7217500C1FF6B /* Debug */,
|
||||
106B8D8915E7217500C1FF6B /* Release */,
|
||||
D0D04FDA1C76024C00CDE19D /* NoOpt */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
1DEB916008733D950010E9CD /* Build configuration list for PBXNativeTarget "boost" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1DEB916108733D950010E9CD /* Debug */,
|
||||
1DEB916208733D950010E9CD /* Release */,
|
||||
D0D04FD81C76024C00CDE19D /* NoOpt */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
1DEB916408733D950010E9CD /* Build configuration list for PBXProject "boost" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1DEB916508733D950010E9CD /* Debug */,
|
||||
1DEB916608733D950010E9CD /* Release */,
|
||||
D0D04FD71C76024C00CDE19D /* NoOpt */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
E79762F812886B5800CE6714 /* Build configuration list for PBXNativeTarget "boost_static" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
E79762E012886ADD00CE6714 /* Debug */,
|
||||
E79762E112886ADD00CE6714 /* Release */,
|
||||
D0D04FD91C76024C00CDE19D /* NoOpt */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 0867D690FE84028FC02AAC07 /* Project object */;
|
||||
}
|
||||
@@ -0,0 +1,719 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
1FC2765618D239A200C53BE0 /* compiler_log_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764A18D239A200C53BE0 /* compiler_log_formatter.cpp */; };
|
||||
1FC2765718D239A200C53BE0 /* compiler_log_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764A18D239A200C53BE0 /* compiler_log_formatter.cpp */; };
|
||||
1FC2765818D239A200C53BE0 /* compiler_log_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764A18D239A200C53BE0 /* compiler_log_formatter.cpp */; };
|
||||
1FC2765918D239A200C53BE0 /* cpp_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764B18D239A200C53BE0 /* cpp_main.cpp */; };
|
||||
1FC2765A18D239A200C53BE0 /* cpp_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764B18D239A200C53BE0 /* cpp_main.cpp */; };
|
||||
1FC2765B18D239A200C53BE0 /* cpp_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764B18D239A200C53BE0 /* cpp_main.cpp */; };
|
||||
1FC2765C18D239A200C53BE0 /* debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764C18D239A200C53BE0 /* debug.cpp */; };
|
||||
1FC2765D18D239A200C53BE0 /* debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764C18D239A200C53BE0 /* debug.cpp */; };
|
||||
1FC2765E18D239A200C53BE0 /* debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764C18D239A200C53BE0 /* debug.cpp */; };
|
||||
1FC2765F18D239A200C53BE0 /* exception_safety.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764D18D239A200C53BE0 /* exception_safety.cpp */; };
|
||||
1FC2766018D239A200C53BE0 /* exception_safety.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764D18D239A200C53BE0 /* exception_safety.cpp */; };
|
||||
1FC2766118D239A200C53BE0 /* exception_safety.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764D18D239A200C53BE0 /* exception_safety.cpp */; };
|
||||
1FC2766218D239A200C53BE0 /* execution_monitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764E18D239A200C53BE0 /* execution_monitor.cpp */; };
|
||||
1FC2766318D239A200C53BE0 /* execution_monitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764E18D239A200C53BE0 /* execution_monitor.cpp */; };
|
||||
1FC2766418D239A200C53BE0 /* execution_monitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764E18D239A200C53BE0 /* execution_monitor.cpp */; };
|
||||
1FC2766518D239A200C53BE0 /* framework.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764F18D239A200C53BE0 /* framework.cpp */; };
|
||||
1FC2766618D239A200C53BE0 /* framework.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764F18D239A200C53BE0 /* framework.cpp */; };
|
||||
1FC2766718D239A200C53BE0 /* framework.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2764F18D239A200C53BE0 /* framework.cpp */; };
|
||||
1FC2766818D239A200C53BE0 /* interaction_based.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765018D239A200C53BE0 /* interaction_based.cpp */; };
|
||||
1FC2766918D239A200C53BE0 /* interaction_based.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765018D239A200C53BE0 /* interaction_based.cpp */; };
|
||||
1FC2766A18D239A200C53BE0 /* interaction_based.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765018D239A200C53BE0 /* interaction_based.cpp */; };
|
||||
1FC2766B18D239A200C53BE0 /* logged_expectations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765118D239A200C53BE0 /* logged_expectations.cpp */; };
|
||||
1FC2766C18D239A200C53BE0 /* logged_expectations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765118D239A200C53BE0 /* logged_expectations.cpp */; };
|
||||
1FC2766D18D239A200C53BE0 /* logged_expectations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765118D239A200C53BE0 /* logged_expectations.cpp */; };
|
||||
1FC2766E18D239A200C53BE0 /* plain_report_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765218D239A200C53BE0 /* plain_report_formatter.cpp */; };
|
||||
1FC2766F18D239A200C53BE0 /* plain_report_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765218D239A200C53BE0 /* plain_report_formatter.cpp */; };
|
||||
1FC2767018D239A200C53BE0 /* plain_report_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765218D239A200C53BE0 /* plain_report_formatter.cpp */; };
|
||||
1FC2767118D239A200C53BE0 /* progress_monitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765318D239A200C53BE0 /* progress_monitor.cpp */; };
|
||||
1FC2767218D239A200C53BE0 /* progress_monitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765318D239A200C53BE0 /* progress_monitor.cpp */; };
|
||||
1FC2767318D239A200C53BE0 /* progress_monitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765318D239A200C53BE0 /* progress_monitor.cpp */; };
|
||||
1FC2767418D239A200C53BE0 /* results_collector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765418D239A200C53BE0 /* results_collector.cpp */; };
|
||||
1FC2767518D239A200C53BE0 /* results_collector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765418D239A200C53BE0 /* results_collector.cpp */; };
|
||||
1FC2767618D239A200C53BE0 /* results_collector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765418D239A200C53BE0 /* results_collector.cpp */; };
|
||||
1FC2767718D239A200C53BE0 /* results_reporter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765518D239A200C53BE0 /* results_reporter.cpp */; };
|
||||
1FC2767818D239A200C53BE0 /* results_reporter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765518D239A200C53BE0 /* results_reporter.cpp */; };
|
||||
1FC2767918D239A200C53BE0 /* results_reporter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2765518D239A200C53BE0 /* results_reporter.cpp */; };
|
||||
1FC2768218D239B800C53BE0 /* test_tools.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767A18D239B800C53BE0 /* test_tools.cpp */; };
|
||||
1FC2768318D239B800C53BE0 /* test_tools.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767A18D239B800C53BE0 /* test_tools.cpp */; };
|
||||
1FC2768418D239B800C53BE0 /* test_tools.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767A18D239B800C53BE0 /* test_tools.cpp */; };
|
||||
1FC2768518D239B800C53BE0 /* unit_test_log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767B18D239B800C53BE0 /* unit_test_log.cpp */; };
|
||||
1FC2768618D239B800C53BE0 /* unit_test_log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767B18D239B800C53BE0 /* unit_test_log.cpp */; };
|
||||
1FC2768718D239B800C53BE0 /* unit_test_log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767B18D239B800C53BE0 /* unit_test_log.cpp */; };
|
||||
1FC2768818D239B800C53BE0 /* unit_test_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767C18D239B800C53BE0 /* unit_test_main.cpp */; };
|
||||
1FC2768918D239B800C53BE0 /* unit_test_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767C18D239B800C53BE0 /* unit_test_main.cpp */; };
|
||||
1FC2768A18D239B800C53BE0 /* unit_test_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767C18D239B800C53BE0 /* unit_test_main.cpp */; };
|
||||
1FC2768B18D239B800C53BE0 /* unit_test_monitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767D18D239B800C53BE0 /* unit_test_monitor.cpp */; };
|
||||
1FC2768C18D239B800C53BE0 /* unit_test_monitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767D18D239B800C53BE0 /* unit_test_monitor.cpp */; };
|
||||
1FC2768D18D239B800C53BE0 /* unit_test_monitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767D18D239B800C53BE0 /* unit_test_monitor.cpp */; };
|
||||
1FC2768E18D239B800C53BE0 /* unit_test_parameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767E18D239B800C53BE0 /* unit_test_parameters.cpp */; };
|
||||
1FC2768F18D239B800C53BE0 /* unit_test_parameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767E18D239B800C53BE0 /* unit_test_parameters.cpp */; };
|
||||
1FC2769018D239B800C53BE0 /* unit_test_parameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767E18D239B800C53BE0 /* unit_test_parameters.cpp */; };
|
||||
1FC2769118D239B800C53BE0 /* unit_test_suite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767F18D239B800C53BE0 /* unit_test_suite.cpp */; };
|
||||
1FC2769218D239B800C53BE0 /* unit_test_suite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767F18D239B800C53BE0 /* unit_test_suite.cpp */; };
|
||||
1FC2769318D239B800C53BE0 /* unit_test_suite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2767F18D239B800C53BE0 /* unit_test_suite.cpp */; };
|
||||
1FC2769418D239B800C53BE0 /* xml_log_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2768018D239B800C53BE0 /* xml_log_formatter.cpp */; };
|
||||
1FC2769518D239B800C53BE0 /* xml_log_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2768018D239B800C53BE0 /* xml_log_formatter.cpp */; };
|
||||
1FC2769618D239B800C53BE0 /* xml_log_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2768018D239B800C53BE0 /* xml_log_formatter.cpp */; };
|
||||
1FC2769718D239B800C53BE0 /* xml_report_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2768118D239B800C53BE0 /* xml_report_formatter.cpp */; };
|
||||
1FC2769818D239B800C53BE0 /* xml_report_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2768118D239B800C53BE0 /* xml_report_formatter.cpp */; };
|
||||
1FC2769918D239B800C53BE0 /* xml_report_formatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2768118D239B800C53BE0 /* xml_report_formatter.cpp */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
1F28447015E6F10F00120D64 /* libboostTest-iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libboostTest-iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
1F89289012DFCA0700E12C49 /* libboostTest-static.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libboostTest-static.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
1FC2764A18D239A200C53BE0 /* compiler_log_formatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = compiler_log_formatter.cpp; path = boost_1_55_0/libs/test/src/compiler_log_formatter.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2764B18D239A200C53BE0 /* cpp_main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = cpp_main.cpp; path = boost_1_55_0/libs/test/src/cpp_main.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2764C18D239A200C53BE0 /* debug.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = debug.cpp; path = boost_1_55_0/libs/test/src/debug.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2764D18D239A200C53BE0 /* exception_safety.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = exception_safety.cpp; path = boost_1_55_0/libs/test/src/exception_safety.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2764E18D239A200C53BE0 /* execution_monitor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = execution_monitor.cpp; path = boost_1_55_0/libs/test/src/execution_monitor.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2764F18D239A200C53BE0 /* framework.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = framework.cpp; path = boost_1_55_0/libs/test/src/framework.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2765018D239A200C53BE0 /* interaction_based.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = interaction_based.cpp; path = boost_1_55_0/libs/test/src/interaction_based.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2765118D239A200C53BE0 /* logged_expectations.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = logged_expectations.cpp; path = boost_1_55_0/libs/test/src/logged_expectations.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2765218D239A200C53BE0 /* plain_report_formatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = plain_report_formatter.cpp; path = boost_1_55_0/libs/test/src/plain_report_formatter.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2765318D239A200C53BE0 /* progress_monitor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = progress_monitor.cpp; path = boost_1_55_0/libs/test/src/progress_monitor.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2765418D239A200C53BE0 /* results_collector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = results_collector.cpp; path = boost_1_55_0/libs/test/src/results_collector.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2765518D239A200C53BE0 /* results_reporter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = results_reporter.cpp; path = boost_1_55_0/libs/test/src/results_reporter.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2767A18D239B800C53BE0 /* test_tools.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_tools.cpp; path = boost_1_55_0/libs/test/src/test_tools.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2767B18D239B800C53BE0 /* unit_test_log.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = unit_test_log.cpp; path = boost_1_55_0/libs/test/src/unit_test_log.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2767C18D239B800C53BE0 /* unit_test_main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = unit_test_main.cpp; path = boost_1_55_0/libs/test/src/unit_test_main.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2767D18D239B800C53BE0 /* unit_test_monitor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = unit_test_monitor.cpp; path = boost_1_55_0/libs/test/src/unit_test_monitor.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2767E18D239B800C53BE0 /* unit_test_parameters.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = unit_test_parameters.cpp; path = boost_1_55_0/libs/test/src/unit_test_parameters.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2767F18D239B800C53BE0 /* unit_test_suite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = unit_test_suite.cpp; path = boost_1_55_0/libs/test/src/unit_test_suite.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2768018D239B800C53BE0 /* xml_log_formatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = xml_log_formatter.cpp; path = boost_1_55_0/libs/test/src/xml_log_formatter.cpp; sourceTree = CONTRIB_PATH; };
|
||||
1FC2768118D239B800C53BE0 /* xml_report_formatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = xml_report_formatter.cpp; path = boost_1_55_0/libs/test/src/xml_report_formatter.cpp; sourceTree = CONTRIB_PATH; };
|
||||
32BAE0B70371A74B00C91783 /* boostTest_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boostTest_Prefix.pch; sourceTree = "<group>"; };
|
||||
5073E0C609E734A800EC74B6 /* boostTestProj.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = boostTestProj.xcconfig; sourceTree = "<group>"; };
|
||||
5073E0C709E734A800EC74B6 /* boostTestTarget.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = boostTestTarget.xcconfig; sourceTree = "<group>"; };
|
||||
D2AAC09D05546B4700DB518D /* libboostTest.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libboostTest.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
1F28446C15E6F10F00120D64 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
1F89288E12DFCA0700E12C49 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
D2AAC09B05546B4700DB518D /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
034768DDFF38A45A11DB9C8B /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
D2AAC09D05546B4700DB518D /* libboostTest.dylib */,
|
||||
1F89289012DFCA0700E12C49 /* libboostTest-static.a */,
|
||||
1F28447015E6F10F00120D64 /* libboostTest-iOS.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0867D691FE84028FC02AAC07 /* boostTest */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5073E0CA09E734BC00EC74B6 /* Configuration Files */,
|
||||
08FB77ACFE841707C02AAC07 /* Source */,
|
||||
0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */,
|
||||
034768DDFF38A45A11DB9C8B /* Products */,
|
||||
);
|
||||
name = boostTest;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
);
|
||||
name = "External Frameworks and Libraries";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08FB77ACFE841707C02AAC07 /* Source */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1090EBF515D32FA800CD3449 /* src */,
|
||||
32BAE0B70371A74B00C91783 /* boostTest_Prefix.pch */,
|
||||
);
|
||||
name = Source;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1090EBF515D32FA800CD3449 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1FC2767A18D239B800C53BE0 /* test_tools.cpp */,
|
||||
1FC2767B18D239B800C53BE0 /* unit_test_log.cpp */,
|
||||
1FC2767C18D239B800C53BE0 /* unit_test_main.cpp */,
|
||||
1FC2767D18D239B800C53BE0 /* unit_test_monitor.cpp */,
|
||||
1FC2767E18D239B800C53BE0 /* unit_test_parameters.cpp */,
|
||||
1FC2767F18D239B800C53BE0 /* unit_test_suite.cpp */,
|
||||
1FC2768018D239B800C53BE0 /* xml_log_formatter.cpp */,
|
||||
1FC2768118D239B800C53BE0 /* xml_report_formatter.cpp */,
|
||||
1FC2764A18D239A200C53BE0 /* compiler_log_formatter.cpp */,
|
||||
1FC2764B18D239A200C53BE0 /* cpp_main.cpp */,
|
||||
1FC2764C18D239A200C53BE0 /* debug.cpp */,
|
||||
1FC2764D18D239A200C53BE0 /* exception_safety.cpp */,
|
||||
1FC2764E18D239A200C53BE0 /* execution_monitor.cpp */,
|
||||
1FC2764F18D239A200C53BE0 /* framework.cpp */,
|
||||
1FC2765018D239A200C53BE0 /* interaction_based.cpp */,
|
||||
1FC2765118D239A200C53BE0 /* logged_expectations.cpp */,
|
||||
1FC2765218D239A200C53BE0 /* plain_report_formatter.cpp */,
|
||||
1FC2765318D239A200C53BE0 /* progress_monitor.cpp */,
|
||||
1FC2765418D239A200C53BE0 /* results_collector.cpp */,
|
||||
1FC2765518D239A200C53BE0 /* results_reporter.cpp */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5073E0CA09E734BC00EC74B6 /* Configuration Files */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5073E0C609E734A800EC74B6 /* boostTestProj.xcconfig */,
|
||||
5073E0C709E734A800EC74B6 /* boostTestTarget.xcconfig */,
|
||||
);
|
||||
name = "Configuration Files";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
1F28445615E6F10F00120D64 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
1F89288C12DFCA0700E12C49 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
D2AAC09905546B4700DB518D /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
1F28445515E6F10F00120D64 /* boostTest-iOS */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1F28446D15E6F10F00120D64 /* Build configuration list for PBXNativeTarget "boostTest-iOS" */;
|
||||
buildPhases = (
|
||||
1F28445615E6F10F00120D64 /* Headers */,
|
||||
1F28445715E6F10F00120D64 /* Sources */,
|
||||
1F28446C15E6F10F00120D64 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = "boostTest-iOS";
|
||||
productName = "boostTest-static";
|
||||
productReference = 1F28447015E6F10F00120D64 /* libboostTest-iOS.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
1F89288F12DFCA0700E12C49 /* boostTest-static */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1F8928AE12DFCA8B00E12C49 /* Build configuration list for PBXNativeTarget "boostTest-static" */;
|
||||
buildPhases = (
|
||||
1F89288C12DFCA0700E12C49 /* Headers */,
|
||||
1F89288D12DFCA0700E12C49 /* Sources */,
|
||||
1F89288E12DFCA0700E12C49 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = "boostTest-static";
|
||||
productName = "boostTest-static";
|
||||
productReference = 1F89289012DFCA0700E12C49 /* libboostTest-static.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
D2AAC09C05546B4700DB518D /* boostTest */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1DEB916008733D950010E9CD /* Build configuration list for PBXNativeTarget "boostTest" */;
|
||||
buildPhases = (
|
||||
D2AAC09905546B4700DB518D /* Headers */,
|
||||
D2AAC09B05546B4700DB518D /* Frameworks */,
|
||||
D2AAC09A05546B4700DB518D /* Sources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = boostTest;
|
||||
productName = libboostTest;
|
||||
productReference = D2AAC09D05546B4700DB518D /* libboostTest.dylib */;
|
||||
productType = "com.apple.product-type.library.dynamic";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
0867D690FE84028FC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
};
|
||||
buildConfigurationList = 1DEB916408733D950010E9CD /* Build configuration list for PBXProject "boostTest" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 1;
|
||||
knownRegions = (
|
||||
English,
|
||||
Japanese,
|
||||
French,
|
||||
German,
|
||||
);
|
||||
mainGroup = 0867D691FE84028FC02AAC07 /* boostTest */;
|
||||
productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
D2AAC09C05546B4700DB518D /* boostTest */,
|
||||
1F89288F12DFCA0700E12C49 /* boostTest-static */,
|
||||
1F28445515E6F10F00120D64 /* boostTest-iOS */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
1F28445715E6F10F00120D64 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1FC2766418D239A200C53BE0 /* execution_monitor.cpp in Sources */,
|
||||
1FC2768A18D239B800C53BE0 /* unit_test_main.cpp in Sources */,
|
||||
1FC2769918D239B800C53BE0 /* xml_report_formatter.cpp in Sources */,
|
||||
1FC2768718D239B800C53BE0 /* unit_test_log.cpp in Sources */,
|
||||
1FC2766118D239A200C53BE0 /* exception_safety.cpp in Sources */,
|
||||
1FC2767918D239A200C53BE0 /* results_reporter.cpp in Sources */,
|
||||
1FC2765818D239A200C53BE0 /* compiler_log_formatter.cpp in Sources */,
|
||||
1FC2767318D239A200C53BE0 /* progress_monitor.cpp in Sources */,
|
||||
1FC2768418D239B800C53BE0 /* test_tools.cpp in Sources */,
|
||||
1FC2769018D239B800C53BE0 /* unit_test_parameters.cpp in Sources */,
|
||||
1FC2765B18D239A200C53BE0 /* cpp_main.cpp in Sources */,
|
||||
1FC2768D18D239B800C53BE0 /* unit_test_monitor.cpp in Sources */,
|
||||
1FC2769618D239B800C53BE0 /* xml_log_formatter.cpp in Sources */,
|
||||
1FC2766718D239A200C53BE0 /* framework.cpp in Sources */,
|
||||
1FC2767618D239A200C53BE0 /* results_collector.cpp in Sources */,
|
||||
1FC2769318D239B800C53BE0 /* unit_test_suite.cpp in Sources */,
|
||||
1FC2766D18D239A200C53BE0 /* logged_expectations.cpp in Sources */,
|
||||
1FC2766A18D239A200C53BE0 /* interaction_based.cpp in Sources */,
|
||||
1FC2765E18D239A200C53BE0 /* debug.cpp in Sources */,
|
||||
1FC2767018D239A200C53BE0 /* plain_report_formatter.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
1F89288D12DFCA0700E12C49 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1FC2766318D239A200C53BE0 /* execution_monitor.cpp in Sources */,
|
||||
1FC2768918D239B800C53BE0 /* unit_test_main.cpp in Sources */,
|
||||
1FC2769818D239B800C53BE0 /* xml_report_formatter.cpp in Sources */,
|
||||
1FC2768618D239B800C53BE0 /* unit_test_log.cpp in Sources */,
|
||||
1FC2766018D239A200C53BE0 /* exception_safety.cpp in Sources */,
|
||||
1FC2767818D239A200C53BE0 /* results_reporter.cpp in Sources */,
|
||||
1FC2765718D239A200C53BE0 /* compiler_log_formatter.cpp in Sources */,
|
||||
1FC2767218D239A200C53BE0 /* progress_monitor.cpp in Sources */,
|
||||
1FC2768318D239B800C53BE0 /* test_tools.cpp in Sources */,
|
||||
1FC2768F18D239B800C53BE0 /* unit_test_parameters.cpp in Sources */,
|
||||
1FC2765A18D239A200C53BE0 /* cpp_main.cpp in Sources */,
|
||||
1FC2768C18D239B800C53BE0 /* unit_test_monitor.cpp in Sources */,
|
||||
1FC2769518D239B800C53BE0 /* xml_log_formatter.cpp in Sources */,
|
||||
1FC2766618D239A200C53BE0 /* framework.cpp in Sources */,
|
||||
1FC2767518D239A200C53BE0 /* results_collector.cpp in Sources */,
|
||||
1FC2769218D239B800C53BE0 /* unit_test_suite.cpp in Sources */,
|
||||
1FC2766C18D239A200C53BE0 /* logged_expectations.cpp in Sources */,
|
||||
1FC2766918D239A200C53BE0 /* interaction_based.cpp in Sources */,
|
||||
1FC2765D18D239A200C53BE0 /* debug.cpp in Sources */,
|
||||
1FC2766F18D239A200C53BE0 /* plain_report_formatter.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
D2AAC09A05546B4700DB518D /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1FC2766218D239A200C53BE0 /* execution_monitor.cpp in Sources */,
|
||||
1FC2768818D239B800C53BE0 /* unit_test_main.cpp in Sources */,
|
||||
1FC2769718D239B800C53BE0 /* xml_report_formatter.cpp in Sources */,
|
||||
1FC2768518D239B800C53BE0 /* unit_test_log.cpp in Sources */,
|
||||
1FC2765F18D239A200C53BE0 /* exception_safety.cpp in Sources */,
|
||||
1FC2767718D239A200C53BE0 /* results_reporter.cpp in Sources */,
|
||||
1FC2765618D239A200C53BE0 /* compiler_log_formatter.cpp in Sources */,
|
||||
1FC2767118D239A200C53BE0 /* progress_monitor.cpp in Sources */,
|
||||
1FC2768218D239B800C53BE0 /* test_tools.cpp in Sources */,
|
||||
1FC2768E18D239B800C53BE0 /* unit_test_parameters.cpp in Sources */,
|
||||
1FC2765918D239A200C53BE0 /* cpp_main.cpp in Sources */,
|
||||
1FC2768B18D239B800C53BE0 /* unit_test_monitor.cpp in Sources */,
|
||||
1FC2769418D239B800C53BE0 /* xml_log_formatter.cpp in Sources */,
|
||||
1FC2766518D239A200C53BE0 /* framework.cpp in Sources */,
|
||||
1FC2767418D239A200C53BE0 /* results_collector.cpp in Sources */,
|
||||
1FC2769118D239B800C53BE0 /* unit_test_suite.cpp in Sources */,
|
||||
1FC2766B18D239A200C53BE0 /* logged_expectations.cpp in Sources */,
|
||||
1FC2766818D239A200C53BE0 /* interaction_based.cpp in Sources */,
|
||||
1FC2765C18D239A200C53BE0 /* debug.cpp in Sources */,
|
||||
1FC2766E18D239A200C53BE0 /* plain_report_formatter.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
1DEB916108733D950010E9CD /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 5073E0C709E734A800EC74B6 /* boostTestTarget.xcconfig */;
|
||||
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_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = boostTest_Prefix.pch;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"BOOST_TEST_DYN_LINK=1",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_56_0/include";
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
1DEB916208733D950010E9CD /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 5073E0C709E734A800EC74B6 /* boostTestTarget.xcconfig */;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = boostTest_Prefix.pch;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"BOOST_TEST_DYN_LINK=1",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_56_0/include";
|
||||
SDKROOT = macosx;
|
||||
STRIP_INSTALLED_PRODUCT = YES;
|
||||
STRIP_STYLE = "non-global";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
1DEB916508733D950010E9CD /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 5073E0C609E734A800EC74B6 /* boostTestProj.xcconfig */;
|
||||
buildSettings = {
|
||||
ARCHS = i386;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = "_DEBUG=1";
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_55_0/include";
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = macosx10.8;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
1DEB916608733D950010E9CD /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 5073E0C609E734A800EC74B6 /* boostTestProj.xcconfig */;
|
||||
buildSettings = {
|
||||
ARCHS = i386;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1";
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_55_0/include";
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = macosx10.8;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
1F28446E15E6F10F00120D64 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = (
|
||||
armv7,
|
||||
armv6,
|
||||
);
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"BOOST_TEST_DYN_LINK=1",
|
||||
RBX_PLATFORM_IOS,
|
||||
);
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_56_0/include";
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 4.0;
|
||||
MACOSX_DEPLOYMENT_TARGET = "";
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = "boostTest-iOS";
|
||||
SDKROOT = iphoneos;
|
||||
VALIDATE_PRODUCT = NO;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
1F28446F15E6F10F00120D64 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = (
|
||||
armv7,
|
||||
armv6,
|
||||
);
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"BOOST_TEST_DYN_LINK=1",
|
||||
RBX_PLATFORM_IOS,
|
||||
);
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_56_0/include";
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 4.0;
|
||||
MACOSX_DEPLOYMENT_TARGET = "";
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = "boostTest-iOS";
|
||||
SDKROOT = iphoneos;
|
||||
VALIDATE_PRODUCT = NO;
|
||||
ZERO_LINK = NO;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
1F89289112DFCA0800E12C49 /* 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_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"BOOST_TEST_DYN_LINK=1",
|
||||
);
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_56_0/include";
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = "boostTest-static";
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
1F89289212DFCA0800E12C49 /* 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;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"BOOST_TEST_DYN_LINK=1",
|
||||
);
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_56_0/include";
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = "boostTest-static";
|
||||
SDKROOT = macosx;
|
||||
ZERO_LINK = NO;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
D0D04FDB1C76092B00CDE19D /* NoOpt */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 5073E0C609E734A800EC74B6 /* boostTestProj.xcconfig */;
|
||||
buildSettings = {
|
||||
ARCHS = i386;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"NDEBUG=1",
|
||||
"_NOOPT=1",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_55_0/include";
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = macosx10.8;
|
||||
};
|
||||
name = NoOpt;
|
||||
};
|
||||
D0D04FDC1C76092B00CDE19D /* NoOpt */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 5073E0C709E734A800EC74B6 /* boostTestTarget.xcconfig */;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = boostTest_Prefix.pch;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"BOOST_TEST_DYN_LINK=1",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_56_0/include";
|
||||
SDKROOT = macosx;
|
||||
STRIP_INSTALLED_PRODUCT = YES;
|
||||
STRIP_STYLE = "non-global";
|
||||
};
|
||||
name = NoOpt;
|
||||
};
|
||||
D0D04FDD1C76092B00CDE19D /* NoOpt */ = {
|
||||
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;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"BOOST_TEST_DYN_LINK=1",
|
||||
);
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_56_0/include";
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = "boostTest-static";
|
||||
SDKROOT = macosx;
|
||||
ZERO_LINK = NO;
|
||||
};
|
||||
name = NoOpt;
|
||||
};
|
||||
D0D04FDE1C76092B00CDE19D /* NoOpt */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = (
|
||||
armv7,
|
||||
armv6,
|
||||
);
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"BOOST_TEST_DYN_LINK=1",
|
||||
RBX_PLATFORM_IOS,
|
||||
);
|
||||
GCC_VERSION = "";
|
||||
HEADER_SEARCH_PATHS = "$(CONTRIB_PATH)/boost_1_56_0/include";
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 4.0;
|
||||
MACOSX_DEPLOYMENT_TARGET = "";
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = "boostTest-iOS";
|
||||
SDKROOT = iphoneos;
|
||||
VALIDATE_PRODUCT = NO;
|
||||
ZERO_LINK = NO;
|
||||
};
|
||||
name = NoOpt;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
1DEB916008733D950010E9CD /* Build configuration list for PBXNativeTarget "boostTest" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1DEB916108733D950010E9CD /* Debug */,
|
||||
1DEB916208733D950010E9CD /* Release */,
|
||||
D0D04FDC1C76092B00CDE19D /* NoOpt */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
1DEB916408733D950010E9CD /* Build configuration list for PBXProject "boostTest" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1DEB916508733D950010E9CD /* Debug */,
|
||||
1DEB916608733D950010E9CD /* Release */,
|
||||
D0D04FDB1C76092B00CDE19D /* NoOpt */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
1F28446D15E6F10F00120D64 /* Build configuration list for PBXNativeTarget "boostTest-iOS" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1F28446E15E6F10F00120D64 /* Debug */,
|
||||
1F28446F15E6F10F00120D64 /* Release */,
|
||||
D0D04FDE1C76092B00CDE19D /* NoOpt */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
1F8928AE12DFCA8B00E12C49 /* Build configuration list for PBXNativeTarget "boostTest-static" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1F89289112DFCA0800E12C49 /* Debug */,
|
||||
1F89289212DFCA0800E12C49 /* Release */,
|
||||
D0D04FDD1C76092B00CDE19D /* NoOpt */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 0867D690FE84028FC02AAC07 /* Project object */;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
PREBINDING = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_INCREASE_PRECOMPILED_HEADER_SHARING = YES;
|
||||
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
|
||||
@@ -0,0 +1,11 @@
|
||||
PRODUCT_NAME = libboostTest;
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
MACH_O_TYPE = mh_dylib;
|
||||
DYLIB_COMPATIBILITY_VERSION = 1;
|
||||
DYLIB_CURRENT_VERSION = 1;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = boostTest_Prefix.pch;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = YES;
|
||||
GCC_ENABLE_CPP_RTTI = YES;
|
||||
STANDARD_C_PLUS_PLUS_LIBRARY_TYPE = Dynamic;
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
@@ -0,0 +1,34 @@
|
||||
# Install script for directory: /mnt/f/Trunk2012/Client/boostlibs
|
||||
|
||||
# Set the install prefix
|
||||
IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
SET(CMAKE_INSTALL_PREFIX "/home/watrabi/Android/ndk/android-ndk-r10e/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/user")
|
||||
ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
IF(BUILD_TYPE)
|
||||
STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
ELSE(BUILD_TYPE)
|
||||
SET(CMAKE_INSTALL_CONFIG_NAME "Noopt")
|
||||
ENDIF(BUILD_TYPE)
|
||||
MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
|
||||
# Set the component getting installed.
|
||||
IF(NOT CMAKE_INSTALL_COMPONENT)
|
||||
IF(COMPONENT)
|
||||
MESSAGE(STATUS "Install component: \"${COMPONENT}\"")
|
||||
SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
ELSE(COMPONENT)
|
||||
SET(CMAKE_INSTALL_COMPONENT)
|
||||
ENDIF(COMPONENT)
|
||||
ENDIF(NOT CMAKE_INSTALL_COMPONENT)
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
SET(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
|
||||
Reference in New Issue
Block a user