Skip to content

Commit

Permalink
Update to VS2019, update libtorrent
Browse files Browse the repository at this point in the history
  • Loading branch information
vktr committed Jun 8, 2019
1 parent 327ed86 commit eefb195
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
11 changes: 3 additions & 8 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,11 @@ Task("Generate-Project")
.IsDependentOn("Clean")
.Does(() =>
{
var generator = "Visual Studio 15 2017 Win64";

if(platform == "x86")
{
generator = "Visual Studio 15 2017";
}

CMake("./", new CMakeSettings {
OutputPath = OutputDirectory,
Generator = generator
Generator = "Visual Studio 16 2019",
Platform = platform == "x86" ? "Win32" : "x64",
Toolset = "v142"
});
});

Expand Down
2 changes: 1 addition & 1 deletion vendor/libtorrent
Submodule libtorrent updated 192 files

0 comments on commit eefb195

Please sign in to comment.