2
0
mirror of https://github.com/koreader/koreader synced 2024-11-16 06:12:56 +00:00
koreader/spec/unit/commonrequire.lua

24 lines
629 B
Lua
Raw Normal View History

2014-10-07 05:06:06 +00:00
require "defaults"
package.path = "?.lua;common/?.lua;frontend/?.lua;" .. package.path
package.cpath = "?.so;common/?.so;/usr/lib/lua/?.so;" .. package.cpath
-- global reader settings
local DocSettings = require("docsettings")
G_reader_settings = DocSettings:open(".reader")
-- global einkfb for Screen (do not show SDL window)
einkfb = require("ffi/framebuffer")
einkfb.dummy = true
-- init output device
local Screen = require("device").screen
2014-10-07 05:06:06 +00:00
Screen:init()
-- init input device (do not show SDL window)
local Input = require("device").input
2014-10-07 05:06:06 +00:00
Input.dummy = true
-- turn on debug
local DEBUG = require("dbg")
DEBUG:turnOn()