2020-12-02 05:37:26 +08:00
|
|
|
#[===[.md:
|
|
|
|
# vcpkg_clean_executables_in_bin
|
|
|
|
|
|
|
|
Remove specified executables found in `${CURRENT_PACKAGES_DIR}/bin` and `${CURRENT_PACKAGES_DIR}/debug/bin`. If, after all specified executables have been removed, and the `bin` and `debug/bin` directories are empty, then also delete `bin` and `debug/bin` directories.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
```cmake
|
|
|
|
vcpkg_clean_executables_in_bin(
|
|
|
|
FILE_NAMES <file1>...
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
### FILE_NAMES
|
|
|
|
A list of executable filenames without extension.
|
|
|
|
|
|
|
|
## Notes
|
|
|
|
Generally, there is no need to call this function manually. Instead, pass an extra `AUTO_CLEAN` argument when calling `vcpkg_copy_tools`.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
* [czmq](https://github.com/microsoft/vcpkg/blob/master/ports/czmq/portfile.cmake)
|
|
|
|
#]===]
|
|
|
|
|
2021-07-30 00:47:35 +08:00
|
|
|
function(z_vcpkg_clean_executables_in_bin_remove_directory_if_empty directory)
|
|
|
|
if(NOT EXISTS "${directory}")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT IS_DIRECTORY "${directory}")
|
|
|
|
message(FATAL_ERROR "${directory} must be a directory")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
file(GLOB items "${directory}/*")
|
|
|
|
if("${items}" STREQUAL "")
|
|
|
|
file(REMOVE_RECURSE "${directory}")
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
|
2020-05-02 06:28:55 +08:00
|
|
|
function(vcpkg_clean_executables_in_bin)
|
2021-07-30 00:47:35 +08:00
|
|
|
cmake_parse_arguments(PARSE_ARGV 0 arg "" "" "FILE_NAMES")
|
2020-05-02 06:28:55 +08:00
|
|
|
|
2021-07-30 00:47:35 +08:00
|
|
|
if(NOT DEFINED arg_FILE_NAMES)
|
2020-05-02 06:28:55 +08:00
|
|
|
message(FATAL_ERROR "FILE_NAMES must be specified.")
|
|
|
|
endif()
|
|
|
|
|
2021-07-30 00:47:35 +08:00
|
|
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
|
|
|
message(WARNING "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
foreach(file_name IN LISTS arg_FILE_NAMES)
|
2020-05-02 06:28:55 +08:00
|
|
|
file(REMOVE
|
|
|
|
"${CURRENT_PACKAGES_DIR}/bin/${file_name}${VCPKG_TARGET_EXECUTABLE_SUFFIX}"
|
|
|
|
"${CURRENT_PACKAGES_DIR}/debug/bin/${file_name}${VCPKG_TARGET_EXECUTABLE_SUFFIX}"
|
2020-11-06 10:16:47 +08:00
|
|
|
"${CURRENT_PACKAGES_DIR}/bin/${file_name}.pdb"
|
|
|
|
"${CURRENT_PACKAGES_DIR}/debug/bin/${file_name}.pdb"
|
2020-05-02 06:28:55 +08:00
|
|
|
)
|
|
|
|
endforeach()
|
|
|
|
|
2021-07-30 00:47:35 +08:00
|
|
|
z_vcpkg_clean_executables_in_bin_remove_directory_if_empty("${CURRENT_PACKAGES_DIR}/bin")
|
|
|
|
z_vcpkg_clean_executables_in_bin_remove_directory_if_empty("${CURRENT_PACKAGES_DIR}/debug/bin")
|
2020-05-02 06:28:55 +08:00
|
|
|
endfunction()
|