wizard.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**************************************************************************
  4. **
  5. ** This file is part of Qt Creator
  6. **
  7. ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
  8. **
  9. ** Contact: Nokia Corporation (qt-info@nokia.com)
  10. **
  11. **
  12. ** GNU Lesser General Public License Usage
  13. **
  14. ** This file may be used under the terms of the GNU Lesser General Public
  15. ** License version 2.1 as published by the Free Software Foundation and
  16. ** appearing in the file LICENSE.LGPL included in the packaging of this file.
  17. ** Please review the following information to ensure the GNU Lesser General
  18. ** Public License version 2.1 requirements will be met:
  19. ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
  20. **
  21. ** In addition, as a special exception, Nokia gives you certain additional
  22. ** rights. These rights are described in the Nokia Qt LGPL Exception
  23. ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
  24. **
  25. ** Other Usage
  26. **
  27. ** Alternatively, this file may be used in accordance with the terms and
  28. ** conditions contained in a signed written agreement between you and Nokia.
  29. **
  30. ** If you have questions regarding the use of this file, please contact
  31. ** Nokia at qt-info@nokia.com.
  32. **
  33. **************************************************************************/
  34. Custom project wizard configuration example file. Note that by convention,
  35. the project file goes last.
  36. The "class" and "firstpage" attributes specify that it is a Qt 4 wizard and
  37. leave room for the Qt 4 target page.
  38. -->
  39. <wizard version="1" kind="project"
  40. class="qt4project" firstpage="10"
  41. id="A.HelloWorld" category="B.CustomProjects">
  42. <icon>cordovaqt64.png</icon>
  43. <description>Creates a cordova-qt project</description>
  44. <displayname>Cordova Qt example</displayname>;
  45. <displaycategory>Cordova Qt</displaycategory>
  46. <files>
  47. <file source="main.cpp" openeditor="true"/>
  48. <file source="deployment.pri"/>
  49. <file source="src/cordova.cpp"/>
  50. <file source="src/cplugin.cpp"/>
  51. <file source="src/pluginregistry.cpp"/>
  52. <file source="src/plugins/notification.cpp"/>
  53. <file source="src/plugins/geolocation.cpp"/>
  54. <file source="src/plugins/fileapi.cpp"/>
  55. <file source="src/plugins/device.cpp"/>
  56. <file source="src/plugins/console.cpp"/>
  57. <file source="src/plugins/connection.cpp"/>
  58. <file source="src/plugins/compass.cpp"/>
  59. <file source="src/plugins/accelerometer.cpp"/>
  60. <file source="src/plugins/events.cpp"/>
  61. <file source="src/plugins/contacts.cpp"/>
  62. <file source="src/plugins/camera.cpp"/>
  63. <file source="src/cordova.h"/>
  64. <file source="src/cplugin.h"/>
  65. <file source="src/pluginregistry.h"/>
  66. <file source="src/plugins/notification.h"/>
  67. <file source="src/plugins/geolocation.h"/>
  68. <file source="src/plugins/fileapi.h"/>
  69. <file source="src/plugins/device.h"/>
  70. <file source="src/plugins/console.h"/>
  71. <file source="src/plugins/connection.h"/>
  72. <file source="src/plugins/compass.h"/>
  73. <file source="src/plugins/accelerometer.h"/>
  74. <file source="src/plugins/events.h"/>
  75. <file source="src/plugins/contacts.h"/>
  76. <file source="src/plugins/camera.h"/>
  77. <file source="src/plugins/cameraresolution.h"/>
  78. <file source="qml/main_qt4.qml"/>
  79. <file source="qml/main.qml"/>
  80. <file source="qml/main_harmattan_qt5.qml"/>
  81. <file source="qml/main_qt5.qml"/>
  82. <file source="qml/cordova_wrapper.js"/>
  83. <file source="xml/plugins.xml"/>
  84. <file source="xml/plugins.xml"/>
  85. <file source="www/basic.js"/>
  86. <file source="www/index.html"/>
  87. <file source="www/index_qt5.html"/>
  88. <file source="www/js/accelerometer.js"/>
  89. <file source="www/js/accelerometer.js"/>
  90. <file source="www/js/camera.js"/>
  91. <file source="www/js/compass.js"/>
  92. <file source="www/js/connection.js"/>
  93. <file source="www/js/console.js"/>
  94. <file source="www/js/contacts.js"/>
  95. <file source="www/js/cordova.js"/>
  96. <file source="www/js/cordova.qt5.js"/>
  97. <file source="www/js/cordova.qt.js"/>
  98. <file source="www/js/device.js"/>
  99. <file source="www/js/file.js"/>
  100. <file source="www/js/geolocation.js"/>
  101. <file source="www/js/notification.js"/>
  102. <file source="cordovaqt.pro" target="%ProjectName%.pro" openproject="true"/>
  103. </files>
  104. </wizard>