I installed OpenKinect/libfreenect with cmake in OSX.开发者_Go百科
I wanna uninstall it.But, I dont know how to do it.
Please teach me.
If your build directory contains cmake_uninstall.cmake file, you can run
cmake -P cmake_uninstall.cmake
If not, you can only use install_manifest.txt file to manually delete all files. Also check available make targets, maybe there is "uninstall" or "deinstall" target.
精彩评论