-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #284 from vosen/reorganize
Reorganize project structure
- Loading branch information
Showing
262 changed files
with
776 additions
and
755 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[submodule "MIEngine"] | ||
path = MIEngine | ||
path = src/MIEngine | ||
url = https://github.com/PistonDevelopers/MIEngine.git | ||
branch = master |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Git LFS file not shown
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,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0"> | ||
<PropertyGroup> | ||
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)..\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath> | ||
<OutputPath>$(MSBuildThisFileDirectory)..\bin\$(MSBuildProjectName)\$(Configuration)\</OutputPath> | ||
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects> | ||
<NuGetPackageImportStamp/> | ||
</PropertyGroup> | ||
</Project> |
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
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,2 @@ | ||
Temporarily vendored version to work around broken incremental builds: | ||
https://github.com/dsplaisted/strongnamer/issues/3 |
Binary file not shown.
Git LFS file not shown
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,30 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<UsingTask TaskName="StrongNamer.AddStrongName" AssemblyFile="$(MSBuildThisFileDirectory)StrongNamer.dll" /> | ||
<Target Name="_FilterStrongNamerReferences" | ||
BeforeTargets="StrongNamerTarget"> | ||
<ItemGroup> | ||
<_StrongNamerReferences Include="@(ReferencePath)" Condition="'%(ReferencePath.SignAssembly)' == 'True'" /> | ||
<_StrongNamerOutputPaths Include="@(_StrongNamerReferences->'$(IntermediateOutputPath)SignedAssemblies\%(Filename)%(Extension)')"/> | ||
<ReferencePath Remove="@(_StrongNamerReferences)" /> | ||
<ReferencePath Include="@(_StrongNamerOutputPaths)" /> | ||
</ItemGroup> | ||
</Target> | ||
<Target Name="StrongNamerTarget" | ||
Inputs="@(_StrongNamerReferences)" | ||
Outputs="@(_StrongNamerOutputPaths)" | ||
AfterTargets="AfterResolveReferences" | ||
Condition="'$(DisableStrongNamer)' != 'true'"> | ||
|
||
<StrongNamer.AddStrongName | ||
Assemblies="@(_StrongNamerReferences)" | ||
SignedAssemblyFolder="$(IntermediateOutputPath)SignedAssemblies" | ||
KeyFile="$(MSBuildThisFileDirectory)SharedKey.snk"> | ||
</StrongNamer.AddStrongName> | ||
</Target> | ||
|
||
<PropertyGroup> | ||
<ResolveReferencesDependsOn>$(ResolveReferencesDependsOn);StrongNamerTarget</ResolveReferencesDependsOn> | ||
</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,38 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="..\lib\mingw.msbuild"/> | ||
<PropertyGroup> | ||
<_MinGW32Archive>$(MSBuildThisFileDirectory)\..\lib\i686-7.1.0-release-posix-dwarf-rt_v5-rev0.7z</_MinGW32Archive> | ||
<_MinGW64Archive>$(MSBuildThisFileDirectory)\..\lib\x86_64-7.1.0-release-posix-seh-rt_v5-rev0.7z</_MinGW64Archive> | ||
</PropertyGroup> | ||
<Target Name="ExtractMinGW" | ||
Inputs="$(_MinGW32Archive);$(_MinGW64Archive)" | ||
Outputs="@(MinGW32Content);@(MinGW64Content)"> | ||
<!-- | ||
We want this to be evaluated for every execution of this target, but | ||
skip in case if ther target was skipped, hence no PropertyGroup. | ||
--> | ||
<CreateProperty Value="$([System.IO.Path]::GetTempFileName())"> | ||
<Output TaskParameter="Value" PropertyName="_TempFile32" /> | ||
</CreateProperty> | ||
<CreateProperty Value="$([System.IO.Path]::GetTempFileName())"> | ||
<Output TaskParameter="Value" PropertyName="_TempFile64" /> | ||
</CreateProperty> | ||
<WriteLinesToFile File="$(_TempFile32)" Lines="@(MinGW32Content->Metadata('TargetPath'));mingw32\opt\lib\python2.7\*"/> | ||
<Exec Command="$(MSBuildThisFileDirectory)\7za.exe x -y -ir@$(_TempFile32) $(_MinGW32Archive)" WorkingDirectory="$(MSBuildThisFileDirectory)\..\lib\"/> | ||
<WriteLinesToFile File="$(_TempFile64)" Lines="@(MinGW64Content->Metadata('TargetPath'));mingw64\opt\lib\python2.7\*"/> | ||
<Exec Command="$(MSBuildThisFileDirectory)\7za.exe x -y -ir@$(_TempFile64) $(_MinGW64Archive)" WorkingDirectory="$(MSBuildThisFileDirectory)\..\lib\"/> | ||
<Delete Files="$(_TempFile32);$(_TempFile64)"/> | ||
<!-- | ||
If it's the first build, neither @(MinGW32Content) nor @(MinGW64Content) | ||
expanded wildcards for files in mingw32\opt\lib\python2.7\* and | ||
mingw64\opt\lib\python2.7\*. | ||
We use CreateItem instead of ItemGroup, because ItemGroup evaluates | ||
even if the target was skipped. | ||
--> | ||
<CreateItem Include="$(MSBuildThisFileDirectory)\..\lib\mingw32\**\*;$(MSBuildThisFileDirectory)\..\lib\mingw64\**\*" > | ||
<Output TaskParameter="Include" ItemName="_MinGWTouch"/> | ||
</CreateItem> | ||
<Touch Files="@(_MinGWTouch)" ForceTouch="true"/> | ||
</Target> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="WiX" version="3.11.0.1528-rc2" /> | ||
<package id="WiX" version="3.11.0" /> | ||
</packages> |
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
Oops, something went wrong.