summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2015-04-14 15:45:35 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2015-04-14 15:45:35 -0700
commitfa032335b91203e38eaf39bdc873fb8398deba1d (patch)
tree02e6017a0b1d22fdb8694c67f718289c9cebb21a /Rakefile
parent10c7da3b6002a59e21c9c8ee202f6f713c3959f9 (diff)
parente87c4faaa6f838815e6f3a7fcb6722a0aa744cf9 (diff)
downloadffi-yajl-fa032335b91203e38eaf39bdc873fb8398deba1d.tar.gz
Merge pull request #52 from chef/lcg/dlopen-extension
add DLopen extension
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index d8926dc..ae19344 100644
--- a/Rakefile
+++ b/Rakefile
@@ -51,6 +51,13 @@ Rake::ExtensionTask.new do |ext|
ext.gem_spec = spec
end
+Rake::ExtensionTask.new do |ext|
+ ext.name = 'dlopen'
+ ext.lib_dir = 'lib/ffi_yajl/ext'
+ ext.ext_dir = 'ext/ffi_yajl/ext/dlopen'
+ ext.gem_spec = spec
+end
+
#
# test tasks
#