forked from fpoussin/Qt5-MSVC-Static
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testing 5.8.0rc. Some issues with ICU when configuring Qt.
- Loading branch information
Showing
184 changed files
with
29,345 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
sources/* | ||
build/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// Add predefined macros for your project here. For example: | ||
// #define THE_ANSWER 42 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[General] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
LICENSE | ||
README.md | ||
VS2015 x86 Native Tools Command Prompt.lnk | ||
qt.bat | ||
tools/build_icu.bat | ||
tools/build_openssl.bat | ||
tools/build_qt.bat | ||
tools/build_qt_extras.bat | ||
tools/gnuwin32/bin/data/glr.c | ||
tools/gnuwin32/bin/data/glr.cc | ||
tools/gnuwin32/bin/data/lalr1.cc | ||
tools/gnuwin32/bin/data/location.cc | ||
tools/gnuwin32/bin/data/stack.hh | ||
tools/gnuwin32/bin/data/variant.hh | ||
tools/gnuwin32/bin/data/yacc.c | ||
tools/msvc-desktop.conf | ||
tools/options.bat | ||
tools/setup_icu.sh | ||
tools/setup_qt.bat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
tools/gnuwin32/bin/data | ||
tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
@echo off | ||
setlocal | ||
|
||
call tools\options.bat | ||
|
||
IF NOT "%1"=="" ( | ||
|
||
IF "%1"=="setup" ( | ||
call tools\setup_qt.bat | ||
) | ||
IF "%1"=="build" ( | ||
call tools\build_qt.bat | ||
) | ||
IF "%1"=="deps" ( | ||
call tools\build_icu.bat | ||
call tools\build_openssl.bat | ||
) | ||
IF "%1"=="extra" ( | ||
set EXTNAME=%2 | ||
call tools\build_qt_extras.bat | ||
) | ||
|
||
) ELSE ( | ||
echo Available commands: | ||
echo deps : Build all dependencies for Qt ^(ICU, OpenSSL^) | ||
echo setup : Setup Qt | ||
echo build : build Qt | ||
echo extra [name]: build qt extension ^(you need to specify the name^) | ||
) | ||
|
||
endlocal |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
@echo off | ||
setlocal | ||
|
||
call tools\options.bat | ||
|
||
cd %QTBUILDDIR% || exit /b %errorlevel% | ||
|
||
echo Building Qt... | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.