zeek/auxil/vcpkg/scripts/cmake/vcpkg_add_to_path.cmake
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

11 lines
296 B
CMake

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()