owl icon indicating copy to clipboard operation
owl copied to clipboard

Need a reasonable way to uninstall

Open WolfLink opened this issue 4 years ago • 2 comments

I installed the program before realizing my card was not supported. I would like to uninstall the program, but currently it seems the only way to know exactly what the installer did is to dig through the makefiles.

WolfLink avatar Nov 28 '20 08:11 WolfLink

To uninstall, simply run

rm /usr/local/bin/owl

(it's the default CMake install path)

schmittner avatar Nov 30 '20 08:11 schmittner

Can simply run xargs rm < install_manifest.txt under the build/ directory (with proper permission), CMake doesn't support uninstall by default.

Ref:

  • https://gitlab.kitware.com/cmake/community/-/wikis/FAQ#can-i-do-make-uninstall-with-cmake

PeterDaveHello avatar Jul 02 '21 06:07 PeterDaveHello