Top Level Namespace

Defined Under Namespace

Modules: GameController, Gamepad

Constant Summary collapse

LIBDIR =
RbConfig::CONFIG['libdir'] + '/gamepad'
INCLUDEDIR =
HEADER_DIRS =

RbConfig::CONFIG = ā€˜/usr/bin/clang -vā€™

[
	# Then search /usr/local for people that installed from source
	'/usr/local/include',
	
	# Check the ruby install locations
	INCLUDEDIR,
	
	# Finally fall back to /usr
	'/usr/include'
]
LIB_DIRS =
[
	# Then search /usr/local for people that installed from source
	'/usr/local/lib',
	
	# Check the ruby install locations
	LIBDIR,
	
	# Finally fall back to /usr
	'/usr/lib'
]