-
Notifications
You must be signed in to change notification settings - Fork 71
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
Showing
8 changed files
with
52 additions
and
8 deletions.
There are no files selected for viewing
Submodule FeralTic
updated
2 files
+0 −1 | Core/DX11/Geometry/Primitives/DX11Primitive_IcoGrid.cs | |
+1 −1 | Core/DX11/Shaders/DX11Shader.cs |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project | ||
xmlns="http://schemas.microsoft.com/developer/msbuild/2003" | ||
ToolsVersion="4.0" | ||
DefaultTargets="Build"> | ||
|
||
<ItemGroup> | ||
<DeployFolder Include="Deploy\**\*.*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<GirlPower Include="girlpower\girlpower\**\*.*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<NuiDatabase Include="$(KINECTSDK20_DIR)Redist\Face\x64\NuiDatabase\**\*.*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<vgbtechs Include="$(KINECTSDK20_DIR)Redist\VGB\x64\vgbtechs\**\*.*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<GirlPowerNodes Include="girlpower\nodes\**\*.*" /> | ||
</ItemGroup> | ||
|
||
<Target Name="Clean-Deploy"> | ||
<Delete Files="@(DeployFolder)" /> | ||
</Target> | ||
|
||
<Target Name="Build-x64"> | ||
<MSBuild Projects="vvvv-dx11.sln" Properties="Configuration=Release;Platform=x64;DebugSymbols=false;DebugType=None" /> | ||
</Target> | ||
|
||
<Target Name="Build"> | ||
<Delete Files="Deploy\**\*.*" /> | ||
<CallTarget Targets="Build-x64" /> | ||
<Copy SourceFiles="@(GirlPowerNodes)" DestinationFolder="Deploy\Release\x64\packs\dx11\nodes\%(GirlPowerNodes.RecursiveDir)" /> | ||
<Copy SourceFiles="@(GirlPower)" DestinationFolder="Deploy\Release\x64\packs\dx11\girlpower\%(GirlPower.RecursiveDir)" /> | ||
<Exec WorkingDirectory="Deploy\Release\x64\" Command="..\..\..\Tools\7zA.exe a -tzip ..\..\..\Zip\vvvv-packs-dx11-x64.zip packs" LogStandardErrorAsError="true" /> | ||
</Target> | ||
</Project> |