mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
a0050541d1
This gem uses C99 `_Complex` features. You need a C compiler that supports `_Complex` to enable this gem. All `gcc`, `clang`, `VC` support `_Complex` so there should not be a big problem.
9 lines
300 B
Ruby
9 lines
300 B
Ruby
# This `mruby-cmath` gem uses C99 _Complex features
|
|
# You need C compler that support C99+
|
|
MRuby::Gem::Specification.new('mruby-cmath') do |spec|
|
|
spec.license = 'MIT'
|
|
spec.author = 'mruby developers'
|
|
spec.summary = 'standard Math module with complex'
|
|
spec.add_dependency 'mruby-complex'
|
|
end
|