Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/lua/src/modules/lua-winreg/lakefile')
-rw-r--r--3rdparty/lua/src/modules/lua-winreg/lakefile140
1 files changed, 70 insertions, 70 deletions
diff --git a/3rdparty/lua/src/modules/lua-winreg/lakefile b/3rdparty/lua/src/modules/lua-winreg/lakefile
index d3f2518..0db0468 100644
--- a/3rdparty/lua/src/modules/lua-winreg/lakefile
+++ b/3rdparty/lua/src/modules/lua-winreg/lakefile
@@ -1,70 +1,70 @@
-if not WINDOWS then quit('This is only windows module!') end
-
-PROJECT = 'winreg'
-
-if LUA_VER == '5.2' then
- LUA_NEED = 'lua52'
- LUA_DIR = ENV.LUA_DIR_5_2 or ENV.LUA_DIR
- LUA_RUNNER = 'lua52'
-else
- LUA_NEED = 'lua51'
- LUA_DIR = ENV.LUA_DIR
- LUA_RUNNER = 'lua'
-end
-
-ROOT = ROOT or J(LUA_DIR, 'libs', PROJECT)
-LUADIR = LUADIR or J(ROOT, 'share')
-LIBDIR = LIBDIR or J(ROOT, 'share')
-DYNAMIC = as_bool(DYNAMIC, false)
-WINVER = IF(WINDOWS, WINVER or '501', '')
-
-lake.define_need('unicode',function()return{
- defines = {"UNICODE"; "_UNICODE"};
- flags = "/UMBS /U_MBS";
-} end)
-
-INSTALL_DIR = INSTALL_DIR or J(LUA_DIR,'libs','winreg')
-
-winreg = c.shared{'winreg',
- base = 'src';
- src = {"lua_int64","lua_mtutil","lua_tstring","luawin_dllerror",
- "win_privileges","win_registry","win_trace","winreg","l52util"
- };
- defines = L(
- {'WIN32','_WIN32','_WINDOWS'},
- {"WIN32_LEAN_AND_MEAN"; "WINDLL"; "USRDLL"},
- IF(DEBUG, {'_DEBUG', 'DEBUG'},'NDEBUG'),
- IF(MSVC, {'_CRT_SECURE_NO_WARNINGS'}),
- IF(MSVC, {'_WIN32_WINNT=0x0400','WINVER=0x0400', '_WIN32_IE=0x0300'}),
- IF(MSVC, {'CRTAPI1=_cdecl','CRTAPI2=_cdecl','_X86_=1'}),
- 'WINREG_EXPORTS', 'WINREG_API=__declspec(dllexport)'
- );
- flags = IF(MSVC,
- IF(DEBUG, {'-Z7' , '-Od', --[['-MLd']]}, {'-O2', --[['-ML']]}),
- '-Os -DNDEBUG -s'
- );
- libflags = IF(MSVC and DEBUG, '-debug:full -debugtype:cv', '-DEBUG -OPT:REF -OPT:ICF');
- needs = {LUA_NEED,IF(UNICODE, 'unicode')};
- libs = {"advapi32", "kernel32", "user32"};
- optimize = false;
- dynamic = DYNAMIC;
-}
-
-target('build',{winreg})
-
-install = target('install', {
- file.group{odir=J(ROOT, 'test'); src = J('test','*.*'); recurse=true };
- file.group{odir=J(ROOT, 'doc'); src = J('doc','*.*'); recurse=true };
- file.group{odir=J(ROOT, 'examples'); src = J('examples','*.*');recurse=true };
- file.group{odir = LIBDIR; src = winreg};
-})
-
-target('test', install, function()
- lake.chdir('test')
- for file in path.mask('*.lua') do
- run_test(file)
- end
- lake.chdir('<')
-end)
-
-default('build')
+if not WINDOWS then quit('This is only windows module!') end
+
+PROJECT = 'winreg'
+
+if LUA_VER == '5.2' then
+ LUA_NEED = 'lua52'
+ LUA_DIR = ENV.LUA_DIR_5_2 or ENV.LUA_DIR
+ LUA_RUNNER = 'lua52'
+else
+ LUA_NEED = 'lua51'
+ LUA_DIR = ENV.LUA_DIR
+ LUA_RUNNER = 'lua'
+end
+
+ROOT = ROOT or J(LUA_DIR, 'libs', PROJECT)
+LUADIR = LUADIR or J(ROOT, 'share')
+LIBDIR = LIBDIR or J(ROOT, 'share')
+DYNAMIC = as_bool(DYNAMIC, false)
+WINVER = IF(WINDOWS, WINVER or '501', '')
+
+lake.define_need('unicode',function()return{
+ defines = {"UNICODE"; "_UNICODE"};
+ flags = "/UMBS /U_MBS";
+} end)
+
+INSTALL_DIR = INSTALL_DIR or J(LUA_DIR,'libs','winreg')
+
+winreg = c.shared{'winreg',
+ base = 'src';
+ src = {"lua_int64","lua_mtutil","lua_tstring","luawin_dllerror",
+ "win_privileges","win_registry","win_trace","winreg","l52util"
+ };
+ defines = L(
+ {'WIN32','_WIN32','_WINDOWS'},
+ {"WIN32_LEAN_AND_MEAN"; "WINDLL"; "USRDLL"},
+ IF(DEBUG, {'_DEBUG', 'DEBUG'},'NDEBUG'),
+ IF(MSVC, {'_CRT_SECURE_NO_WARNINGS'}),
+ IF(MSVC, {'_WIN32_WINNT=0x0400','WINVER=0x0400', '_WIN32_IE=0x0300'}),
+ IF(MSVC, {'CRTAPI1=_cdecl','CRTAPI2=_cdecl','_X86_=1'}),
+ 'WINREG_EXPORTS', 'WINREG_API=__declspec(dllexport)'
+ );
+ flags = IF(MSVC,
+ IF(DEBUG, {'-Z7' , '-Od', --[['-MLd']]}, {'-O2', --[['-ML']]}),
+ '-Os -DNDEBUG -s'
+ );
+ libflags = IF(MSVC and DEBUG, '-debug:full -debugtype:cv', '-DEBUG -OPT:REF -OPT:ICF');
+ needs = {LUA_NEED,IF(UNICODE, 'unicode')};
+ libs = {"advapi32", "kernel32", "user32"};
+ optimize = false;
+ dynamic = DYNAMIC;
+}
+
+target('build',{winreg})
+
+install = target('install', {
+ file.group{odir=J(ROOT, 'test'); src = J('test','*.*'); recurse=true };
+ file.group{odir=J(ROOT, 'doc'); src = J('doc','*.*'); recurse=true };
+ file.group{odir=J(ROOT, 'examples'); src = J('examples','*.*');recurse=true };
+ file.group{odir = LIBDIR; src = winreg};
+})
+
+target('test', install, function()
+ lake.chdir('test')
+ for file in path.mask('*.lua') do
+ run_test(file)
+ end
+ lake.chdir('<')
+end)
+
+default('build')