-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2369e8a
commit cb3960d
Showing
30 changed files
with
231 additions
and
226 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<PropertyGroup Label="UserMacros"> | ||
<LibraryName>$(ProjectName)</LibraryName> | ||
<LibraryLibDir>$(LibDir)</LibraryLibDir> | ||
<LibrarySourceDir>$(SourceDir)$(LibraryName)\</LibrarySourceDir> | ||
<LibraryFileName>$(LibraryName)</LibraryFileName> | ||
<LibraryIntermediateDir>$(IntermediateDir)$(LibraryName)\</LibraryIntermediateDir> | ||
</PropertyGroup> | ||
|
||
<ItemDefinitionGroup> | ||
<ClCompile> | ||
<AdditionalIncludeDirectories>$(SourceInclude);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
<PreprocessorDefinitions>__UNUSED;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
</ClCompile> | ||
<Link> | ||
<AdditionalLibraryDirectories>$(LibraryLibDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||
<AdditionalDependencies>$(LibraryFileName).lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
</Link> | ||
</ItemDefinitionGroup> | ||
|
||
<PropertyGroup> | ||
<IntDir>$(LibraryIntermediateDir)</IntDir> | ||
<TargetName>$(LibraryFileName)</TargetName> | ||
<OutDir>$(LibraryLibDir)</OutDir> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<PropertyGroup Label="UserMacros"> | ||
<SubBuild>$(Configuration)-$(PlatformShortName)-$(PlatformToolset)</SubBuild> | ||
|
||
<ReflectionName>Reflection</ReflectionName> | ||
<ReflectionLibDir>$(SourceInclude)swCommonLib\_Target\$(SubBuild)\LibDir\</ReflectionLibDir> | ||
<ReflectionFileName>$(ReflectionName)</ReflectionFileName> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<_PropertySheetDisplayName>LinkReflection</_PropertySheetDisplayName> | ||
</PropertyGroup> | ||
|
||
<ItemDefinitionGroup> | ||
|
||
<ClCompile> | ||
<AdditionalIncludeDirectories>$(SourceInclude)swCommonLib/Reflection/src/;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
<PreprocessorDefinitions>RTTR_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
</ClCompile> | ||
|
||
<Link> | ||
<AdditionalLibraryDirectories>$(ReflectionLibDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||
<AdditionalDependencies>$(ReflectionFileName).lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
</Link> | ||
|
||
<PostBuildEvent> | ||
<Command>copy $(ReflectionLibDir)$(ReflectionFileName).dll $(OutDir)$(ReflectionName).dll | ||
%(Command) | ||
</Command> | ||
<Message>Copy Reflection.dll to output directory.</Message> | ||
</PostBuildEvent> | ||
</ItemDefinitionGroup> | ||
</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
20 changes: 0 additions & 20 deletions
20
swGUI/ProjectDir/Visual2015/MockNativeGUI/MockNativeGUIConfig.props
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="LinkSleepingWombatGUI.props" /> | ||
|
||
<PropertyGroup Label="UserMacros"> | ||
<BinaryName>$(ProjectName)</BinaryName> | ||
<BinaryDir>$(BuildDir)</BinaryDir> | ||
<BinarySourceDir>$(SourceDir)$(BinaryName)\</BinarySourceDir> | ||
<BinaryFileName>$(BinaryName)</BinaryFileName> | ||
<BinaryIntermediateDir>$(IntermediateDir)$(BinaryName)\</BinaryIntermediateDir> | ||
</PropertyGroup> | ||
|
||
<ItemDefinitionGroup> | ||
<ClCompile> | ||
<AdditionalIncludeDirectories>$(SourceInclude);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
<PreprocessorDefinitions>__UNUSED;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
</ClCompile> | ||
</ItemDefinitionGroup> | ||
|
||
<PropertyGroup> | ||
<IntDir>$(BinaryIntermediateDir)</IntDir> | ||
<TargetName>$(BinaryFileName)</TargetName> | ||
<OutDir>$(BinaryDir)</OutDir> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ImportGroup Label="PropertySheets" /> | ||
|
||
<PropertyGroup Label="UserMacros"> | ||
<TestName>$(ProjectName)</TestName> | ||
<TestSourceDir>$(SourceDir)$(TestName)\</TestSourceDir> | ||
<TestFileName>$(TestName)</TestFileName> | ||
<TestBuildDir>$(TestsBinariesDir)</TestBuildDir> | ||
<TestIntermediateDir>$(IntermediateDir)$(TestName)\</TestIntermediateDir> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<IntDir>$(TestIntermediateDir)</IntDir> | ||
<TargetName>$(TestFileName)</TargetName> | ||
<OutDir>$(TestBuildDir)</OutDir> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<LocalDebuggerWorkingDirectory>$(WorkDir)</LocalDebuggerWorkingDirectory> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
</PropertyGroup> | ||
|
||
<Target Name="CreateDirectories" AfterTargets="Build"> | ||
<MakeDir Directories="$(WorkDir)"/> | ||
</Target> | ||
|
||
<ItemDefinitionGroup Condition="Exists('$(TestResourcesDir)')"> | ||
<PostBuildEvent> | ||
<Command>xcopy $(TestResourcesDir) $(WorkDir) /S /Y | ||
%(Command) | ||
</Command> | ||
<Message>Copy TestResources to WorkDir.</Message> | ||
</PostBuildEvent> | ||
</ItemDefinitionGroup> | ||
</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
26 changes: 0 additions & 26 deletions
26
swGUI/ProjectDir/Visual2015/TestFramework/TestFramework.DX11Config.props
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.