mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-20 15:57:55 +08:00
215a253559
Pass `share/pkgconfig` instead of `debug/share/pkgconfig`: The `share` location is for config-independent data. Integrate `CURRENT_PACKAGES_DIR` locations. Change the function interface to take a CONFIG parameter instead of prefix list (suggested below). Use `z_vcpkg_setup_pkgconfig_path` also for `vcpkg_fixup_pkgconfig` (which already had proper handling of `CURRENT_PACKAGES_DIR` and `share`). Remove redundant trailing slash. Extend unit test. Fixes consuming `wayland-protocols` and similar.
54 lines
2.2 KiB
CMake
54 lines
2.2 KiB
CMake
function(z_vcpkg_setup_pkgconfig_path)
|
|
cmake_parse_arguments(PARSE_ARGV 0 "arg" "" "CONFIG" "")
|
|
|
|
if("${arg_CONFIG}" STREQUAL "")
|
|
message(FATAL_ERROR "CONFIG is required.")
|
|
endif()
|
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
|
message(FATAL_ERROR "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
|
endif()
|
|
|
|
foreach(envvar IN ITEMS PKG_CONFIG PKG_CONFIG_PATH)
|
|
if(DEFINED ENV{${envvar}})
|
|
set("z_vcpkg_env_backup_${envvar}" "$ENV{${envvar}}" PARENT_SCOPE)
|
|
else()
|
|
unset("z_vcpkg_env_backup_${envvar}" PARENT_SCOPE)
|
|
endif()
|
|
endforeach()
|
|
|
|
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(prefix IN ITEMS "${CURRENT_INSTALLED_DIR}" "${CURRENT_PACKAGES_DIR}")
|
|
vcpkg_host_path_list(PREPEND ENV{PKG_CONFIG_PATH} "${prefix}/share/pkgconfig")
|
|
if(arg_CONFIG STREQUAL "RELEASE")
|
|
vcpkg_host_path_list(PREPEND ENV{PKG_CONFIG_PATH} "${prefix}/lib/pkgconfig")
|
|
# search order is lib, share, external
|
|
elseif(arg_CONFIG STREQUAL "DEBUG")
|
|
vcpkg_host_path_list(PREPEND ENV{PKG_CONFIG_PATH} "${prefix}/debug/lib/pkgconfig")
|
|
# search order is debug/lib, share, external
|
|
else()
|
|
message(FATAL_ERROR "CONFIG must be either RELEASE or DEBUG.")
|
|
endif()
|
|
endforeach()
|
|
# total search order is current packages dir, current installed dir, external
|
|
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()
|
|
|
|
foreach(envvar IN ITEMS PKG_CONFIG PKG_CONFIG_PATH)
|
|
if(DEFINED z_vcpkg_env_backup_${envvar})
|
|
set("ENV{${envvar}}" "${z_vcpkg_env_backup_${envvar}}")
|
|
else()
|
|
unset("ENV{${envvar}}")
|
|
endif()
|
|
endforeach()
|
|
endfunction()
|