mirror of
https://github.com/ModOrganizer2/mob.git
synced 2026-07-27 14:07:05 -07:00
Change prebuilt URL for PyQt and Python when build-type is debug.
This commit is contained in:
+3
-1
@@ -47,7 +47,9 @@ namespace mob::tasks {
|
||||
|
||||
url prebuilt_url()
|
||||
{
|
||||
return make_prebuilt_url("PyQt6_gpl-prebuilt-" + pyqt::version() + ".7z");
|
||||
return make_prebuilt_url(
|
||||
"PyQt6_gpl-prebuilt-" + pyqt::version() +
|
||||
(pyqt::build_type() == config::debug ? "-debug" : "") + ".7z");
|
||||
}
|
||||
|
||||
// file created by sip-module.exe
|
||||
|
||||
@@ -30,7 +30,9 @@ namespace mob::tasks {
|
||||
|
||||
url prebuilt_url()
|
||||
{
|
||||
return make_prebuilt_url("python-prebuilt-" + version_without_v() + ".7z");
|
||||
return make_prebuilt_url(
|
||||
"python-prebuilt-" + version_without_v() +
|
||||
(python::build_type() == config::debug ? "-debug" : "") + ".7z");
|
||||
}
|
||||
|
||||
fs::path solution_file()
|
||||
|
||||
Reference in New Issue
Block a user