1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00

Added some paths and made them as strings

This commit is contained in:
Logan Lowell 2011-05-25 15:39:38 -05:00
parent f4e5a021a8
commit b068a4c4d1

View file

@ -3,7 +3,13 @@ require 'pathname'
require 'libv8/version' require 'libv8/version'
module Libv8 module Libv8
def self.LIB_PATH LIBRARY_PATH = Pathname(__FILE__).dirname.join('libv8').to_s
Pathname(__FILE__).dirname.join('libv8', 'build', 'v8', 'libv8.a') 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
end end