mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 01:11:02 +00:00
ICU-3576 Improve building and using static libraries
X-SVN-Rev: 15081
This commit is contained in:
parent
13533a4657
commit
3f6a9fdd2f
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
## Cygwin-specific setup
|
||||
## Copyright (c) 2001-2004, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
@ -81,7 +80,7 @@ I18N_STUBNAME = in
|
|||
|
||||
## Link commands to link to ICU libs
|
||||
LIBICUDT= $(LIBDIR)/$(LIBICU)$(DATA_STUBNAME)$(ICULIBSUFFIX).lib
|
||||
LIBICUUC= $(LIBDIR)/$(LIBICU)$(COMMON_STUBNAME)$(ICULIBSUFFIX).lib
|
||||
LIBICUUC= $(LIBDIR)/$(LIBICU)$(COMMON_STUBNAME)$(ICULIBSUFFIX).lib $(LIBICUDT)
|
||||
LIBICUI18N= $(LIBDIR)/$(LIBICU)$(I18N_STUBNAME)$(ICULIBSUFFIX).lib
|
||||
LIBICULE= $(LIBDIR)/$(LIBICU)$(LAYOUT_STUBNAME)$(ICULIBSUFFIX).lib
|
||||
LIBICULX= $(LIBDIR)/$(LIBICU)$(LAYOUTEX_STUBNAME)$(ICULIBSUFFIX).lib
|
||||
|
@ -89,6 +88,11 @@ LIBCTESTFW= $(top_builddir)/tools/ctestfw/$(LIBICU)$(CTESTFW_STUBNAME)$(ICULIBSU
|
|||
LIBICUTOOLUTIL= $(LIBDIR)/$(LIBICU)$(TOOLUTIL_STUBNAME)$(ICULIBSUFFIX).lib
|
||||
LIBICUIO= $(LIBDIR)/$(LIBICU)$(IO_STUBNAME)$(ICULIBSUFFIX).lib
|
||||
|
||||
## If we can't use the shared libraries, use the static libraries
|
||||
ifneq ($(ENABLE_SHARED),YES)
|
||||
LIBICU=$(LIBSICU)
|
||||
endif
|
||||
|
||||
# Current full path directory.
|
||||
CURR_FULL_DIR=$(shell cygpath -wma .)
|
||||
# Current full path directory for use in source code in a -D compiler option.
|
||||
|
|
Loading…
Add table
Reference in a new issue