diff options
| author | Erwan BERNARD <edmBernard@users.noreply.github.com> | 2018-10-22 13:25:37 +0200 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-10-22 04:25:37 -0700 |
| commit | 03266cc498138f026cbcf5754c8ff18a31c118d7 (patch) | |
| tree | 2a5da966303946b7cabcdf44e4a074b13bf5bce2 /ports/orc/usage | |
| parent | eb46ce1fbbdddcda3718e438d53171713e1d25d9 (diff) | |
| download | vcpkg-03266cc498138f026cbcf5754c8ff18a31c118d7.tar.gz vcpkg-03266cc498138f026cbcf5754c8ff18a31c118d7.zip | |
[orc] add apache orc library (#4496)
* [orc] add apache orc library
* [orc] Simplify patch. Note in usage that no targets are available. Don't build tools on windows because they are not supported.
* [orc] Move tools to tools/orc/ to fix Linux build.
* [orc] fix tools ouput folder
Diffstat (limited to 'ports/orc/usage')
| -rw-r--r-- | ports/orc/usage | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ports/orc/usage b/ports/orc/usage new file mode 100644 index 000000000..6a20ccb89 --- /dev/null +++ b/ports/orc/usage @@ -0,0 +1,10 @@ +The package orc does not provide CMake targets: + + find_package(protobuf CONFIG REQUIRED) + find_package(ZLIB REQUIRED) + find_package(Snappy CONFIG REQUIRED) + + find_library(LZ4_LIBRARY NAMES lz4d lz4) + find_library(ORC_LIBRARY NAMES orc) + + target_link_libraries(main PRIVATE ${ORC_LIBRARY} protobuf::libprotoc protobuf::libprotobuf Snappy::snappy ${LZ4_LIBRARY} ZLIB::ZLIB) |
