Skip to content

Commit

Permalink
Qt5: Fix repository and switch to version that can be built
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Nov 11, 2024
1 parent c55eb94 commit ef75569
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ilcsoft/qt5.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self, userInput):
self.hasCMakeFindSupport = True
self.download.supportHEAD = False
self.download.supportedTypes = [ "git" ]
self.download.svnurl = 'https://github.com/qt/qt5.git'
self.download.svnurl = 'https://code.qt.io/qt/qt5.git'

self.reqfiles = [
["lib/libQt5Core.so", "lib64/libQt5Core.so", "lib/libQt5Core.dylib", "lib/libQt5Core.la"],
Expand Down Expand Up @@ -95,7 +95,7 @@ def compile(self):
qt_cfg_options = " -opensource -confirm-license -nomake tests -make libs "
cxxStandard = self.envcmake.get("CMAKE_CXX_STANDARD", None)
if cxxStandard:
qt_cfg_options += " -c++std c++" + str(cxxStandard)
qt_cfg_options += " -c++std c++17"

if( os_system( "../" + self.name + "/configure -prefix " + self.installPath + qt_cfg_options
+ " 2>&1 | tee -a " + self.logfile ) != 0 ):
Expand Down
2 changes: 1 addition & 1 deletion releases/v02-03/release-versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@

GSL_version = "2.7"

Qt5_version = "v5.13.1"
Qt5_version = "v5.15.15-lts-lgpl"

CMake_version = "3.31.0"

Expand Down

0 comments on commit ef75569

Please sign in to comment.