Qt 6.11 is out! See what's new in the release
blog
Customise uninstall rule?
Qt Creator and other tools
1
Posts
1
Posters
1.4k
Views
1
Watching
-
Hello,
I use the extra rule to copy my header files while preserving directory structure for the INSTALL rule. The problem is that the uninstall make target does not remove any of these files. Is there any way to affect the behaviour of the uninstall rule?
@ INSTALL_PREFIX = /var/tmp/minnal
target.path = $$INSTALL_PREFIX/lib
includes.path = $$INSTALL_PREFIX/include
includes.extra = mkdir $$INSTALL_PREFIX/include; cp -Rp ../../src/api/servlet $$INSTALL_PREFIX/include; find $$INSTALL_PREFIX -type d -name .svn | xargs rm -rf; find $$INSTALL_PREFIX -type f -name "*.cpp" | xargs rm -f@Thanks
Rakesh