-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFindAzureStorageCpp.cmake
More file actions
71 lines (67 loc) · 1.48 KB
/
Copy pathFindAzureStorageCpp.cmake
File metadata and controls
71 lines (67 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Find Azure Blob Storage Cpp package
#
# Tries to find the Azure Blob Storage (C++ REST SDK) library
#
include(LibFindMacros)
# Include dir
find_path(AZURE_STORAGE_INCLUDE_DIR
NAMES
stdafx.h
targetver.h
was/auth.h
was/blob.h
was/common.h
was/core.h
was/error_code_strings.h
was/queue.h
was/retry_policies.h
was/service_client.h
was/storage_account.h
was/table.h
wascore/async_semaphore.h
wascore/basic_types.h
wascore/blobstreams.h
wascore/constants.h
wascore/executor.h
wascore/hashing.h
wascore/logging.h
wascore/protocol.h
wascore/protocol_json.h
wascore/protocol_xml.h
wascore/resources.h
wascore/streambuf.h
wascore/streams.h
wascore/util.h
wascore/xmlhelpers.h
wascore/xmlstream.h
PATHS
${AZURE_STORAGE_PKGCONF_INCLUDE_DIRS}
${AZURE_STORAGE_DIR}
$ENV{AZURE_STORAGE_DIR}
/usr/local/include
/usr/include
../../azure-storage-cpp
PATH_SUFFIXES
Release/include
include
)
# Library
find_library(AZURE_STORAGE_LIBRARY
NAMES
azurestorage
PATHS
${AZURE_STORAGE_PKGCONF_LIBRARY_DIRS}
${AZURE_STORAGE_DIR}
${AZURE_STORAGE_DIR}
$ENV{AZURE_STORAGE_DIR}
/usr/local
/usr
../../casablanca
PATH_SUFFIXES
lib
Release/build.release/Binaries/
build.release/Binaries/
)
set(AZURE_STORAGE_PROCESS_LIBS AZURE_STORAGE_LIBRARY)
set(AZURE_STORAGE_PROCESS_INCLUDES AZURE_STORAGE_INCLUDE_DIR)
libfind_process(AZURE_STORAGE)