If we're going to be case-sensitive, we may as well match the case of the download and save users a rename operation.

master
Andrew Russell 2017-11-10 00:52:02 +10:00
parent c3929fd423
commit a6c9e0d094
3 changed files with 8 additions and 7 deletions

3
.gitignore vendored
View File

@ -292,7 +292,8 @@ __pycache__/
#
# Ignores for FNA-Template
#
# Ignore the libs directory (user will add it themselves)
# Ignore the libs directory (user will add it themselves), including legacy casing
FNALibs
fnalibs
# Ignore fxc.exe (it may be added to the build/tools directory)
fxc.exe

View File

@ -23,7 +23,7 @@ To use FNA Template you will need to install the following:
You will also need to add FNA itself. Place the following directories at the same level as the solution file (note case sensitivity):
- **"FNA"** containing the FNA project from https://github.com/FNA-XNA/FNA
- **"FNALibs"** containing the FNA libraries from http://fna.flibitijibibo.com/archive/fnalibs.tar.bz2
- **"fnalibs"** containing the FNA libraries from http://fna.flibitijibibo.com/archive/fnalibs.tar.bz2
At this point you should be able to open and build the solution. On Windows you can now run and debug the FNATemplate project. On Linux/macOS there is an additional step to run it in the debugger (instructions below).

View File

@ -2,23 +2,23 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Content Include="..\FNALibs\x86\**\*.*" Condition="'$(OS)' == 'Windows_NT' AND '$(Platform)' != 'x64'">
<Content Include="..\fnalibs\x86\**\*.*" Condition="'$(OS)' == 'Windows_NT' AND '$(Platform)' != 'x64'">
<Link>x86\%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\FNALibs\x64\**\*.*" Condition="'$(OS)' == 'Windows_NT' AND '$(Platform)' != 'x86'">
<Content Include="..\fnalibs\x64\**\*.*" Condition="'$(OS)' == 'Windows_NT' AND '$(Platform)' != 'x86'">
<Link>x64\%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\FNALibs\osx\**\*.*" Condition="'$(OS)' != 'Windows_NT'" >
<Content Include="..\fnalibs\osx\**\*.*" Condition="'$(OS)' != 'Windows_NT'" >
<Link>osx\%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\FNALibs\lib\**\*.*" Condition="'$(OS)' != 'Windows_NT'" >
<Content Include="..\fnalibs\lib\**\*.*" Condition="'$(OS)' != 'Windows_NT'" >
<Link>lib\%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\FNALibs\lib64\**\*.*" Condition="'$(OS)' != 'Windows_NT'" >
<Content Include="..\fnalibs\lib64\**\*.*" Condition="'$(OS)' != 'Windows_NT'" >
<Link>lib64\%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>