Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
98f62c9c
Commit
98f62c9c
authored
Aug 21, 2015
by
Billy Donahue
Browse files
Codegear files should be CRLF.
parent
02730de6
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
437 additions
and
437 deletions
+437
-437
codegear/gtest.cbproj
codegear/gtest.cbproj
+137
-137
codegear/gtest.groupproj
codegear/gtest.groupproj
+53
-53
codegear/gtest_all.cc
codegear/gtest_all.cc
+38
-38
codegear/gtest_link.cc
codegear/gtest_link.cc
+40
-40
codegear/gtest_main.cbproj
codegear/gtest_main.cbproj
+82
-82
codegear/gtest_unittest.cbproj
codegear/gtest_unittest.cbproj
+87
-87
No files found.
codegear/gtest.cbproj
View file @
98f62c9c
This diff is collapsed.
Click to expand it.
codegear/gtest.groupproj
View file @
98f62c9c
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{c1d923e0-6cba-4332-9b6f-3420acbf5091}</ProjectGuid>
</PropertyGroup>
<ItemGroup />
<ItemGroup>
<Projects Include="gtest.cbproj" />
<Projects Include="gtest_main.cbproj" />
<Projects Include="gtest_unittest.cbproj" />
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Default.Personality</Borland.Personality>
<Borland.ProjectType />
<BorlandProject>
<BorlandProject xmlns=""><Default.Personality></Default.Personality></BorlandProject></BorlandProject>
</ProjectExtensions>
<Target Name="gtest">
<MSBuild Projects="gtest.cbproj" Targets="" />
</Target>
<Target Name="gtest:Clean">
<MSBuild Projects="gtest.cbproj" Targets="Clean" />
</Target>
<Target Name="gtest:Make">
<MSBuild Projects="gtest.cbproj" Targets="Make" />
</Target>
<Target Name="gtest_main">
<MSBuild Projects="gtest_main.cbproj" Targets="" />
</Target>
<Target Name="gtest_main:Clean">
<MSBuild Projects="gtest_main.cbproj" Targets="Clean" />
</Target>
<Target Name="gtest_main:Make">
<MSBuild Projects="gtest_main.cbproj" Targets="Make" />
</Target>
<Target Name="gtest_unittest">
<MSBuild Projects="gtest_unittest.cbproj" Targets="" />
</Target>
<Target Name="gtest_unittest:Clean">
<MSBuild Projects="gtest_unittest.cbproj" Targets="Clean" />
</Target>
<Target Name="gtest_unittest:Make">
<MSBuild Projects="gtest_unittest.cbproj" Targets="Make" />
</Target>
<Target Name="Build">
<CallTarget Targets="gtest;gtest_main;gtest_unittest" />
</Target>
<Target Name="Clean">
<CallTarget Targets="gtest:Clean;gtest_main:Clean;gtest_unittest:Clean" />
</Target>
<Target Name="Make">
<CallTarget Targets="gtest:Make;gtest_main:Make;gtest_unittest:Make" />
</Target>
<Import Condition="Exists('$(MSBuildBinPath)\Borland.Group.Targets')" Project="$(MSBuildBinPath)\Borland.Group.Targets" />
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{c1d923e0-6cba-4332-9b6f-3420acbf5091}</ProjectGuid>
</PropertyGroup>
<ItemGroup />
<ItemGroup>
<Projects Include="gtest.cbproj" />
<Projects Include="gtest_main.cbproj" />
<Projects Include="gtest_unittest.cbproj" />
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Default.Personality</Borland.Personality>
<Borland.ProjectType />
<BorlandProject>
<BorlandProject xmlns=""><Default.Personality></Default.Personality></BorlandProject></BorlandProject>
</ProjectExtensions>
<Target Name="gtest">
<MSBuild Projects="gtest.cbproj" Targets="" />
</Target>
<Target Name="gtest:Clean">
<MSBuild Projects="gtest.cbproj" Targets="Clean" />
</Target>
<Target Name="gtest:Make">
<MSBuild Projects="gtest.cbproj" Targets="Make" />
</Target>
<Target Name="gtest_main">
<MSBuild Projects="gtest_main.cbproj" Targets="" />
</Target>
<Target Name="gtest_main:Clean">
<MSBuild Projects="gtest_main.cbproj" Targets="Clean" />
</Target>
<Target Name="gtest_main:Make">
<MSBuild Projects="gtest_main.cbproj" Targets="Make" />
</Target>
<Target Name="gtest_unittest">
<MSBuild Projects="gtest_unittest.cbproj" Targets="" />
</Target>
<Target Name="gtest_unittest:Clean">
<MSBuild Projects="gtest_unittest.cbproj" Targets="Clean" />
</Target>
<Target Name="gtest_unittest:Make">
<MSBuild Projects="gtest_unittest.cbproj" Targets="Make" />
</Target>
<Target Name="Build">
<CallTarget Targets="gtest;gtest_main;gtest_unittest" />
</Target>
<Target Name="Clean">
<CallTarget Targets="gtest:Clean;gtest_main:Clean;gtest_unittest:Clean" />
</Target>
<Target Name="Make">
<CallTarget Targets="gtest:Make;gtest_main:Make;gtest_unittest:Make" />
</Target>
<Import Condition="Exists('$(MSBuildBinPath)\Borland.Group.Targets')" Project="$(MSBuildBinPath)\Borland.Group.Targets" />
</Project>
\ No newline at end of file
codegear/gtest_all.cc
View file @
98f62c9c
// Copyright 2009, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Author: Josh Kelley (joshkel@gmail.com)
//
// Google C++ Testing Framework (Google Test)
//
// C++Builder's IDE cannot build a static library from files with hyphens
// in their name. See http://qc.codegear.com/wc/qcmain.aspx?d=70977 .
// This file serves as a workaround.
#include "src/gtest-all.cc"
// Copyright 2009, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Author: Josh Kelley (joshkel@gmail.com)
//
// Google C++ Testing Framework (Google Test)
//
// C++Builder's IDE cannot build a static library from files with hyphens
// in their name. See http://qc.codegear.com/wc/qcmain.aspx?d=70977 .
// This file serves as a workaround.
#include "src/gtest-all.cc"
codegear/gtest_link.cc
View file @
98f62c9c
// Copyright 2009, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Author: Josh Kelley (joshkel@gmail.com)
//
// Google C++ Testing Framework (Google Test)
//
// Links gtest.lib and gtest_main.lib into the current project in C++Builder.
// This means that these libraries can't be renamed, but it's the only way to
// ensure that Debug versus Release test builds are linked against the
// appropriate Debug or Release build of the libraries.
#pragma link "gtest.lib"
#pragma link "gtest_main.lib"
// Copyright 2009, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Author: Josh Kelley (joshkel@gmail.com)
//
// Google C++ Testing Framework (Google Test)
//
// Links gtest.lib and gtest_main.lib into the current project in C++Builder.
// This means that these libraries can't be renamed, but it's the only way to
// ensure that Debug versus Release test builds are linked against the
// appropriate Debug or Release build of the libraries.
#pragma link "gtest.lib"
#pragma link "gtest_main.lib"
codegear/gtest_main.cbproj
View file @
98f62c9c
<?xml version="1.0" encoding="utf-8"?>
<Project
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup>
<ProjectGuid>
{bca37a72-5b07-46cf-b44e-89f8e06451a2}
</ProjectGuid>
<Config
Condition=
"'$(Config)'==''"
>
Release
</Config>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Base' or '$(Base)'!=''"
>
<Base>
true
</Base>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Debug' or '$(Cfg_1)'!=''"
>
<Base>
true
</Base>
<Cfg_1>
true
</Cfg_1>
<CfgParent>
Base
</CfgParent>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Release' or '$(Cfg_2)'!=''"
>
<Base>
true
</Base>
<Cfg_2>
true
</Cfg_2>
<CfgParent>
Base
</CfgParent>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Base)'!=''"
>
<BCC_OptimizeForSpeed>
true
</BCC_OptimizeForSpeed>
<OutputExt>
lib
</OutputExt>
<DCC_CBuilderOutput>
JPHNE
</DCC_CBuilderOutput>
<Defines>
NO_STRICT
</Defines>
<DynamicRTL>
true
</DynamicRTL>
<UsePackages>
true
</UsePackages>
<ProjectType>
CppStaticLibrary
</ProjectType>
<BCC_CPPCompileAlways>
true
</BCC_CPPCompileAlways>
<PackageImports>
rtl.bpi;vcl.bpi;bcbie.bpi;vclx.bpi;vclactnband.bpi;xmlrtl.bpi;bcbsmp.bpi;dbrtl.bpi;vcldb.bpi;bdertl.bpi;vcldbx.bpi;dsnap.bpi;dsnapcon.bpi;vclib.bpi;ibxpress.bpi;adortl.bpi;dbxcds.bpi;dbexpress.bpi;DbxCommonDriver.bpi;websnap.bpi;vclie.bpi;webdsnap.bpi;inet.bpi;inetdbbde.bpi;inetdbxpress.bpi;soaprtl.bpi;Rave75VCL.bpi;teeUI.bpi;tee.bpi;teedb.bpi;IndyCore.bpi;IndySystem.bpi;IndyProtocols.bpi;IntrawebDB_90_100.bpi;Intraweb_90_100.bpi;dclZipForged11.bpi;vclZipForged11.bpi;GR32_BDS2006.bpi;GR32_DSGN_BDS2006.bpi;Jcl.bpi;JclVcl.bpi;JvCoreD11R.bpi;JvSystemD11R.bpi;JvStdCtrlsD11R.bpi;JvAppFrmD11R.bpi;JvBandsD11R.bpi;JvDBD11R.bpi;JvDlgsD11R.bpi;JvBDED11R.bpi;JvCmpD11R.bpi;JvCryptD11R.bpi;JvCtrlsD11R.bpi;JvCustomD11R.bpi;JvDockingD11R.bpi;JvDotNetCtrlsD11R.bpi;JvEDID11R.bpi;JvGlobusD11R.bpi;JvHMID11R.bpi;JvInterpreterD11R.bpi;JvJansD11R.bpi;JvManagedThreadsD11R.bpi;JvMMD11R.bpi;JvNetD11R.bpi;JvPageCompsD11R.bpi;JvPluginD11R.bpi;JvPrintPreviewD11R.bpi;JvRuntimeDesignD11R.bpi;JvTimeFrameworkD11R.bpi;JvValidatorsD11R.bpi;JvWizardD11R.bpi;JvXPCtrlsD11R.bpi;VclSmp.bpi;CExceptionExpert11.bpi
</PackageImports>
<BCC_wpar>
false
</BCC_wpar>
<IncludePath>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..
</IncludePath>
<AllPackageLibs>
rtl.lib;vcl.lib
</AllPackageLibs>
<TLIB_PageSize>
32
</TLIB_PageSize>
<ILINK_LibraryPath>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk
</ILINK_LibraryPath>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Cfg_1)'!=''"
>
<BCC_OptimizeForSpeed>
false
</BCC_OptimizeForSpeed>
<DCC_Optimize>
false
</DCC_Optimize>
<DCC_DebugInfoInExe>
true
</DCC_DebugInfoInExe>
<Defines>
_DEBUG;$(Defines)
</Defines>
<ILINK_FullDebugInfo>
true
</ILINK_FullDebugInfo>
<BCC_InlineFunctionExpansion>
false
</BCC_InlineFunctionExpansion>
<ILINK_DisableIncrementalLinking>
true
</ILINK_DisableIncrementalLinking>
<BCC_UseRegisterVariables>
None
</BCC_UseRegisterVariables>
<DCC_Define>
DEBUG
</DCC_Define>
<BCC_DebugLineNumbers>
true
</BCC_DebugLineNumbers>
<IntermediateOutputDir>
Debug
</IntermediateOutputDir>
<TASM_DisplaySourceLines>
true
</TASM_DisplaySourceLines>
<BCC_StackFrames>
true
</BCC_StackFrames>
<BCC_DisableOptimizations>
true
</BCC_DisableOptimizations>
<ILINK_LibraryPath>
$(BDS)\lib\debug;$(ILINK_LibraryPath)
</ILINK_LibraryPath>
<TASM_Debugging>
Full
</TASM_Debugging>
<BCC_SourceDebuggingOn>
true
</BCC_SourceDebuggingOn>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Cfg_2)'!=''"
>
<Defines>
NDEBUG;$(Defines)
</Defines>
<IntermediateOutputDir>
Release
</IntermediateOutputDir>
<ILINK_LibraryPath>
$(BDS)\lib\release;$(ILINK_LibraryPath)
</ILINK_LibraryPath>
<TASM_Debugging>
None
</TASM_Debugging>
</PropertyGroup>
<ProjectExtensions>
<Borland.Personality>
CPlusPlusBuilder.Personality
</Borland.Personality>
<Borland.ProjectType>
CppStaticLibrary
</Borland.ProjectType>
<BorlandProject>
<BorlandProject><CPlusPlusBuilder.Personality><VersionInfo><VersionInfo
Name=
"IncludeVerInfo"
>
False
</VersionInfo><VersionInfo
Name=
"AutoIncBuild"
>
False
</VersionInfo><VersionInfo
Name=
"MajorVer"
>
1
</VersionInfo><VersionInfo
Name=
"MinorVer"
>
0
</VersionInfo><VersionInfo
Name=
"Release"
>
0
</VersionInfo><VersionInfo
Name=
"Build"
>
0
</VersionInfo><VersionInfo
Name=
"Debug"
>
False
</VersionInfo><VersionInfo
Name=
"PreRelease"
>
False
</VersionInfo><VersionInfo
Name=
"Special"
>
False
</VersionInfo><VersionInfo
Name=
"Private"
>
False
</VersionInfo><VersionInfo
Name=
"DLL"
>
False
</VersionInfo><VersionInfo
Name=
"Locale"
>
1033
</VersionInfo><VersionInfo
Name=
"CodePage"
>
1252
</VersionInfo></VersionInfo><VersionInfoKeys><VersionInfoKeys
Name=
"CompanyName"
></VersionInfoKeys><VersionInfoKeys
Name=
"FileDescription"
></VersionInfoKeys><VersionInfoKeys
Name=
"FileVersion"
>
1.0.0.0
</VersionInfoKeys><VersionInfoKeys
Name=
"InternalName"
></VersionInfoKeys><VersionInfoKeys
Name=
"LegalCopyright"
></VersionInfoKeys><VersionInfoKeys
Name=
"LegalTrademarks"
></VersionInfoKeys><VersionInfoKeys
Name=
"OriginalFilename"
></VersionInfoKeys><VersionInfoKeys
Name=
"ProductName"
></VersionInfoKeys><VersionInfoKeys
Name=
"ProductVersion"
>
1.0.0.0
</VersionInfoKeys><VersionInfoKeys
Name=
"Comments"
></VersionInfoKeys></VersionInfoKeys><Debugging><Debugging
Name=
"DebugSourceDirs"
></Debugging></Debugging><Parameters><Parameters
Name=
"RunParams"
></Parameters><Parameters
Name=
"Launcher"
></Parameters><Parameters
Name=
"UseLauncher"
>
False
</Parameters><Parameters
Name=
"DebugCWD"
></Parameters><Parameters
Name=
"HostApplication"
></Parameters><Parameters
Name=
"RemoteHost"
></Parameters><Parameters
Name=
"RemotePath"
></Parameters><Parameters
Name=
"RemoteParams"
></Parameters><Parameters
Name=
"RemoteLauncher"
></Parameters><Parameters
Name=
"UseRemoteLauncher"
>
False
</Parameters><Parameters
Name=
"RemoteCWD"
></Parameters><Parameters
Name=
"RemoteDebug"
>
False
</Parameters><Parameters
Name=
"Debug Symbols Search Path"
></Parameters><Parameters
Name=
"LoadAllSymbols"
>
True
</Parameters><Parameters
Name=
"LoadUnspecifiedSymbols"
>
False
</Parameters></Parameters><Excluded_Packages>
<Excluded_Packages
Name=
"$(BDS)\bin\bcboffice2k100.bpl"
>
CodeGear C++Builder Office 2000 Servers Package
</Excluded_Packages>
<Excluded_Packages
Name=
"$(BDS)\bin\bcbofficexp100.bpl"
>
CodeGear C++Builder Office XP Servers Package
</Excluded_Packages>
</Excluded_Packages><Linker><Linker
Name=
"LibPrefix"
></Linker><Linker
Name=
"LibSuffix"
></Linker><Linker
Name=
"LibVersion"
></Linker></Linker><ProjectProperties><ProjectProperties
Name=
"AutoShowDeps"
>
False
</ProjectProperties><ProjectProperties
Name=
"ManagePaths"
>
True
</ProjectProperties><ProjectProperties
Name=
"VerifyPackages"
>
True
</ProjectProperties></ProjectProperties><HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Count"
>
3
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item0"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item1"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item2"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\src;..\include
</HistoryLists_hlIncludePath></HistoryLists_hlIncludePath><HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Count"
>
1
</HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Item0"
>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk
</HistoryLists_hlILINK_LibraryPath></HistoryLists_hlILINK_LibraryPath><HistoryLists_hlDefines><HistoryLists_hlDefines
Name=
"Count"
>
1
</HistoryLists_hlDefines><HistoryLists_hlDefines
Name=
"Item0"
>
NO_STRICT
</HistoryLists_hlDefines></HistoryLists_hlDefines><HistoryLists_hlTLIB_PageSize><HistoryLists_hlTLIB_PageSize
Name=
"Count"
>
1
</HistoryLists_hlTLIB_PageSize><HistoryLists_hlTLIB_PageSize
Name=
"Item0"
>
32
</HistoryLists_hlTLIB_PageSize><HistoryLists_hlTLIB_PageSize
Name=
"Item1"
>
16
</HistoryLists_hlTLIB_PageSize></HistoryLists_hlTLIB_PageSize></CPlusPlusBuilder.Personality></BorlandProject></BorlandProject>
</ProjectExtensions>
<Import
Project=
"$(MSBuildBinPath)\Borland.Cpp.Targets"
/>
<ItemGroup>
<CppCompile
Include=
"..\src\gtest_main.cc"
>
<BuildOrder>
0
</BuildOrder>
</CppCompile>
<BuildConfiguration
Include=
"Debug"
>
<Key>
Cfg_1
</Key>
</BuildConfiguration>
<BuildConfiguration
Include=
"Release"
>
<Key>
Cfg_2
</Key>
</BuildConfiguration>
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<Project
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup>
<ProjectGuid>
{bca37a72-5b07-46cf-b44e-89f8e06451a2}
</ProjectGuid>
<Config
Condition=
"'$(Config)'==''"
>
Release
</Config>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Base' or '$(Base)'!=''"
>
<Base>
true
</Base>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Debug' or '$(Cfg_1)'!=''"
>
<Base>
true
</Base>
<Cfg_1>
true
</Cfg_1>
<CfgParent>
Base
</CfgParent>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Release' or '$(Cfg_2)'!=''"
>
<Base>
true
</Base>
<Cfg_2>
true
</Cfg_2>
<CfgParent>
Base
</CfgParent>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Base)'!=''"
>
<BCC_OptimizeForSpeed>
true
</BCC_OptimizeForSpeed>
<OutputExt>
lib
</OutputExt>
<DCC_CBuilderOutput>
JPHNE
</DCC_CBuilderOutput>
<Defines>
NO_STRICT
</Defines>
<DynamicRTL>
true
</DynamicRTL>
<UsePackages>
true
</UsePackages>
<ProjectType>
CppStaticLibrary
</ProjectType>
<BCC_CPPCompileAlways>
true
</BCC_CPPCompileAlways>
<PackageImports>
rtl.bpi;vcl.bpi;bcbie.bpi;vclx.bpi;vclactnband.bpi;xmlrtl.bpi;bcbsmp.bpi;dbrtl.bpi;vcldb.bpi;bdertl.bpi;vcldbx.bpi;dsnap.bpi;dsnapcon.bpi;vclib.bpi;ibxpress.bpi;adortl.bpi;dbxcds.bpi;dbexpress.bpi;DbxCommonDriver.bpi;websnap.bpi;vclie.bpi;webdsnap.bpi;inet.bpi;inetdbbde.bpi;inetdbxpress.bpi;soaprtl.bpi;Rave75VCL.bpi;teeUI.bpi;tee.bpi;teedb.bpi;IndyCore.bpi;IndySystem.bpi;IndyProtocols.bpi;IntrawebDB_90_100.bpi;Intraweb_90_100.bpi;dclZipForged11.bpi;vclZipForged11.bpi;GR32_BDS2006.bpi;GR32_DSGN_BDS2006.bpi;Jcl.bpi;JclVcl.bpi;JvCoreD11R.bpi;JvSystemD11R.bpi;JvStdCtrlsD11R.bpi;JvAppFrmD11R.bpi;JvBandsD11R.bpi;JvDBD11R.bpi;JvDlgsD11R.bpi;JvBDED11R.bpi;JvCmpD11R.bpi;JvCryptD11R.bpi;JvCtrlsD11R.bpi;JvCustomD11R.bpi;JvDockingD11R.bpi;JvDotNetCtrlsD11R.bpi;JvEDID11R.bpi;JvGlobusD11R.bpi;JvHMID11R.bpi;JvInterpreterD11R.bpi;JvJansD11R.bpi;JvManagedThreadsD11R.bpi;JvMMD11R.bpi;JvNetD11R.bpi;JvPageCompsD11R.bpi;JvPluginD11R.bpi;JvPrintPreviewD11R.bpi;JvRuntimeDesignD11R.bpi;JvTimeFrameworkD11R.bpi;JvValidatorsD11R.bpi;JvWizardD11R.bpi;JvXPCtrlsD11R.bpi;VclSmp.bpi;CExceptionExpert11.bpi
</PackageImports>
<BCC_wpar>
false
</BCC_wpar>
<IncludePath>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..
</IncludePath>
<AllPackageLibs>
rtl.lib;vcl.lib
</AllPackageLibs>
<TLIB_PageSize>
32
</TLIB_PageSize>
<ILINK_LibraryPath>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk
</ILINK_LibraryPath>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Cfg_1)'!=''"
>
<BCC_OptimizeForSpeed>
false
</BCC_OptimizeForSpeed>
<DCC_Optimize>
false
</DCC_Optimize>
<DCC_DebugInfoInExe>
true
</DCC_DebugInfoInExe>
<Defines>
_DEBUG;$(Defines)
</Defines>
<ILINK_FullDebugInfo>
true
</ILINK_FullDebugInfo>
<BCC_InlineFunctionExpansion>
false
</BCC_InlineFunctionExpansion>
<ILINK_DisableIncrementalLinking>
true
</ILINK_DisableIncrementalLinking>
<BCC_UseRegisterVariables>
None
</BCC_UseRegisterVariables>
<DCC_Define>
DEBUG
</DCC_Define>
<BCC_DebugLineNumbers>
true
</BCC_DebugLineNumbers>
<IntermediateOutputDir>
Debug
</IntermediateOutputDir>
<TASM_DisplaySourceLines>
true
</TASM_DisplaySourceLines>
<BCC_StackFrames>
true
</BCC_StackFrames>
<BCC_DisableOptimizations>
true
</BCC_DisableOptimizations>
<ILINK_LibraryPath>
$(BDS)\lib\debug;$(ILINK_LibraryPath)
</ILINK_LibraryPath>
<TASM_Debugging>
Full
</TASM_Debugging>
<BCC_SourceDebuggingOn>
true
</BCC_SourceDebuggingOn>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Cfg_2)'!=''"
>
<Defines>
NDEBUG;$(Defines)
</Defines>
<IntermediateOutputDir>
Release
</IntermediateOutputDir>
<ILINK_LibraryPath>
$(BDS)\lib\release;$(ILINK_LibraryPath)
</ILINK_LibraryPath>
<TASM_Debugging>
None
</TASM_Debugging>
</PropertyGroup>
<ProjectExtensions>
<Borland.Personality>
CPlusPlusBuilder.Personality
</Borland.Personality>
<Borland.ProjectType>
CppStaticLibrary
</Borland.ProjectType>
<BorlandProject>
<BorlandProject><CPlusPlusBuilder.Personality><VersionInfo><VersionInfo
Name=
"IncludeVerInfo"
>
False
</VersionInfo><VersionInfo
Name=
"AutoIncBuild"
>
False
</VersionInfo><VersionInfo
Name=
"MajorVer"
>
1
</VersionInfo><VersionInfo
Name=
"MinorVer"
>
0
</VersionInfo><VersionInfo
Name=
"Release"
>
0
</VersionInfo><VersionInfo
Name=
"Build"
>
0
</VersionInfo><VersionInfo
Name=
"Debug"
>
False
</VersionInfo><VersionInfo
Name=
"PreRelease"
>
False
</VersionInfo><VersionInfo
Name=
"Special"
>
False
</VersionInfo><VersionInfo
Name=
"Private"
>
False
</VersionInfo><VersionInfo
Name=
"DLL"
>
False
</VersionInfo><VersionInfo
Name=
"Locale"
>
1033
</VersionInfo><VersionInfo
Name=
"CodePage"
>
1252
</VersionInfo></VersionInfo><VersionInfoKeys><VersionInfoKeys
Name=
"CompanyName"
></VersionInfoKeys><VersionInfoKeys
Name=
"FileDescription"
></VersionInfoKeys><VersionInfoKeys
Name=
"FileVersion"
>
1.0.0.0
</VersionInfoKeys><VersionInfoKeys
Name=
"InternalName"
></VersionInfoKeys><VersionInfoKeys
Name=
"LegalCopyright"
></VersionInfoKeys><VersionInfoKeys
Name=
"LegalTrademarks"
></VersionInfoKeys><VersionInfoKeys
Name=
"OriginalFilename"
></VersionInfoKeys><VersionInfoKeys
Name=
"ProductName"
></VersionInfoKeys><VersionInfoKeys
Name=
"ProductVersion"
>
1.0.0.0
</VersionInfoKeys><VersionInfoKeys
Name=
"Comments"
></VersionInfoKeys></VersionInfoKeys><Debugging><Debugging
Name=
"DebugSourceDirs"
></Debugging></Debugging><Parameters><Parameters
Name=
"RunParams"
></Parameters><Parameters
Name=
"Launcher"
></Parameters><Parameters
Name=
"UseLauncher"
>
False
</Parameters><Parameters
Name=
"DebugCWD"
></Parameters><Parameters
Name=
"HostApplication"
></Parameters><Parameters
Name=
"RemoteHost"
></Parameters><Parameters
Name=
"RemotePath"
></Parameters><Parameters
Name=
"RemoteParams"
></Parameters><Parameters
Name=
"RemoteLauncher"
></Parameters><Parameters
Name=
"UseRemoteLauncher"
>
False
</Parameters><Parameters
Name=
"RemoteCWD"
></Parameters><Parameters
Name=
"RemoteDebug"
>
False
</Parameters><Parameters
Name=
"Debug Symbols Search Path"
></Parameters><Parameters
Name=
"LoadAllSymbols"
>
True
</Parameters><Parameters
Name=
"LoadUnspecifiedSymbols"
>
False
</Parameters></Parameters><Excluded_Packages>
<Excluded_Packages
Name=
"$(BDS)\bin\bcboffice2k100.bpl"
>
CodeGear C++Builder Office 2000 Servers Package
</Excluded_Packages>
<Excluded_Packages
Name=
"$(BDS)\bin\bcbofficexp100.bpl"
>
CodeGear C++Builder Office XP Servers Package
</Excluded_Packages>
</Excluded_Packages><Linker><Linker
Name=
"LibPrefix"
></Linker><Linker
Name=
"LibSuffix"
></Linker><Linker
Name=
"LibVersion"
></Linker></Linker><ProjectProperties><ProjectProperties
Name=
"AutoShowDeps"
>
False
</ProjectProperties><ProjectProperties
Name=
"ManagePaths"
>
True
</ProjectProperties><ProjectProperties
Name=
"VerifyPackages"
>
True
</ProjectProperties></ProjectProperties><HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Count"
>
3
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item0"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item1"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item2"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\src;..\include
</HistoryLists_hlIncludePath></HistoryLists_hlIncludePath><HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Count"
>
1
</HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Item0"
>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk
</HistoryLists_hlILINK_LibraryPath></HistoryLists_hlILINK_LibraryPath><HistoryLists_hlDefines><HistoryLists_hlDefines
Name=
"Count"
>
1
</HistoryLists_hlDefines><HistoryLists_hlDefines
Name=
"Item0"
>
NO_STRICT
</HistoryLists_hlDefines></HistoryLists_hlDefines><HistoryLists_hlTLIB_PageSize><HistoryLists_hlTLIB_PageSize
Name=
"Count"
>
1
</HistoryLists_hlTLIB_PageSize><HistoryLists_hlTLIB_PageSize
Name=
"Item0"
>
32
</HistoryLists_hlTLIB_PageSize><HistoryLists_hlTLIB_PageSize
Name=
"Item1"
>
16
</HistoryLists_hlTLIB_PageSize></HistoryLists_hlTLIB_PageSize></CPlusPlusBuilder.Personality></BorlandProject></BorlandProject>
</ProjectExtensions>
<Import
Project=
"$(MSBuildBinPath)\Borland.Cpp.Targets"
/>
<ItemGroup>
<CppCompile
Include=
"..\src\gtest_main.cc"
>
<BuildOrder>
0
</BuildOrder>
</CppCompile>
<BuildConfiguration
Include=
"Debug"
>
<Key>
Cfg_1
</Key>
</BuildConfiguration>
<BuildConfiguration
Include=
"Release"
>
<Key>
Cfg_2
</Key>
</BuildConfiguration>
</ItemGroup>
</Project>
codegear/gtest_unittest.cbproj
View file @
98f62c9c
<?xml version="1.0" encoding="utf-8"?>
<Project
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup>
<ProjectGuid>
{eea63393-5ac5-4b9c-8909-d75fef2daa41}
</ProjectGuid>
<Config
Condition=
"'$(Config)'==''"
>
Release
</Config>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Base' or '$(Base)'!=''"
>
<Base>
true
</Base>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Debug' or '$(Cfg_1)'!=''"
>
<Base>
true
</Base>
<Cfg_1>
true
</Cfg_1>
<CfgParent>
Base
</CfgParent>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Release' or '$(Cfg_2)'!=''"
>
<Base>
true
</Base>
<Cfg_2>
true
</Cfg_2>
<CfgParent>
Base
</CfgParent>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Base)'!=''"
>
<OutputExt>
exe
</OutputExt>
<BCC_OptimizeForSpeed>
true
</BCC_OptimizeForSpeed>
<Defines>
NO_STRICT
</Defines>
<DCC_CBuilderOutput>
JPHNE
</DCC_CBuilderOutput>
<DynamicRTL>
true
</DynamicRTL>
<ILINK_ObjectSearchPath>
..\test
</ILINK_ObjectSearchPath>
<UsePackages>
true
</UsePackages>
<ProjectType>
CppConsoleApplication
</ProjectType>
<NoVCL>
true
</NoVCL>
<BCC_CPPCompileAlways>
true
</BCC_CPPCompileAlways>
<PackageImports>
rtl.bpi;vcl.bpi;bcbie.bpi;vclx.bpi;vclactnband.bpi;xmlrtl.bpi;bcbsmp.bpi;dbrtl.bpi;vcldb.bpi;bdertl.bpi;vcldbx.bpi;dsnap.bpi;dsnapcon.bpi;vclib.bpi;ibxpress.bpi;adortl.bpi;dbxcds.bpi;dbexpress.bpi;DbxCommonDriver.bpi;websnap.bpi;vclie.bpi;webdsnap.bpi;inet.bpi;inetdbbde.bpi;inetdbxpress.bpi;soaprtl.bpi;Rave75VCL.bpi;teeUI.bpi;tee.bpi;teedb.bpi;IndyCore.bpi;IndySystem.bpi;IndyProtocols.bpi;IntrawebDB_90_100.bpi;Intraweb_90_100.bpi;Jcl.bpi;JclVcl.bpi;JvCoreD11R.bpi;JvSystemD11R.bpi;JvStdCtrlsD11R.bpi;JvAppFrmD11R.bpi;JvBandsD11R.bpi;JvDBD11R.bpi;JvDlgsD11R.bpi;JvBDED11R.bpi;JvCmpD11R.bpi;JvCryptD11R.bpi;JvCtrlsD11R.bpi;JvCustomD11R.bpi;JvDockingD11R.bpi;JvDotNetCtrlsD11R.bpi;JvEDID11R.bpi;JvGlobusD11R.bpi;JvHMID11R.bpi;JvInterpreterD11R.bpi;JvJansD11R.bpi;JvManagedThreadsD11R.bpi;JvMMD11R.bpi;JvNetD11R.bpi;JvPageCompsD11R.bpi;JvPluginD11R.bpi;JvPrintPreviewD11R.bpi;JvRuntimeDesignD11R.bpi;JvTimeFrameworkD11R.bpi;JvValidatorsD11R.bpi;JvWizardD11R.bpi;JvXPCtrlsD11R.bpi;VclSmp.bpi
</PackageImports>
<BCC_wpar>
false
</BCC_wpar>
<IncludePath>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test;..
</IncludePath>
<ILINK_LibraryPath>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test
</ILINK_LibraryPath>
<Multithreaded>
true
</Multithreaded>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Cfg_1)'!=''"
>
<BCC_OptimizeForSpeed>
false
</BCC_OptimizeForSpeed>
<DCC_Optimize>
false
</DCC_Optimize>
<DCC_DebugInfoInExe>
true
</DCC_DebugInfoInExe>
<Defines>
_DEBUG;$(Defines)
</Defines>
<ILINK_FullDebugInfo>
true
</ILINK_FullDebugInfo>
<BCC_InlineFunctionExpansion>
false
</BCC_InlineFunctionExpansion>
<ILINK_DisableIncrementalLinking>
true
</ILINK_DisableIncrementalLinking>
<BCC_UseRegisterVariables>
None
</BCC_UseRegisterVariables>
<DCC_Define>
DEBUG
</DCC_Define>
<BCC_DebugLineNumbers>
true
</BCC_DebugLineNumbers>
<IntermediateOutputDir>
Debug
</IntermediateOutputDir>
<TASM_DisplaySourceLines>
true
</TASM_DisplaySourceLines>
<BCC_StackFrames>
true
</BCC_StackFrames>
<BCC_DisableOptimizations>
true
</BCC_DisableOptimizations>
<ILINK_LibraryPath>
$(BDS)\lib\debug;$(ILINK_LibraryPath)
</ILINK_LibraryPath>
<TASM_Debugging>
Full
</TASM_Debugging>
<BCC_SourceDebuggingOn>
true
</BCC_SourceDebuggingOn>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Cfg_2)'!=''"
>
<Defines>
NDEBUG;$(Defines)
</Defines>
<IntermediateOutputDir>
Release
</IntermediateOutputDir>
<ILINK_LibraryPath>
$(BDS)\lib\release;$(ILINK_LibraryPath)
</ILINK_LibraryPath>
<TASM_Debugging>
None
</TASM_Debugging>
</PropertyGroup>
<ProjectExtensions>
<Borland.Personality>
CPlusPlusBuilder.Personality
</Borland.Personality>
<Borland.ProjectType>
CppConsoleApplication
</Borland.ProjectType>
<BorlandProject>
<BorlandProject><CPlusPlusBuilder.Personality><VersionInfo><VersionInfo
Name=
"IncludeVerInfo"
>
False
</VersionInfo><VersionInfo
Name=
"AutoIncBuild"
>
False
</VersionInfo><VersionInfo
Name=
"MajorVer"
>
1
</VersionInfo><VersionInfo
Name=
"MinorVer"
>
0
</VersionInfo><VersionInfo
Name=
"Release"
>
0
</VersionInfo><VersionInfo
Name=
"Build"
>
0
</VersionInfo><VersionInfo
Name=
"Debug"
>
False
</VersionInfo><VersionInfo
Name=
"PreRelease"
>
False
</VersionInfo><VersionInfo
Name=
"Special"
>
False
</VersionInfo><VersionInfo
Name=
"Private"
>
False
</VersionInfo><VersionInfo
Name=
"DLL"
>
False
</VersionInfo><VersionInfo
Name=
"Locale"
>
1033
</VersionInfo><VersionInfo
Name=
"CodePage"
>
1252
</VersionInfo></VersionInfo><VersionInfoKeys><VersionInfoKeys
Name=
"CompanyName"
></VersionInfoKeys><VersionInfoKeys
Name=
"FileDescription"
></VersionInfoKeys><VersionInfoKeys
Name=
"FileVersion"
>
1.0.0.0
</VersionInfoKeys><VersionInfoKeys
Name=
"InternalName"
></VersionInfoKeys><VersionInfoKeys
Name=
"LegalCopyright"
></VersionInfoKeys><VersionInfoKeys
Name=
"LegalTrademarks"
></VersionInfoKeys><VersionInfoKeys
Name=
"OriginalFilename"
></VersionInfoKeys><VersionInfoKeys
Name=
"ProductName"
></VersionInfoKeys><VersionInfoKeys
Name=
"ProductVersion"
>
1.0.0.0
</VersionInfoKeys><VersionInfoKeys
Name=
"Comments"
></VersionInfoKeys></VersionInfoKeys><Debugging><Debugging
Name=
"DebugSourceDirs"
></Debugging></Debugging><Parameters><Parameters
Name=
"RunParams"
></Parameters><Parameters
Name=
"Launcher"
></Parameters><Parameters
Name=
"UseLauncher"
>
False
</Parameters><Parameters
Name=
"DebugCWD"
></Parameters><Parameters
Name=
"HostApplication"
></Parameters><Parameters
Name=
"RemoteHost"
></Parameters><Parameters
Name=
"RemotePath"
></Parameters><Parameters
Name=
"RemoteParams"
></Parameters><Parameters
Name=
"RemoteLauncher"
></Parameters><Parameters
Name=
"UseRemoteLauncher"
>
False
</Parameters><Parameters
Name=
"RemoteCWD"
></Parameters><Parameters
Name=
"RemoteDebug"
>
False
</Parameters><Parameters
Name=
"Debug Symbols Search Path"
></Parameters><Parameters
Name=
"LoadAllSymbols"
>
True
</Parameters><Parameters
Name=
"LoadUnspecifiedSymbols"
>
False
</Parameters></Parameters><Excluded_Packages>
<Excluded_Packages
Name=
"$(BDS)\bin\bcboffice2k100.bpl"
>
CodeGear C++Builder Office 2000 Servers Package
</Excluded_Packages>
<Excluded_Packages
Name=
"$(BDS)\bin\bcbofficexp100.bpl"
>
CodeGear C++Builder Office XP Servers Package
</Excluded_Packages>
</Excluded_Packages><Linker><Linker
Name=
"LibPrefix"
></Linker><Linker
Name=
"LibSuffix"
></Linker><Linker
Name=
"LibVersion"
></Linker></Linker><ProjectProperties><ProjectProperties
Name=
"AutoShowDeps"
>
False
</ProjectProperties><ProjectProperties
Name=
"ManagePaths"
>
True
</ProjectProperties><ProjectProperties
Name=
"VerifyPackages"
>
True
</ProjectProperties></ProjectProperties><HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Count"
>
3
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item0"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test;..
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item1"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item2"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include
</HistoryLists_hlIncludePath></HistoryLists_hlIncludePath><HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Count"
>
1
</HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Item0"
>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test
</HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Item1"
>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test
</HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Item2"
>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;$(OUTPUTDIR);..\test
</HistoryLists_hlILINK_LibraryPath></HistoryLists_hlILINK_LibraryPath><HistoryLists_hlDefines><HistoryLists_hlDefines
Name=
"Count"
>
2
</HistoryLists_hlDefines><HistoryLists_hlDefines
Name=
"Item0"
>
NO_STRICT
</HistoryLists_hlDefines><HistoryLists_hlDefines
Name=
"Item1"
>
STRICT
</HistoryLists_hlDefines></HistoryLists_hlDefines></CPlusPlusBuilder.Personality></BorlandProject></BorlandProject>
</ProjectExtensions>
<Import
Project=
"$(MSBuildBinPath)\Borland.Cpp.Targets"
/>
<ItemGroup>
<CppCompile
Include=
"..\test\gtest_unittest.cc"
>
<BuildOrder>
0
</BuildOrder>
</CppCompile>
<CppCompile
Include=
"gtest_link.cc"
>
<BuildOrder>
1
</BuildOrder>
</CppCompile>
<BuildConfiguration
Include=
"Debug"
>
<Key>
Cfg_1
</Key>
</BuildConfiguration>
<BuildConfiguration
Include=
"Release"
>
<Key>
Cfg_2
</Key>
</BuildConfiguration>
</ItemGroup>
<?xml version="1.0" encoding="utf-8"?>
<Project
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup>
<ProjectGuid>
{eea63393-5ac5-4b9c-8909-d75fef2daa41}
</ProjectGuid>
<Config
Condition=
"'$(Config)'==''"
>
Release
</Config>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Base' or '$(Base)'!=''"
>
<Base>
true
</Base>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Debug' or '$(Cfg_1)'!=''"
>
<Base>
true
</Base>
<Cfg_1>
true
</Cfg_1>
<CfgParent>
Base
</CfgParent>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Config)'=='Release' or '$(Cfg_2)'!=''"
>
<Base>
true
</Base>
<Cfg_2>
true
</Cfg_2>
<CfgParent>
Base
</CfgParent>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Base)'!=''"
>
<OutputExt>
exe
</OutputExt>
<BCC_OptimizeForSpeed>
true
</BCC_OptimizeForSpeed>
<Defines>
NO_STRICT
</Defines>
<DCC_CBuilderOutput>
JPHNE
</DCC_CBuilderOutput>
<DynamicRTL>
true
</DynamicRTL>
<ILINK_ObjectSearchPath>
..\test
</ILINK_ObjectSearchPath>
<UsePackages>
true
</UsePackages>
<ProjectType>
CppConsoleApplication
</ProjectType>
<NoVCL>
true
</NoVCL>
<BCC_CPPCompileAlways>
true
</BCC_CPPCompileAlways>
<PackageImports>
rtl.bpi;vcl.bpi;bcbie.bpi;vclx.bpi;vclactnband.bpi;xmlrtl.bpi;bcbsmp.bpi;dbrtl.bpi;vcldb.bpi;bdertl.bpi;vcldbx.bpi;dsnap.bpi;dsnapcon.bpi;vclib.bpi;ibxpress.bpi;adortl.bpi;dbxcds.bpi;dbexpress.bpi;DbxCommonDriver.bpi;websnap.bpi;vclie.bpi;webdsnap.bpi;inet.bpi;inetdbbde.bpi;inetdbxpress.bpi;soaprtl.bpi;Rave75VCL.bpi;teeUI.bpi;tee.bpi;teedb.bpi;IndyCore.bpi;IndySystem.bpi;IndyProtocols.bpi;IntrawebDB_90_100.bpi;Intraweb_90_100.bpi;Jcl.bpi;JclVcl.bpi;JvCoreD11R.bpi;JvSystemD11R.bpi;JvStdCtrlsD11R.bpi;JvAppFrmD11R.bpi;JvBandsD11R.bpi;JvDBD11R.bpi;JvDlgsD11R.bpi;JvBDED11R.bpi;JvCmpD11R.bpi;JvCryptD11R.bpi;JvCtrlsD11R.bpi;JvCustomD11R.bpi;JvDockingD11R.bpi;JvDotNetCtrlsD11R.bpi;JvEDID11R.bpi;JvGlobusD11R.bpi;JvHMID11R.bpi;JvInterpreterD11R.bpi;JvJansD11R.bpi;JvManagedThreadsD11R.bpi;JvMMD11R.bpi;JvNetD11R.bpi;JvPageCompsD11R.bpi;JvPluginD11R.bpi;JvPrintPreviewD11R.bpi;JvRuntimeDesignD11R.bpi;JvTimeFrameworkD11R.bpi;JvValidatorsD11R.bpi;JvWizardD11R.bpi;JvXPCtrlsD11R.bpi;VclSmp.bpi
</PackageImports>
<BCC_wpar>
false
</BCC_wpar>
<IncludePath>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test;..
</IncludePath>
<ILINK_LibraryPath>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test
</ILINK_LibraryPath>
<Multithreaded>
true
</Multithreaded>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Cfg_1)'!=''"
>
<BCC_OptimizeForSpeed>
false
</BCC_OptimizeForSpeed>
<DCC_Optimize>
false
</DCC_Optimize>
<DCC_DebugInfoInExe>
true
</DCC_DebugInfoInExe>
<Defines>
_DEBUG;$(Defines)
</Defines>
<ILINK_FullDebugInfo>
true
</ILINK_FullDebugInfo>
<BCC_InlineFunctionExpansion>
false
</BCC_InlineFunctionExpansion>
<ILINK_DisableIncrementalLinking>
true
</ILINK_DisableIncrementalLinking>
<BCC_UseRegisterVariables>
None
</BCC_UseRegisterVariables>
<DCC_Define>
DEBUG
</DCC_Define>
<BCC_DebugLineNumbers>
true
</BCC_DebugLineNumbers>
<IntermediateOutputDir>
Debug
</IntermediateOutputDir>
<TASM_DisplaySourceLines>
true
</TASM_DisplaySourceLines>
<BCC_StackFrames>
true
</BCC_StackFrames>
<BCC_DisableOptimizations>
true
</BCC_DisableOptimizations>
<ILINK_LibraryPath>
$(BDS)\lib\debug;$(ILINK_LibraryPath)
</ILINK_LibraryPath>
<TASM_Debugging>
Full
</TASM_Debugging>
<BCC_SourceDebuggingOn>
true
</BCC_SourceDebuggingOn>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Cfg_2)'!=''"
>
<Defines>
NDEBUG;$(Defines)
</Defines>
<IntermediateOutputDir>
Release
</IntermediateOutputDir>
<ILINK_LibraryPath>
$(BDS)\lib\release;$(ILINK_LibraryPath)
</ILINK_LibraryPath>
<TASM_Debugging>
None
</TASM_Debugging>
</PropertyGroup>
<ProjectExtensions>
<Borland.Personality>
CPlusPlusBuilder.Personality
</Borland.Personality>
<Borland.ProjectType>
CppConsoleApplication
</Borland.ProjectType>
<BorlandProject>
<BorlandProject><CPlusPlusBuilder.Personality><VersionInfo><VersionInfo
Name=
"IncludeVerInfo"
>
False
</VersionInfo><VersionInfo
Name=
"AutoIncBuild"
>
False
</VersionInfo><VersionInfo
Name=
"MajorVer"
>
1
</VersionInfo><VersionInfo
Name=
"MinorVer"
>
0
</VersionInfo><VersionInfo
Name=
"Release"
>
0
</VersionInfo><VersionInfo
Name=
"Build"
>
0
</VersionInfo><VersionInfo
Name=
"Debug"
>
False
</VersionInfo><VersionInfo
Name=
"PreRelease"
>
False
</VersionInfo><VersionInfo
Name=
"Special"
>
False
</VersionInfo><VersionInfo
Name=
"Private"
>
False
</VersionInfo><VersionInfo
Name=
"DLL"
>
False
</VersionInfo><VersionInfo
Name=
"Locale"
>
1033
</VersionInfo><VersionInfo
Name=
"CodePage"
>
1252
</VersionInfo></VersionInfo><VersionInfoKeys><VersionInfoKeys
Name=
"CompanyName"
></VersionInfoKeys><VersionInfoKeys
Name=
"FileDescription"
></VersionInfoKeys><VersionInfoKeys
Name=
"FileVersion"
>
1.0.0.0
</VersionInfoKeys><VersionInfoKeys
Name=
"InternalName"
></VersionInfoKeys><VersionInfoKeys
Name=
"LegalCopyright"
></VersionInfoKeys><VersionInfoKeys
Name=
"LegalTrademarks"
></VersionInfoKeys><VersionInfoKeys
Name=
"OriginalFilename"
></VersionInfoKeys><VersionInfoKeys
Name=
"ProductName"
></VersionInfoKeys><VersionInfoKeys
Name=
"ProductVersion"
>
1.0.0.0
</VersionInfoKeys><VersionInfoKeys
Name=
"Comments"
></VersionInfoKeys></VersionInfoKeys><Debugging><Debugging
Name=
"DebugSourceDirs"
></Debugging></Debugging><Parameters><Parameters
Name=
"RunParams"
></Parameters><Parameters
Name=
"Launcher"
></Parameters><Parameters
Name=
"UseLauncher"
>
False
</Parameters><Parameters
Name=
"DebugCWD"
></Parameters><Parameters
Name=
"HostApplication"
></Parameters><Parameters
Name=
"RemoteHost"
></Parameters><Parameters
Name=
"RemotePath"
></Parameters><Parameters
Name=
"RemoteParams"
></Parameters><Parameters
Name=
"RemoteLauncher"
></Parameters><Parameters
Name=
"UseRemoteLauncher"
>
False
</Parameters><Parameters
Name=
"RemoteCWD"
></Parameters><Parameters
Name=
"RemoteDebug"
>
False
</Parameters><Parameters
Name=
"Debug Symbols Search Path"
></Parameters><Parameters
Name=
"LoadAllSymbols"
>
True
</Parameters><Parameters
Name=
"LoadUnspecifiedSymbols"
>
False
</Parameters></Parameters><Excluded_Packages>
<Excluded_Packages
Name=
"$(BDS)\bin\bcboffice2k100.bpl"
>
CodeGear C++Builder Office 2000 Servers Package
</Excluded_Packages>
<Excluded_Packages
Name=
"$(BDS)\bin\bcbofficexp100.bpl"
>
CodeGear C++Builder Office XP Servers Package
</Excluded_Packages>
</Excluded_Packages><Linker><Linker
Name=
"LibPrefix"
></Linker><Linker
Name=
"LibSuffix"
></Linker><Linker
Name=
"LibVersion"
></Linker></Linker><ProjectProperties><ProjectProperties
Name=
"AutoShowDeps"
>
False
</ProjectProperties><ProjectProperties
Name=
"ManagePaths"
>
True
</ProjectProperties><ProjectProperties
Name=
"VerifyPackages"
>
True
</ProjectProperties></ProjectProperties><HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Count"
>
3
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item0"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test;..
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item1"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test
</HistoryLists_hlIncludePath><HistoryLists_hlIncludePath
Name=
"Item2"
>
$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include
</HistoryLists_hlIncludePath></HistoryLists_hlIncludePath><HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Count"
>
1
</HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Item0"
>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test
</HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Item1"
>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test
</HistoryLists_hlILINK_LibraryPath><HistoryLists_hlILINK_LibraryPath
Name=
"Item2"
>
$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;$(OUTPUTDIR);..\test
</HistoryLists_hlILINK_LibraryPath></HistoryLists_hlILINK_LibraryPath><HistoryLists_hlDefines><HistoryLists_hlDefines
Name=
"Count"
>
2
</HistoryLists_hlDefines><HistoryLists_hlDefines
Name=
"Item0"
>
NO_STRICT
</HistoryLists_hlDefines><HistoryLists_hlDefines
Name=
"Item1"
>
STRICT
</HistoryLists_hlDefines></HistoryLists_hlDefines></CPlusPlusBuilder.Personality></BorlandProject></BorlandProject>
</ProjectExtensions>
<Import
Project=
"$(MSBuildBinPath)\Borland.Cpp.Targets"
/>
<ItemGroup>
<CppCompile
Include=
"..\test\gtest_unittest.cc"
>
<BuildOrder>
0
</BuildOrder>
</CppCompile>
<CppCompile
Include=
"gtest_link.cc"
>
<BuildOrder>
1
</BuildOrder>
</CppCompile>
<BuildConfiguration
Include=
"Debug"
>
<Key>
Cfg_1
</Key>
</BuildConfiguration>
<BuildConfiguration
Include=
"Release"
>
<Key>
Cfg_2
</Key>
</BuildConfiguration>
</ItemGroup>
</Project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment