Sha256: 3117d5e04790d81a3458d3fa1f1222f93dbba51b97debece10e7c5671ceba865
Contents?: true
Size: 672 Bytes
Versions: 1
Compression:
Stored size: 672 Bytes
Contents
require 'mittsu/renderers/generic_lib' module Mittsu module GLFWLib extend GenericLib class Linux < GenericLib::Linux def initialize(loader = Linux) @loader = loader end class << self def libgl_paths Dir.glob('/usr/lib*/**/libglfw*.so*') rescue [] end def ldconfig `ldconfig -p | grep 'libglfw3\\?\\.so'`.lines rescue [] end end end class Windows < GenericLib::Base end class MacOS < GenericLib::Base def path '/usr/local/lib' end def file 'libglfw3.dylib' end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mittsu-0.2.2 | lib/mittsu/renderers/glfw_lib.rb |