-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support to create TLog files for C++ projects
- Loading branch information
Showing
18 changed files
with
148 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,47 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Copyright (c) 2009-2016 ZeroC, Inc. All rights reserved. --> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- if ICE_HOME is set and IceHome is not set we set IceHome to ICE_HOME | ||
this will be later used to load settings from the Ice distribution pointed | ||
by IceHome --> | ||
<PropertyGroup Label="IceHome" Condition="'$(IceHome)' == ''"> | ||
<IceHome>$(ICE_HOME)</IceHome> | ||
</PropertyGroup> | ||
<!-- | ||
If ICE_HOME is set and IceHome is not set we set IceHome to ICE_HOME | ||
this will be later used to load settings from the Ice distribution pointed | ||
by IceHome. | ||
--> | ||
<PropertyGroup Label="IceHome" Condition="'$(IceHome)' == ''"> | ||
<IceHome>$(ICE_HOME)</IceHome> | ||
</PropertyGroup> | ||
|
||
<!-- | ||
If IceVersion is not set import the version settings from the Ice | ||
distribution. | ||
--> | ||
<ImportGroup Condition="'$(IceVersion)' == ''"> | ||
<!-- | ||
With Ice 3.6.x this settings are in config\Ice.props. | ||
--> | ||
<Import Project="$(IceHome)\config\Ice.props" | ||
Condition="Exists('$(IceHome)\config\Ice.props')"/> | ||
|
||
<PropertyGroup Label="IceHome" Condition="'$(IceHome)' == ''"> | ||
<IceHome>$(Registry:HKEY_CURRENT_USER\Software\ZeroC\IceBuilder@IceHome)</IceHome> | ||
<IceVersion>$(Registry:HKEY_CURRENT_USER\Software\ZeroC\IceBuilder@IceVersion)</IceVersion> | ||
<IceIntVersion>$(Registry:HKEY_CURRENT_USER\Software\ZeroC\IceBuilder@IceIntVersion)</IceIntVersion> | ||
<IceVersionMM>$(Registry:HKEY_CURRENT_USER\Software\ZeroC\IceBuilder@IceVersionMM)</IceVersionMM> | ||
</PropertyGroup> | ||
<!-- | ||
With Ice 3.7 the settings were move to config\icebuilder.props. | ||
--> | ||
<Import Project="$(IceHome)\config\icebuilder.props" | ||
Condition="Exists('$(IceHome)\config\icebuilder.props')"/> | ||
</ImportGroup> | ||
|
||
<!-- Check if IceHome denotes a source distribution --> | ||
<PropertyGroup Condition="Exists('$(IceHome)\cpp\bin')"> | ||
<IceSourceHome>$(IceHome)</IceSourceHome> | ||
</PropertyGroup> | ||
<!-- | ||
If IceHome is not set above, read the settings from the Windows registry | ||
--> | ||
<PropertyGroup Label="IceHome" Condition="'$(IceHome)' == ''"> | ||
<IceHome>$(Registry:HKEY_CURRENT_USER\Software\ZeroC\IceBuilder@IceHome)</IceHome> | ||
<IceVersion>$(Registry:HKEY_CURRENT_USER\Software\ZeroC\IceBuilder@IceVersion)</IceVersion> | ||
<IceIntVersion>$(Registry:HKEY_CURRENT_USER\Software\ZeroC\IceBuilder@IceIntVersion)</IceIntVersion> | ||
<IceVersionMM>$(Registry:HKEY_CURRENT_USER\Software\ZeroC\IceBuilder@IceVersionMM)</IceVersionMM> | ||
</PropertyGroup> | ||
|
||
<!-- | ||
Check if IceHome denotes a source distribution. | ||
--> | ||
<PropertyGroup Condition="Exists('$(IceHome)\cpp\bin')"> | ||
<IceSourceHome>$(IceHome)</IceSourceHome> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters