mirror of
https://github.com/rubyjs/libv8
synced 2023-03-27 23:21:48 -04:00
15 lines
317 B
Ruby
15 lines
317 B
Ruby
require 'pathname'
|
|
|
|
require 'libv8/version'
|
|
|
|
module Libv8
|
|
LIBRARY_PATH = Pathname(__FILE__).dirname.join('libv8', 'build', 'v8').to_s
|
|
def self.library_path
|
|
LIBRARY_PATH
|
|
end
|
|
|
|
INCLUDE_PATH = Pathname(__FILE__).dirname.join('libv8', 'v8', 'include').to_s
|
|
def self.include_path
|
|
INCLUDE_PATH
|
|
end
|
|
end
|