forked from qt-creator/qt-creator
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 <riitta-leena.miettinen@qt.io> Reviewed-by: Cristian Adam <cristian.adam@qt.io>
18 lines
388 B
JSON
18 lines
388 B
JSON
{
|
|
//! [1]
|
|
"Name" : "Example",
|
|
"Version" : "0.0.1",
|
|
"CompatVersion" : "0.0.1",
|
|
//! [1]
|
|
//! [2]
|
|
"Vendor" : "MyCompany",
|
|
"Copyright" : "(C) MyCompany",
|
|
"License" : "Put short license information here",
|
|
"Description" : "Put a short description of your plugin here",
|
|
"Url" : "https://www.mycompany.com",
|
|
//! [2]
|
|
//! [3]
|
|
${IDE_PLUGIN_DEPENDENCIES}
|
|
//! [3]
|
|
}
|