diff options
author | Olli Vuolteenaho <[email protected]> | 2025-07-01 13:35:58 +0300 |
---|---|---|
committer | Olli Vuolteenaho <[email protected]> | 2025-07-02 10:23:53 +0000 |
commit | 9b777c0dd4092e21b76f21dac4eacaf44295d78e (patch) | |
tree | 4cefc5f6fc7d6250c7cc8186dfdded1350b63f7a | |
parent | 50639f89405690fcb67c08bff7149be64ac7526d (diff) |
The current formatting will not work and will result in an error. The
expected formatting for gradle.properties is to list all the arguments
as a comma separated list.
Fixes: QTTA-404
Pick-to: 4.1
Change-Id: I8b0b9d3182ed027555a75da9583cde08f157fd6d
Reviewed-by: Assam Boudjelthia <[email protected]>
Reviewed-by: Rami Potinkara <[email protected]>
-rw-r--r-- | src/main/java/org/qtproject/qt/androidstudiotools/QtSettingPanel.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/qtproject/qt/androidstudiotools/QtSettingPanel.java b/src/main/java/org/qtproject/qt/androidstudiotools/QtSettingPanel.java index 8cda7bf..1eee9a5 100644 --- a/src/main/java/org/qtproject/qt/androidstudiotools/QtSettingPanel.java +++ b/src/main/java/org/qtproject/qt/androidstudiotools/QtSettingPanel.java @@ -41,7 +41,7 @@ class QtSettingPanel { initBrowseFolderBtn(m_ninjaPathLocationBtn, this::validateNinjaPath,""); m_extraCMakeFlagsField.getTextField().setToolTipText( - "e.g. -DCMAKE_BUILD_TYPE=Release -DQT_ANDROID_ABIS:STRING=x86_64"); + "e.g. -DCMAKE_BUILD_TYPE=Release,-DQT_ANDROID_ABIS:STRING=x86_64"); m_mainPanel = FormBuilder.createFormBuilder() .addLabeledComponent( |