diff options
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/BuildingGenerics.txt | 6 | ||||
-rw-r--r-- | Documentation/BuildingOnUnix.txt | 7 | ||||
-rw-r--r-- | Documentation/BuildingOnWindows.txt | 2 |
3 files changed, 7 insertions, 8 deletions
diff --git a/Documentation/BuildingGenerics.txt b/Documentation/BuildingGenerics.txt index 66f3347..284cf45 100644 --- a/Documentation/BuildingGenerics.txt +++ b/Documentation/BuildingGenerics.txt @@ -1,6 +1,6 @@ To cause scons to search for dependencies instead of using cached results, add force-configure=1 to the commandline: scons force-configure=1 -Swift is usually built with Qt4. If you want to build it against Qt5, add the line -qt5 = 1 -to your config.py +Swift is usually built with Qt5. If you want to build it against Qt4, add the line +qt5 = 0 +to your config.py. However, Qt4 support is no longer actively maintained. diff --git a/Documentation/BuildingOnUnix.txt b/Documentation/BuildingOnUnix.txt index ef74387..b9f31ea 100644 --- a/Documentation/BuildingOnUnix.txt +++ b/Documentation/BuildingOnUnix.txt @@ -7,10 +7,9 @@ Prerequisites Building -------- -- Create a file 'config.py' with the following contents, reflecting your local - setup: - qt = "path/to/qt" - (e.g. qt = "/usr/share/qt4") +- Swift uses Qt5 for the UI and on Unix-like platforms it is automatically detected + using pkg-config. + - The dependencies can be installed by running ./BuildTools/InstallSwiftDependencies.sh - Run ./scons - To build only a subdir, add the path as a target to scons. E.g., for Swift: diff --git a/Documentation/BuildingOnWindows.txt b/Documentation/BuildingOnWindows.txt index 14a9b5b..d296241 100644 --- a/Documentation/BuildingOnWindows.txt +++ b/Documentation/BuildingOnWindows.txt @@ -47,7 +47,7 @@ For packaging use: - WiX - Download the C++ redistributable package from Microsoft and put it at C:\Program Files (x86)\Common Files\Merge Modules\ - config.py should contain: - qt = "c:\\qt\\4.7.4" + qt = "c:\\qt\\5.4.2" vcredist = "C:\\Program Files (x86)\\Common Files\\Merge Modules\\vcredist_x86.exe" debug = 1 optimize = 1 |