blob: ec19f63789860283045662421071c2a276582d63 (
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
|
# **********************************************************************
#
# 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 = IceUtil
IceUtil_targetdir := $(libdir)
IceUtil_cppflags := $(if $(filter yes,$(libbacktrace)),-DICE_LIBBACKTRACE)
ifeq ($(os),Darwin)
IceUtil_excludes = src/IceUtil/ConvertUTF.cpp src/IceUtil/Unicode.cpp
endif
# Always enable the static configuration for the IceUtil library and never
# install it.
IceUtil_always_enable_configs := static
IceUtil_always_enable_platforms := $(build-platform)
IceUtil_install_configs := none
projects += $(project)
|