mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-18 19:03:02 +08:00
Fixed qpid-proton port to not need system python
Tried to build the last version of the port on a fresh build but wouldn't work properly unless python.exe was already installed on the system. This version explicitly uses the vcpkg provided python.
This commit is contained in:
parent
e6c65b93b1
commit
70ade5e03a
@ -2,6 +2,7 @@ include(vcpkg_common_functions)
|
||||
|
||||
# Use this throughout rather than literal string
|
||||
set(QPID_PROTON_VERSION 0.18.1)
|
||||
vcpkg_find_acquire_program(PYTHON2)
|
||||
|
||||
# Go grab the code. Set SHA512 to 1 to get correct sha from download
|
||||
vcpkg_from_github(
|
||||
@ -13,7 +14,9 @@ vcpkg_from_github(
|
||||
)
|
||||
|
||||
# Run cmake configure step
|
||||
vcpkg_configure_cmake(SOURCE_PATH ${SOURCE_PATH})
|
||||
vcpkg_configure_cmake(SOURCE_PATH ${SOURCE_PATH}
|
||||
OPTIONS
|
||||
-DPYTHON_EXECUTABLE=${PYTHON2})
|
||||
|
||||
# Run cmake install step
|
||||
vcpkg_install_cmake()
|
||||
@ -33,4 +36,4 @@ file(RENAME ${CURRENT_PACKAGES_DIR}/share/${PORT}/LICENSE
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/lib/cmake)
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/cmake)
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/cmake)
|
||||
|
Loading…
Reference in New Issue
Block a user