windows-amd64-prebuilt-libr.../vcpkg/scripts/cmake/vcpkg_get_program_files_platform_bitness.cmake
2020-10-10 14:36:42 +02:00

10 lines
232 B
CMake

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