summary refs log tree commit diff stats
path: root/data/icons/tray_message.png
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2014-01-18 03:06:33 -0500
committerTingPing <tingping@tingping.se>2014-01-18 14:47:17 -0500
commitfa1eb92a7bc17e9e3ae3809851588ea5842df292 (patch)
treef30e76dba6c9ca9d7ec164ca3318f67143fc8875 /data/icons/tray_message.png
parenteb29de1c7c77daf9ff073c40e0e9b6ab74962df6 (diff)
Update most deprecated gdk functions
Diffstat (limited to 'data/icons/tray_message.png')
0 files changed, 0 insertions, 0 deletions
gt; 2012-01-10 15:57:33 +0100 committer Berke Viktor <berkeviktor@aol.com> 2012-01-10 15:57:33 +0100 update Lua-WDK to 5.2' href='/git-repos/torxchat.git/commit/win32/ext/lua-wdk/build-x86.bat?h=feature/tls-srp&id=cf761e9871897328c2754b54492144bd6e419c51'>cf761e98 ^
d03d6e60 ^




cf761e98 ^
d03d6e60 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55





                                                                                                                              
























                                                                            










                                         

                              

                             
                              




                                  
                                

               
@echo off
set WDK_ROOT=c:\WinDDK\7600.16385.1
set OPATH=%PATH%
set INCLUDE=%WDK_ROOT%\inc\api;%WDK_ROOT%\inc\crt;%WDK_ROOT%\inc\ddk
set LIB=%WDK_ROOT%\lib\wxp\i386;%WDK_ROOT%\lib\Crt\i386
set PATH=%PROGRAMFILES(X86)%\Microsoft Visual Studio 10.0\VC\bin;%PROGRAMFILES(X86)%\Microsoft Visual Studio 10.0\Common7\IDE
set DEST=..\lua-wdk-5.2.0-x86

set MYCOMPILE=cl /nologo /MD /O2 /W3 /c
set MYLINK=link /nologo msvcrt_winxp.obj
set MYMT=mt /nologo

cd src
%MYCOMPILE% /DLUA_BUILD_AS_DLL l*.c
del lua.obj luac.obj
%MYLINK% /DLL /out:lua52.dll l*.obj
if exist lua52.dll.manifest^
  %MYMT% -manifest lua52.dll.manifest -outputresource:lua52.dll;2
%MYCOMPILE% /DLUA_BUILD_AS_DLL lua.c
%MYLINK% /out:lua.exe lua.obj lua52.lib
if exist lua.exe.manifest^
  %MYMT% -manifest lua.exe.manifest -outputresource:lua.exe
%MYCOMPILE% luac.c
@rem del lua.obj linit.obj lbaselib.obj ldblib.obj liolib.obj lmathlib.obj^
@rem    loslib.obj ltablib.obj lstrlib.obj loadlib.obj
%MYLINK% /out:luac.exe luac.obj lua52.lib
if exist luac.exe.manifest^
  %MYMT% -manifest luac.exe.manifest -outputresource:luac.exe
del *.obj *.manifest
cd ..

echo.Press return when ready to install!
pause
set PATH=%OPATH%
rmdir /Q /S %DEST%
mkdir %DEST%
mkdir %DEST%\bin
mkdir %DEST%\lib
mkdir %DEST%\include
copy COPYRIGHT %DEST%\LICENSE.LUA
:: binaries and libraries
copy src\lua.exe %DEST%\bin
copy src\lua52.dll %DEST%\bin
copy src\lua52.exp %DEST%\bin
copy src\luac.exe %DEST%\bin
:: library
copy src\lua52.lib %DEST%\lib
:: api
copy src\lua.h %DEST%\include
copy src\luaconf.h %DEST%\include
copy src\lualib.h %DEST%\include
copy src\lauxlib.h %DEST%\include
copy src\lua.hpp %DEST%\include
echo.Finished!
pause