mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-10 13:12:34 +01:00
add support for xchat-text
This commit is contained in:
parent
a62ba4792c
commit
9c8f37cc15
@ -15,6 +15,8 @@ cd common
|
||||
nmake /nologo /f makefile.mak clean
|
||||
cd ..\fe-gtk
|
||||
nmake /nologo /f makefile.mak clean
|
||||
cd ..\fe-text
|
||||
nmake /nologo /f makefile.mak clean
|
||||
cd ..
|
||||
nmake /nologo /f makefile.mak
|
||||
cd ..\plugins
|
||||
|
@ -2,6 +2,7 @@
|
||||
set DEPS_ROOT=..\dep-x64
|
||||
set XCHAT_DEST=..\tmp
|
||||
copy ..\src\fe-gtk\xchat.exe %XCHAT_DEST%\xchat.exe.x64
|
||||
copy ..\src\fe-text\xchat-text.exe %XCHAT_DEST%\xchat-text.exe.x64
|
||||
copy %DEPS_ROOT%\bin\libgtk-win32-2.0-0.dll %XCHAT_DEST%\libgtk-win32-2.0-0.dll.x64
|
||||
copy %DEPS_ROOT%\bin\libgdk_pixbuf-2.0-0.dll %XCHAT_DEST%\libgdk_pixbuf-2.0-0.dll.x64
|
||||
copy %DEPS_ROOT%\bin\libgio-2.0-0.dll %XCHAT_DEST%\libgio-2.0-0.dll.x64
|
||||
|
@ -6,6 +6,7 @@ mkdir %XCHAT_DEST%
|
||||
echo 2> portable-mode
|
||||
move portable-mode %XCHAT_DEST%
|
||||
copy ..\src\fe-gtk\xchat.exe %XCHAT_DEST%
|
||||
copy ..\src\fe-text\xchat-text.exe %XCHAT_DEST%
|
||||
copy %DEPS_ROOT%\bin\libgtk-win32-2.0-0.dll %XCHAT_DEST%
|
||||
copy %DEPS_ROOT%\bin\libgdk_pixbuf-2.0-0.dll %XCHAT_DEST%
|
||||
copy %DEPS_ROOT%\bin\libgio-2.0-0.dll %XCHAT_DEST%
|
||||
|
@ -33,6 +33,7 @@ Name: "custom"; Description: "Custom Installation"; Flags: iscustom
|
||||
|
||||
[Components]
|
||||
Name: "libs"; Description: "XChat-WDK"; Types: normal full minimal custom; Flags: fixed
|
||||
Name: "xctext"; Description: "XChat-Text"; Types: full custom; Flags: disablenouninstallwarning
|
||||
Name: "translations"; Description: "Translations"; Types: normal full custom; Flags: disablenouninstallwarning
|
||||
Name: "spelling"; Description: "Spelling Dictionaries"; Types: full custom; Flags: disablenouninstallwarning
|
||||
Name: "plugins"; Description: "Plugins"; Types: full custom; Flags: disablenouninstallwarning
|
||||
@ -183,6 +184,11 @@ Source: "lib\gtk-2.0\modules\libgail.dll.x64"; DestDir: "{app}\lib\gtk-2.0\modul
|
||||
|
||||
|
||||
|
||||
Source: "xchat-text.exe"; DestDir: "{app}"; Components: xctext; Tasks: x86
|
||||
Source: "xchat-text.exe.x64"; DestDir: "{app}"; DestName: "xchat-text.exe"; Components: xctext; Tasks: x64
|
||||
|
||||
|
||||
|
||||
;Source: "plugins\xcewc.dll"; DestDir: "{app}\plugins"; Components: plugins\ewc; Tasks: x86
|
||||
;Source: "plugins\xcewc.dll.x64"; DestDir: "{app}\plugins"; DestName: "xcewc.dll"; Components: plugins\ewc; Tasks: x64
|
||||
|
||||
@ -226,6 +232,7 @@ Source: "plugins\xcperl-512.dll.x64"; DestDir: "{app}\plugins"; DestName: "xcper
|
||||
|
||||
[Icons]
|
||||
Name: "{group}\XChat-WDK"; Filename: "{app}\xchat.exe"; Tasks: not portable
|
||||
Name: "{group}\XChat-Text"; Filename: "{app}\xchat-text.exe"; Tasks: not portable
|
||||
Name: "{group}\Uninstall XChat-WDK"; Filename: "{uninstallexe}"; Tasks: not portable
|
||||
|
||||
[Messages]
|
||||
|
@ -3,8 +3,8 @@ all:
|
||||
@-$(MAKE) /nologo /s /f makefile.mak $@
|
||||
@cd ..\fe-gtk
|
||||
@-$(MAKE) /nologo /s /f makefile.mak $@
|
||||
# @cd ..\fe-text
|
||||
# @-$(MAKE) /nologo /s /f makefile.mak $@
|
||||
@cd ..\fe-text
|
||||
@-$(MAKE) /nologo /s /f makefile.mak $@
|
||||
|
||||
clean:
|
||||
@del common\*.obj
|
||||
@ -12,6 +12,6 @@ clean:
|
||||
@del fe-gtk\*.obj
|
||||
@del fe-gtk\xchat.exe
|
||||
@del fe-gtk\xchat.res
|
||||
# @del fe-text\*.obj
|
||||
# @del fe-text\xchat-text.exe
|
||||
@del fe-text\*.obj
|
||||
@del fe-text\xchat-text.exe
|
||||
@del pixmaps\*.h
|
||||
|
Loading…
Reference in New Issue
Block a user