Include text files in distribution packages.
This commit is contained in:
parent
c1d4d1d589
commit
10934275f7
5
Copying.txt
Normal file
5
Copying.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
Simple x264 Launcher was created from the scratch by LoRd_MuldeR <mulder2@gmx.de> and is distributed under the terms of the GNU General Public License ('License.txt').
|
||||||
|
|
||||||
|
The Qt GUI Toolkit is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies); the Qt GUI Toolkit may be distributed under the terms of GNU General Public License.
|
||||||
|
|
||||||
|
x264 is Copyright (C) 2003-2012 'x264 project' and is distributed under the terms of GNU General Public License. Avs2YUV was created by Loren Merritt and BugMaster.
|
@ -73,7 +73,10 @@ static int x264_main(int argc, char* argv[])
|
|||||||
WinSevenTaskbar::init();
|
WinSevenTaskbar::init();
|
||||||
|
|
||||||
//Set style
|
//Set style
|
||||||
|
if(!qApp->arguments().contains("--no-style", Qt::CaseInsensitive))
|
||||||
|
{
|
||||||
qApp->setStyle(new QPlastiqueStyle());
|
qApp->setStyle(new QPlastiqueStyle());
|
||||||
|
}
|
||||||
|
|
||||||
//Create Main Window
|
//Create Main Window
|
||||||
MainWindow *mainWin = new MainWindow(&cpuFeatures);
|
MainWindow *mainWin = new MainWindow(&cpuFeatures);
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
#define VER_X264_MAJOR 2
|
#define VER_X264_MAJOR 2
|
||||||
#define VER_X264_MINOR 0
|
#define VER_X264_MINOR 0
|
||||||
#define VER_X264_PATCH 52
|
#define VER_X264_PATCH 55
|
||||||
|
|
||||||
#define VER_X264_MINIMUM_REV 2146
|
#define VER_X264_MINIMUM_REV 2146
|
||||||
#define VER_X264_CURRENT_API 120
|
#define VER_X264_CURRENT_API 120
|
||||||
|
@ -24,6 +24,7 @@ mkdir "%PACK_PATH%\imageformats"
|
|||||||
mkdir "%PACK_PATH%\toolset"
|
mkdir "%PACK_PATH%\toolset"
|
||||||
copy "%~dp0\bin\Release\*.exe" "%PACK_PATH%"
|
copy "%~dp0\bin\Release\*.exe" "%PACK_PATH%"
|
||||||
copy "%~dp0\bin\Release\toolset\*.exe" "%PACK_PATH%\toolset"
|
copy "%~dp0\bin\Release\toolset\*.exe" "%PACK_PATH%\toolset"
|
||||||
|
copy "%~dp0\*.txt" "%PACK_PATH%"
|
||||||
REM ///////////////////////////////////////////////////////////////////////////
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
copy "%MSVC_PATH%\redist\x86\Microsoft.VC100.CRT\*.dll" "%PACK_PATH%"
|
copy "%MSVC_PATH%\redist\x86\Microsoft.VC100.CRT\*.dll" "%PACK_PATH%"
|
||||||
copy "%QTVC_PATH%\bin\QtCore4.dll" "%PACK_PATH%"
|
copy "%QTVC_PATH%\bin\QtCore4.dll" "%PACK_PATH%"
|
||||||
|
Loading…
Reference in New Issue
Block a user