Skip to content

Commit

Permalink
RUNS IN VS2019
Browse files Browse the repository at this point in the history
  • Loading branch information
davechurchill committed Feb 28, 2020
1 parent 76d40fa commit b1961f8
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,8 @@ UAlbertaBot/UAB_ErrorLog.txt
UAlbertaBot/UAB_ErrorLog.txt
BOSS/VisualStudio/BOSS.VC.db
*.bwta
*.db
*.ipch
*.opendb
*.db-shm
*.db-wal
4 changes: 2 additions & 2 deletions BOSS/VisualStudio/BOSS.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,14 @@
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
Expand Down
4 changes: 2 additions & 2 deletions SparCraft/VisualStudio/SparCraft.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
<ConfigurationType>StaticLibrary</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PlatformToolset>v110</PlatformToolset>
Expand Down
1 change: 1 addition & 0 deletions UAlbertaBot/Source/Config.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include "BWAPI.h"
#include <set>
#include <cassert>

namespace Config
Expand Down
4 changes: 2 additions & 2 deletions UAlbertaBot/VisualStudio/UAlbertaBot.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
<UseOfMfc>false</UseOfMfc>
<CharacterSet>NotSet</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>false</WholeProgramOptimization>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
Expand Down
24 changes: 18 additions & 6 deletions UAlbertaBot/VisualStudio/UAlbertaBot.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,18 @@
</ClCompile>
<ClCompile Include="..\Source\main.cpp" />
<ClCompile Include="..\Source\UAlbertaBotModule.cpp" />
<ClCompile Include="..\Source\BaseLocation.cpp" />
<ClCompile Include="..\Source\BaseLocationManager.cpp" />
<ClCompile Include="..\Source\DMap.cpp" />
<ClCompile Include="..\source\ScoutManager.cpp">
<Filter>game\combat\micro</Filter>
</ClCompile>
<ClCompile Include="..\Source\BaseLocation.cpp">
<Filter>util</Filter>
</ClCompile>
<ClCompile Include="..\Source\BaseLocationManager.cpp">
<Filter>util</Filter>
</ClCompile>
<ClCompile Include="..\Source\DMap.cpp">
<Filter>util</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\Source\CombatCommander.h">
Expand Down Expand Up @@ -269,11 +275,17 @@
<Filter>game\util</Filter>
</ClInclude>
<ClInclude Include="..\Source\UAlbertaBotModule.h" />
<ClInclude Include="..\Source\BaseLocation.h" />
<ClInclude Include="..\Source\BaseLocationManager.h" />
<ClInclude Include="..\Source\DMap.h" />
<ClInclude Include="..\source\ScoutManager.h">
<Filter>game\combat\micro</Filter>
</ClInclude>
<ClInclude Include="..\Source\BaseLocation.h">
<Filter>util</Filter>
</ClInclude>
<ClInclude Include="..\Source\BaseLocationManager.h">
<Filter>util</Filter>
</ClInclude>
<ClInclude Include="..\Source\DMap.h">
<Filter>util</Filter>
</ClInclude>
</ItemGroup>
</Project>

0 comments on commit b1961f8

Please sign in to comment.