if (NOT EXISTS "/mnt/mint/home/seanl/mnt/public/Repos/ladybird/Build/vcpkg/buildtrees/sdl3/x64-linux-dynamic-rel/install_manifest.txt")
    message(FATAL_ERROR "Cannot find install manifest: \"/mnt/mint/home/seanl/mnt/public/Repos/ladybird/Build/vcpkg/buildtrees/sdl3/x64-linux-dynamic-rel/install_manifest.txt\"")
endif()

file(READ "/mnt/mint/home/seanl/mnt/public/Repos/ladybird/Build/vcpkg/buildtrees/sdl3/x64-linux-dynamic-rel/install_manifest.txt" files)
string(REGEX REPLACE "\n" ";" files "${files}")
foreach(file ${files})
    message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
    execute_process(
        COMMAND /mnt/mint/home/seanl/mnt/public/Repos/ladybird/Build/vcpkg/downloads/tools/cmake-3.31.10-linux/cmake-3.31.10-linux-x86_64/bin/cmake -E remove "$ENV{DESTDIR}${file}"
        OUTPUT_VARIABLE rm_out
        RESULT_VARIABLE rm_retval
    )
    if(NOT ${rm_retval} EQUAL 0)
        message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
    endif (NOT ${rm_retval} EQUAL 0)
endforeach()
