blob: ed51b74010ab0fc879a9624d65f88e6f5e1f7957 (
plain)
1
2
3
4
5
6
7
8
9
10
|
function(vcpkg_get_program_files_platform_bitness ret)
set(ret_temp $ENV{ProgramW6432})
if (NOT DEFINED ret_temp)
set(ret_temp $ENV{PROGRAMFILES})
endif()
set(${ret} ${ret_temp} PARENT_SCOPE)
endfunction()
|