Commit graph

2 commits

Author SHA1 Message Date
Sam Lantinga
8a8ec5071e Fixed bug 3867 - Can't find install_manifest.txt when running 'uninstall' target
Steve Robinson

When I try to build the 'uninstall' target in CMake when SDL2 is added to a subdirectory of my project, I get this error:

1>CMake Error at cmake_uninstall.cmake:2 (message):
1>  Cannot find install manifest:
1>  "D:/Code/sdl2-tutorial/_build/3rdparty/SDL2/SDL2-2.0.6/install_manifest.txt"

The install_manifest.txt is actually in the top-level binary directory, not the project-specific binary directory.

To fix it, change all instances of:
CMAKE_CURRENT_BINARY_DIR

To:
CMAKE_BINARY_DIR

In:
cmake_uninstall.cmake.in
2017-10-12 08:44:45 -07:00
Wander Lairson Costa
c38d784fc2 Add suport for "make uninstall" to cmake.
--HG--
extra : rebase_source : 2769e11d0295638a1c4aea6118b984ece01ed4ba
2014-06-16 10:58:09 -03:00