texstudio/texstudio-use-system-qtsing...

29 lines
760 B
Diff
Raw Normal View History

2022-01-14 00:40:02 +00:00
From 67ef0d913ce3e830ba8c7ae6cba70869da7b048a Mon Sep 17 00:00:00 2001
2018-02-11 06:54:33 +00:00
From: hannes <hannes@fedoraproject.org>
2022-01-14 00:40:02 +00:00
Date: Fri, 14 Jan 2022 01:20:28 +0100
2021-09-27 05:50:13 +00:00
Subject: [PATCH] qtsingle
2018-02-11 06:54:33 +00:00
---
2020-08-25 19:36:32 +00:00
texstudio.pro | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
2018-02-11 06:54:33 +00:00
diff --git a/texstudio.pro b/texstudio.pro
2022-01-14 00:40:02 +00:00
index 05831aa..9c56c74 100644
2018-02-11 06:54:33 +00:00
--- a/texstudio.pro
+++ b/texstudio.pro
2021-09-27 05:50:13 +00:00
@@ -105,7 +105,11 @@ versionGreaterOrEqual($$QT_VERSION, "6.0.0") {
}
2019-12-26 10:58:53 +00:00
}
2020-08-25 19:36:32 +00:00
-include(src/qtsingleapplication/qtsingleapplication.pri)
2019-12-26 10:58:53 +00:00
+isEmpty(USE_SYSTEM_QTSINGLEAPPLICATION){
2020-08-25 19:36:32 +00:00
+ include(qtsingleapplication/qtsingleapplication.pri)
2019-12-26 10:58:53 +00:00
+} else {
2020-08-25 19:36:32 +00:00
+ CONFIG += qtsingleapplication
2019-12-26 10:58:53 +00:00
+}
# ##############################
# precompile_header: PRECOMPILED_HEADER = mostQtHeaders.h
2018-02-11 06:54:33 +00:00
--
2022-01-14 00:40:02 +00:00
2.34.1