Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update leela-zero.vcxproj for VS2015 #1439

Merged
merged 2 commits into from
May 18, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion msvc/VS2015/leela-zero.vcxproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
Expand Down Expand Up @@ -93,6 +93,7 @@
<ClCompile Include="..\..\src\Training.cpp" />
<ClCompile Include="..\..\src\Tuner.cpp" />
<ClCompile Include="..\..\src\UCTNode.cpp" />
<ClCompile Include="..\..\src\UCTNodePointer.cpp" />
<ClCompile Include="..\..\src\UCTNodeRoot.cpp" />
<ClCompile Include="..\..\src\UCTSearch.cpp" />
<ClCompile Include="..\..\src\Utils.cpp" />
Expand Down Expand Up @@ -121,9 +122,11 @@
<ClInclude Include="..\..\src\Training.h" />
<ClInclude Include="..\..\src\Tuner.h" />
<ClInclude Include="..\..\src\UCTNode.h" />
<ClInclude Include="..\..\src\UCTNodePointer.h" />
<ClInclude Include="..\..\src\UCTSearch.h" />
<ClInclude Include="..\..\src\Utils.h" />
<ClInclude Include="..\..\src\Zobrist.h" />
<ClInclude Include="Header.h" />
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's no Header.h in our project?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like VS somehow copied Header.h from somewhere; the file is dated 9/20/2015 6:20PM with sole content #pragma once. This only happened once (on /next a few commits ago) and I can't reproduce it now, so I'll just delete this line.

</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
Expand Down