diff options
Diffstat (limited to 'core/init.lua')
-rw-r--r-- | core/init.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/init.lua b/core/init.lua index 3acd3875..82348f1f 100644 --- a/core/init.lua +++ b/core/init.lua @@ -1,7 +1,11 @@ -- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE. package.path = _HOME..'/core/?.lua;'..package.path -package.cpath = _HOME..'/core/?.so;'..package.cpath +if not WIN32 then + package.cpath = _HOME..'/core/?.so;'..package.cpath +else + package.cpath = _HOME..'/core/?.dll;'..package.cpath +end require 'iface' require 'events' |