blob: b2819171ac70ccf59de9dfa7b4bca8bda55c3b8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# **********************************************************************
#
# 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.
#
# **********************************************************************
$(test)_dependencies = IceSSL Ice TestCommon
#
# Disable var tracking assignments for Linux with this test
#
ifneq ($(linux_id),)
$(test)_cppflags += $(if $(filter yes,$(OPTIMIZE)),-fno-var-tracking-assignments)
endif
# Need to load certificates with functions from src/IceSSL/Util.h
$(test)[iphoneos]_cppflags := -Isrc
$(test)[iphonesimulator]_cppflags := -Isrc
tests += $(test)
|