33 lines
718 B
Bash
Executable File
33 lines
718 B
Bash
Executable File
#!/bin/bash
|
|
# Clean script for McRogueFace - removes build artifacts
|
|
|
|
# Colors for output
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
YELLOW='\033[1;33m'
|
|
NC='\033[0m' # No Color
|
|
|
|
echo -e "${YELLOW}Cleaning McRogueFace build artifacts...${NC}"
|
|
|
|
# Remove build directory
|
|
if [ -d "build" ]; then
|
|
echo "Removing build directory..."
|
|
rm -rf build
|
|
fi
|
|
|
|
# Remove CMake artifacts from project root
|
|
echo "Removing CMake artifacts from project root..."
|
|
rm -f CMakeCache.txt
|
|
rm -f cmake_install.cmake
|
|
rm -f Makefile
|
|
rm -rf CMakeFiles
|
|
|
|
# Remove compiled executable from project root
|
|
rm -f mcrogueface
|
|
|
|
# Remove any test artifacts
|
|
rm -f test_script.py
|
|
rm -rf test_venv
|
|
rm -f python3 # symlink
|
|
|
|
echo -e "${GREEN}Clean complete!${NC}" |