diff options
author | Eike Ziller <[email protected]> | 2023-07-24 16:14:26 +0200 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2023-07-25 13:21:16 +0000 |
commit | a419670ff5384ed16f4ae00b3da497792931a771 (patch) | |
tree | eaa01772f1f5e98d2f92257ed62586ee702986ec /src/plugins/serialterminal | |
parent | b11a6900e601e605475e94f46e2f5d85ba22a2df (diff) |
Build: Change plugin json.in files to CMake style
They were still using variables in qmake style.
Directly use CMake variables in the json.in files and remove the no
longer needed escaping of quotes.
Adds a fatal message if it detects the old style in a .json.in file for
easier porting.
Change-Id: I8de88d8db2da55781f0e9d72eda03f943723188e
Reviewed-by: Leena Miettinen <[email protected]>
Reviewed-by: Cristian Adam <[email protected]>
Diffstat (limited to 'src/plugins/serialterminal')
-rw-r--r-- | src/plugins/serialterminal/SerialTerminal.json.in | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/plugins/serialterminal/SerialTerminal.json.in b/src/plugins/serialterminal/SerialTerminal.json.in index efff034b32a..78ac127ab4d 100644 --- a/src/plugins/serialterminal/SerialTerminal.json.in +++ b/src/plugins/serialterminal/SerialTerminal.json.in @@ -1,20 +1,20 @@ { - \"Name\" : \"SerialTerminal\", - \"Version\" : \"$$QTCREATOR_VERSION\", - \"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\", - \"Vendor\" : \"Benjamin Balga\", - \"Experimental\" : true, - \"DisabledByDefault\" : true, - \"Copyright\" : \"(C) 2018 Benjamin Balga\", - \"License\" : [ \"Commercial Usage\", - \"\", - \"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\", - \"\", - \"GNU General Public License Usage\", - \"\", - \"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\" + "Name" : "SerialTerminal", + "Version" : "${IDE_VERSION}", + "CompatVersion" : "${IDE_VERSION_COMPAT}", + "Vendor" : "Benjamin Balga", + "Experimental" : true, + "DisabledByDefault" : true, + "Copyright" : "(C) 2018 Benjamin Balga", + "License" : [ "Commercial Usage", + "", + "Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.", + "", + "GNU General Public License Usage", + "", + "Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html." ], - \"Description\" : \"Serial Port Terminal\", - \"Url\" : \"http://www.qt.io\", - $$dependencyList + "Description" : "Serial Port Terminal", + "Url" : "http://www.qt.io", + ${IDE_PLUGIN_DEPENDENCIES} } |