Closed dkobayas-cyber closed 7 months ago
What generator did you use to build Pangolin? make uninstall
will only work when you use the default "Unix Makefile" generator. Could it be that you are using the wrong generator?
In any case, installing and uninstalling like this wit the Ninja generator works:
cmake -B build -G Ninja -D CMAKE_INSTALL_PREFIX=$(pwd)/install
cmake --build build/ --target install
cmake --build build/ --target uninstall
I followed advice from @GoWest279 in https://github.com/stevenlovegrove/Pangolin/issues/438 but I cannot uninstall the Pangolin.
Note: The reason why I want to uninstall in the first place is that I want to clean-install the Pangolin. I accidentally moved around the installed package, which causes ane error:
libpango_display.so: cannot open shared object file: No such file or directory
. If there is any other way to solve this issue, I won't have to uninstall the Pangolin.