aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/cmake/vcpkg_clean_msbuild.cmake
blob: 904f40ae89c04972ae0079c4883ac3a59ef19c5e (plain)
1
2
3
4
5
6
7
8
9
function(vcpkg_clean_msbuild)
    if(NOT ARGC EQUAL 0)
        message(WARNING "vcpkg_clean_msbuild was passed extra arguments: ${ARGV}")
    endif()
    file(REMOVE_RECURSE
        "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg"
        "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel"
    )
endfunction()