Files
fil/packages/ruby/ext/kreuzberg_rb/extconf.rb

12 lines
249 B
Ruby
Raw Normal View History

2026-06-01 23:40:55 +02:00
# frozen_string_literal: true
require "mkmf"
require "rb_sys/mkmf"
default_profile = ENV.fetch("CARGO_PROFILE", "release")
create_rust_makefile("kreuzberg_rb") do |config|
config.profile = default_profile.to_sym
config.ext_dir = "native"
end