mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
6b117c9c7e
* [vcpkg docs] Change how documenting port functions works Instead of using `##`, use comment blocks for documentation. Also, add some minor docs and change RST -> MD so we actually get docs generated. * add CI stuff * regenerate docs * fix vcpkg_find_acquire_program to not use _execute_process
24 lines
530 B
CMake
24 lines
530 B
CMake
#[===[.md:
|
|
# vcpkg_get_program_files_platform_bitness
|
|
|
|
Get the Program Files directory of the current platform's bitness:
|
|
either `$ENV{ProgramW6432}` on 64-bit windows,
|
|
or `$ENV{PROGRAMFILES}` on 32-bit windows.
|
|
|
|
## Usage:
|
|
```cmake
|
|
vcpkg_get_program_files_platform_bitness(<variable>)
|
|
```
|
|
#]===]
|
|
|
|
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()
|