-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade to arrow-1.0.0. * Add Findutf8proc. Revert back to Snappy as LZ4 is not supported due to ongoing compatibility issues. * Remove -DUTF8PROC_STATIC, only relevant when compiling Arrow itself. * Point to vcpkg master with Arrow 1.0.0 PR merged in * Specific commit didn't work, point to master instead * Add pkg-config dependency on macOS * Point at proposed vcpkg arrow-1.0.1 update. * Point vcpkg to master right after Arrow 1.0.1 PR. * Bump version to 2.3.0-beta1
- Loading branch information
Showing
12 changed files
with
33 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
include(SelectLibraryConfigurations) | ||
include(FindPackageHandleStandardArgs) | ||
|
||
find_path(utf8proc_INCLUDE_DIR utf8proc.h) | ||
|
||
if (NOT utf8proc_LIBRARIES) | ||
find_library(utf8proc_LIBRARY_RELEASE NAMES utf8proc utf8proc_static PATHS ${CMAKE_PREFIX_PATH}/lib NO_DEFAULT_PATH) | ||
find_library(utf8proc_LIBRARY_DEBUG NAMES utf8proc utf8proc_static PATHS ${CMAKE_PREFIX_PATH}/debug/lib NO_DEFAULT_PATH) | ||
SELECT_LIBRARY_CONFIGURATIONS(utf8proc) | ||
endif() | ||
|
||
mark_as_advanced(utf8proc_FOUND utf8proc_INCLUDE_DIR utf8proc_LIBRARY_RELEASE utf8proc_LIBRARY_DEBUG) | ||
find_package_handle_standard_args(utf8proc REQUIRED_VARS utf8proc_INCLUDE_DIR utf8proc_LIBRARIES) | ||
|
||
if(utf8proc_FOUND) | ||
set(utf8proc_INCLUDE_DIRS ${utf8proc_INCLUDE_DIR}) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
https://github.com/microsoft/vcpkg.git 2020.06 | ||
https://github.com/Microsoft/vcpkg.git aea911913663ee417391e64c74814b34c7da0345 |