mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 20:23:41 +08:00
7d2449c346
* [docs] Delete embedded documentation in favor of docs/ Drive-by for the helper ports: 1. "documentation": "https://vcpkg.io/en/docs/README.html" 2. "license": "MIT" 3. Use `include_guard(GLOBAL)` in all script files 4. Make sure any persistent variables are saved to the cache * [docs] Restore empty regenerate.ps1 to satisfy Azure Pipelines * [docs] PR comments
36 lines
1.3 KiB
CMake
36 lines
1.3 KiB
CMake
function(z_vcpkg_setup_pkgconfig_path)
|
|
cmake_parse_arguments(PARSE_ARGV 0 "arg" "" "" "BASE_DIRS")
|
|
|
|
if(NOT DEFINED arg_BASE_DIRS OR "${arg_BASE_DIRS}" STREQUAL "")
|
|
message(FATAL_ERROR "BASE_DIRS is required.")
|
|
endif()
|
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
|
message(FATAL_ERROR "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
|
endif()
|
|
|
|
vcpkg_backup_env_variables(VARS PKG_CONFIG PKG_CONFIG_PATH)
|
|
|
|
vcpkg_find_acquire_program(PKGCONFIG)
|
|
get_filename_component(pkgconfig_path "${PKGCONFIG}" DIRECTORY)
|
|
vcpkg_add_to_path("${pkgconfig_path}")
|
|
|
|
set(ENV{PKG_CONFIG} "${PKGCONFIG}") # Set via native file?
|
|
|
|
foreach(base_dir IN LISTS arg_BASE_DIRS)
|
|
vcpkg_host_path_list(PREPEND ENV{PKG_CONFIG_PATH} "${base_dir}/share/pkgconfig/")
|
|
endforeach()
|
|
|
|
foreach(base_dir IN LISTS arg_BASE_DIRS)
|
|
vcpkg_host_path_list(PREPEND ENV{PKG_CONFIG_PATH} "${base_dir}/lib/pkgconfig/")
|
|
endforeach()
|
|
endfunction()
|
|
|
|
function(z_vcpkg_restore_pkgconfig_path)
|
|
cmake_parse_arguments(PARSE_ARGV 0 "arg" "" "" "")
|
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
|
message(FATAL_ERROR "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
|
endif()
|
|
|
|
vcpkg_restore_env_variables(VARS PKG_CONFIG PKG_CONFIG_PATH)
|
|
endfunction()
|