aboutsummaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorGravatar murgatroid99 <michael.lumish@gmail.com>2017-01-17 11:47:06 -0800
committerGravatar murgatroid99 <michael.lumish@gmail.com>2017-01-17 11:47:06 -0800
commitc781f6451887ee5b47623c511ba337b08532f583 (patch)
treef25fcf83028e365dfdfeeb677a073230018de3ee /Rakefile
parent116901598f05690168e18e6cd73c6422089006b8 (diff)
Use config file template instead of Rakefile template
Diffstat (limited to 'Rakefile')
-rwxr-xr-xRakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 8a88b4401f..c8bca20ad1 100755
--- a/Rakefile
+++ b/Rakefile
@@ -5,6 +5,8 @@ require 'rubocop/rake_task'
require 'bundler/gem_tasks'
require 'fileutils'
+require_relative 'build_config.rb'
+
load 'tools/distrib/docker_for_windows.rb'
# Add rubocop style checking tasks
@@ -83,7 +85,7 @@ task 'dlls' do
env += 'EMBED_ZLIB=true '
env += 'BUILDDIR=/tmp '
env += "V=#{verbose} "
- out = '/tmp/libs/opt/grpc-2.dll'
+ out = GrpcBuildConfig::CORE_WINDOWS_DLL
w64 = { cross: 'x86_64-w64-mingw32', out: 'grpc_c.64.ruby' }
w32 = { cross: 'i686-w64-mingw32', out: 'grpc_c.32.ruby' }