2006-01-28 12:29:22 +01:00
|
|
|
rem/******************************************************************************\
|
2011-02-22 19:56:52 +01:00
|
|
|
rem * Copyright (c) 2004-2011
|
2006-01-28 12:29:22 +01:00
|
|
|
rem *
|
|
|
|
rem * Author(s):
|
|
|
|
rem * Volker Fischer
|
|
|
|
rem *
|
|
|
|
rem * Description:
|
|
|
|
rem * Script for compiling the QT resources under Windows (MOCing and UICing)
|
2009-05-01 12:55:51 +02:00
|
|
|
rem *
|
2006-01-28 12:29:22 +01:00
|
|
|
rem ******************************************************************************
|
|
|
|
rem *
|
|
|
|
rem * This program is free software; you can redistribute it and/or modify it under
|
|
|
|
rem * the terms of the GNU General Public License as published by the Free Software
|
|
|
|
rem * Foundation; either version 2 of the License, or (at your option) any later
|
|
|
|
rem * version.
|
|
|
|
rem *
|
|
|
|
rem * This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
rem * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
rem * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 1111
|
|
|
|
rem * details.
|
|
|
|
rem *
|
|
|
|
rem * You should have received a copy of the GNU General Public License along with
|
|
|
|
rem * this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
rem * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
rem *
|
|
|
|
rem\******************************************************************************/
|
|
|
|
|
|
|
|
|
2008-01-14 23:14:17 +01:00
|
|
|
rem .h --------------
|
2006-01-28 12:29:22 +01:00
|
|
|
%qtdir%\bin\moc.exe ..\src\util.h -o moc\moc_util.cpp
|
|
|
|
%qtdir%\bin\moc.exe ..\src\multicolorled.h -o moc\moc_multicolorled.cpp
|
2009-05-01 12:55:51 +02:00
|
|
|
%qtdir%\bin\moc.exe ..\src\multicolorledbar.h -o moc\moc_multicolorledbar.cpp
|
2008-01-14 23:14:17 +01:00
|
|
|
%qtdir%\bin\moc.exe ..\src\audiomixerboard.h -o moc\moc_audiomixerboard.cpp
|
|
|
|
%qtdir%\bin\moc.exe ..\src\llconclientdlg.h -o moc\moc_llconclientdlg.cpp
|
2006-11-03 19:54:12 +01:00
|
|
|
%qtdir%\bin\moc.exe ..\src\clientsettingsdlg.h -o moc\moc_clientsettingsdlg.cpp
|
2006-01-28 12:29:22 +01:00
|
|
|
%qtdir%\bin\moc.exe ..\src\llconserverdlg.h -o moc\moc_llconserverdlg.cpp
|
2008-07-24 08:14:41 +02:00
|
|
|
%qtdir%\bin\moc.exe ..\src\chatdlg.h -o moc\moc_chatdlg.cpp
|
2011-03-27 19:57:46 +02:00
|
|
|
%qtdir%\bin\moc.exe ..\src\connectdlg.h -o moc\moc_connectdlg.cpp
|
2008-01-14 23:14:17 +01:00
|
|
|
%qtdir%\bin\moc.exe ..\src\server.h -o moc\moc_server.cpp
|
2006-02-26 11:50:47 +01:00
|
|
|
%qtdir%\bin\moc.exe ..\src\client.h -o moc\moc_client.cpp
|
2006-01-28 12:29:22 +01:00
|
|
|
%qtdir%\bin\moc.exe ..\src\socket.h -o moc\moc_socket.cpp
|
2008-01-14 23:14:17 +01:00
|
|
|
%qtdir%\bin\moc.exe ..\src\protocol.h -o moc\moc_protocol.cpp
|
|
|
|
%qtdir%\bin\moc.exe ..\src\channel.h -o moc\moc_channel.cpp
|
2009-03-12 12:56:15 +01:00
|
|
|
%qtdir%\bin\moc.exe ..\src\soundbase.h -o moc\moc_soundbase.cpp
|
2009-05-09 14:24:33 +02:00
|
|
|
%qtdir%\bin\moc.exe ..\src\testbench.h -o moc\moc_testbench.cpp
|
2009-06-06 12:07:01 +02:00
|
|
|
%qtdir%\bin\moc.exe ..\src\serverlogging.h -o moc\moc_serverlogging.cpp
|
2010-03-27 08:44:25 +01:00
|
|
|
%qtdir%\bin\moc.exe ..\src\vstmain.h -o moc\moc_vstmain.cpp
|
2011-03-27 10:56:24 +02:00
|
|
|
%qtdir%\bin\moc.exe ..\src\serverlist.h -o moc\moc_serverlist.cpp
|
2006-01-28 12:29:22 +01:00
|
|
|
|
|
|
|
|
2008-01-14 23:14:17 +01:00
|
|
|
rem .ui -------------
|
2008-07-24 08:14:41 +02:00
|
|
|
%qtdir%\bin\uic.exe ..\src\aboutdlgbase.ui -o moc\aboutdlgbase.h
|
|
|
|
%qtdir%\bin\uic.exe ..\src\llconclientdlgbase.ui -o moc\llconclientdlgbase.h
|
|
|
|
%qtdir%\bin\uic.exe ..\src\clientsettingsdlgbase.ui -o moc\clientsettingsdlgbase.h
|
|
|
|
%qtdir%\bin\uic.exe ..\src\llconserverdlgbase.ui -o moc\llconserverdlgbase.h
|
|
|
|
%qtdir%\bin\uic.exe ..\src\chatdlgbase.ui -o moc\chatdlgbase.h
|
2011-03-27 19:57:46 +02:00
|
|
|
%qtdir%\bin\uic.exe ..\src\connectdlgbase.ui -o moc\connectdlgbase.h
|
2008-01-17 19:56:43 +01:00
|
|
|
|
2009-05-09 14:24:33 +02:00
|
|
|
|
2008-01-17 19:56:43 +01:00
|
|
|
rem .qrc ------------
|
2008-01-20 19:19:51 +01:00
|
|
|
%qtdir%\bin\rcc.exe ..\src\resources.qrc -o moc\resources.cpp
|