blob: 9be9b79ead3f783ab4dd6bdf5144c95f446f4c03 (
plain)
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
|
# **********************************************************************
#
# Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
$(project)_libraries := IceSSL
IceSSL_targetdir := $(libdir)
IceSSL_dependencies := Ice
IceSSL_cppflags := -DICESSL_API_EXPORTS
IceSSL_sliceflags := --include-dir IceSSL
#
# Exclude sources that are not build with the default
# implementation.
#
IceSSL_excludes += $(wildcard src/IceSSL/SChannel*.cpp)
IceSSL_excludes += $(wildcard src/IceSSL/UWP*.cpp)
ifeq ($(os),Darwin)
IceSSL_excludes += $(wildcard src/IceSSL/OpenSSL*.cpp)
else
IceSSL_cppflags += -DICESSL_OPENSSL_API_EXPORTS
IceSSL_excludes += $(wildcard src/IceSSL/SecureTransport*.cpp)
endif
projects += $(project)
|