🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
207 B

  1. #!/bin/sh
  2. if [ ! -f "./install_manifest.txt" ]; then
  3. echo "ERROR: This needs to be run from your CMake build directory after installing." 1>&2
  4. exit 1
  5. fi
  6. xargs rm -vf < install_manifest.txt
  7. exit 0