Adding another patch enabling to build HPX if UNICODE is set

This commit is contained in:
Hartmut Kaiser 2017-05-22 16:29:09 -05:00
parent 3b55cb0754
commit 633d52348b
2 changed files with 14 additions and 4 deletions

View File

@ -1,5 +1,5 @@
Source: hpx
Version: 1.0.0
Version: 1.0.0-3
Build-Depends: boost, hwloc
Description: The C++ Standards Library for Concurrency and Parallelism
HPX is a C++ Standards Library for Concurrency and Parallelism. It implements all of the corresponding facilities as defined by the C++ Standard. Additionally, in HPX we implement functionalities proposed as part of the ongoing C++ standardization process. We also extend the C++ Standard APIs to the distributed case.

View File

@ -1,8 +1,9 @@
include(vcpkg_common_functions)
if(NOT VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
message(FATAL_ERROR "HPX can be built with dynamic linking only")
endif()
if (VCPKG_LIBRARY_LINKAGE STREQUAL static)
message(STATUS "Warning: Static building of HPX not supported yet. Building dynamic.")
set(VCPKG_LIBRARY_LINKAGE dynamic)
endif()
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/hpx_1.0.0)
@ -29,6 +30,15 @@ vcpkg_download_distfile(DIFF
)
vcpkg_apply_patches(SOURCE_PATH ${SOURCE_PATH} PATCHES ${DIFF})
# apply hotfix to fix issues when building with UNICODE enabled
vcpkg_download_distfile(DIFF
URLS "http://stellar-group.org/files/Making-sure-UNICODE-on-Windows-does-not-break-by-default.diff"
FILENAME "Making-sure-UNICODE-on-Windows-does-not-break-by-default.diff"
SHA512 8fcdb36307702d64b9d2b26920374a6c5a29a50d125305dc95926c4cbc91215cb0c72ede83b06d0fc007fe7b2283845e08351bd45f11f3677f0d3db4ac8f9424
)
vcpkg_apply_patches(SOURCE_PATH ${SOURCE_PATH} PATCHES ${DIFF})
SET(BOOST_PATH "${CURRENT_INSTALLED_DIR}/share/boost")
SET(HWLOC_PATH "${CURRENT_INSTALLED_DIR}/share/hwloc")