Hello, I'm creating a plugin that needs to install a couple of script files. In doing so I encountered a problem.
First a question. Is it allowed to install these support files in share/qtcreator/myplugin/ ? Or is there some etiquette that says not to do that? In trying to install these files, I modified the .pro file of the plugin like so: Note: "..." replaces several other lines. 1. ... 2. 3. OTHER_FILES = ... \ 4. tests/testscript.qs 5. 6. ... 7. 8. testscriptfiles.files += tests/testscript.qs 9. testscriptfiles.path = $$IDE_BUILD_TREE/share/qtcreator/myplugin/scripts 10. INSTALLS += testscriptfiles 11. 12. ... However, the script doesn't get installed. How can I do this? _______________________________________________ Qt-creator mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-creator
