Skip to content

Commit

Permalink
Added OpenTK as a binary dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
thefiddler committed Mar 14, 2014
1 parent 7f95e1e commit 1baae2c
Show file tree
Hide file tree
Showing 8 changed files with 473,175 additions and 8 deletions.
13 changes: 10 additions & 3 deletions WPF.Angle.csproj
Expand Up @@ -35,10 +35,12 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="OpenTK, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
<HintPath>..\packages\OpenTK.1.1.1508.5724\lib\NET40\OpenTK.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\OpenTK.dll</HintPath>
</Reference>
<Reference Include="OpenTK.GLControl, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
<HintPath>..\packages\OpenTK.GLControl.1.1.1508.5724\lib\NET40\OpenTK.GLControl.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\OpenTK.GLControl.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down Expand Up @@ -93,7 +95,7 @@
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="packages.config" />
<None Include="lib\OpenTK.dll.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
Expand All @@ -110,6 +112,11 @@
<Content Include="libGLESv2.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\OpenTK.dll" />
<Content Include="lib\OpenTK.GLControl.dll" />
<Resource Include="lib\OpenTK.GLControl.xml" />
<Content Include="lib\OpenTK.pdb" />
<Resource Include="lib\OpenTK.xml" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
22 changes: 22 additions & 0 deletions WPF.Angle.sln
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.21005.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF.Angle", "WPF.Angle.csproj", "{C2FEF342-0028-4D9A-843A-6EF3635A8E5A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C2FEF342-0028-4D9A-843A-6EF3635A8E5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C2FEF342-0028-4D9A-843A-6EF3635A8E5A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C2FEF342-0028-4D9A-843A-6EF3635A8E5A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C2FEF342-0028-4D9A-843A-6EF3635A8E5A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file added lib/OpenTK.GLControl.dll
Binary file not shown.
173 changes: 173 additions & 0 deletions lib/OpenTK.GLControl.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added lib/OpenTK.dll
Binary file not shown.
16 changes: 16 additions & 0 deletions lib/OpenTK.dll.config
@@ -0,0 +1,16 @@
<configuration>
<dllmap os="linux" dll="opengl32.dll" target="libGL.so.1"/>
<dllmap os="linux" dll="glu32.dll" target="libGLU.so.1"/>
<dllmap os="linux" dll="openal32.dll" target="libopenal.so.1"/>
<dllmap os="linux" dll="alut.dll" target="libalut.so.0"/>
<dllmap os="linux" dll="opencl.dll" target="libOpenCL.so"/>
<dllmap os="linux" dll="libX11" target="libX11.so.6"/>
<dllmap os="linux" dll="libXi" target="libXi.so.6"/>
<dllmap os="linux" dll="SDL2.dll" target="libSDL2-2.0.so.0"/>
<dllmap os="osx" dll="openal32.dll" target="/System/Library/Frameworks/OpenAL.framework/OpenAL" />
<dllmap os="osx" dll="alut.dll" target="/System/Library/Frameworks/OpenAL.framework/OpenAL" />
<dllmap os="osx" dll="libGLES.dll" target="/System/Library/Frameworks/OpenGLES.framework/OpenGLES" />
<dllmap os="osx" dll="libGLESv2.dll" target="/System/Library/Frameworks/OpenGLES.framework/OpenGLES" />
<dllmap os="osx" dll="opencl.dll" target="/System/Library/Frameworks/OpenCL.framework/OpenCL"/>
<dllmap os="osx" dll="SDL2.dll" target="libSDL2.dylib"/>
</configuration>

0 comments on commit 1baae2c

Please sign in to comment.