yuzu/externals/vcpkg/scripts/cmake/vcpkg_add_to_path.cmake

11 lines
296 B
CMake
Executable File

function(vcpkg_add_to_path)
cmake_parse_arguments(PARSE_ARGV 0 "arg" "PREPEND" "" "")
if(arg_PREPEND)
set(operation PREPEND)
else()
set(operation APPEND)
endif()
vcpkg_host_path_list("${operation}" ENV{PATH} ${arg_UNPARSED_ARGUMENTS})
endfunction()