Remove 'Release' config argument

This commit is contained in:
murgatroid99 2019-02-13 15:58:48 -08:00
parent 90233c965f
commit 35c257c019
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ add_executable(grpc_node_plugin
)
if (MSVC)
add_definitions(/MT)
add_definitions(/MTd)
endif (MSVC)
target_include_directories(grpc_node_plugin

View File

@ -33,11 +33,11 @@ foreach ($Arch in $ArchList) {
$Generator = "Visual Studio 14 2015"
}
& cmake.exe . --config Release
& cmake.exe .
if ($LASTEXITCODE -ne 0) {
throw "cmake failed"
}
& cmake.exe --build . --config Release
& cmake.exe --build .
if ($LASTEXITCODE -ne 0) {
throw "cmake build failed"
}