2012-04-29 20:52:25 +02:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco Util
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
|
|
|
objects = AbstractConfiguration Application ConfigurationMapper \
|
|
|
|
ConfigurationView HelpFormatter IniFileConfiguration LayeredConfiguration \
|
2022-05-26 16:40:13 +02:00
|
|
|
LocalConfigurationView LoggingConfigurator LoggingSubsystem MapConfiguration \
|
2012-04-29 20:52:25 +02:00
|
|
|
Option OptionException OptionProcessor OptionSet \
|
|
|
|
PropertyFileConfiguration Subsystem SystemConfiguration \
|
2015-02-02 07:00:26 +01:00
|
|
|
FilesystemConfiguration ServerApplication \
|
2012-04-29 20:52:25 +02:00
|
|
|
Validator IntValidator RegExpValidator OptionCallback \
|
2015-02-02 07:00:26 +01:00
|
|
|
Timer TimerTask
|
2012-04-29 20:52:25 +02:00
|
|
|
|
|
|
|
ifeq ($(findstring MinGW, $(POCO_CONFIG)), MinGW)
|
|
|
|
objects += WinService WinRegistryKey WinRegistryConfiguration
|
|
|
|
endif
|
|
|
|
|
|
|
|
target = PocoUtil
|
|
|
|
target_version = $(LIBVERSION)
|
2015-02-02 07:00:26 +01:00
|
|
|
target_libs = PocoFoundation
|
|
|
|
|
|
|
|
ifndef POCO_UTIL_NO_XMLCONFIGURATION
|
|
|
|
objects += XMLConfiguration
|
|
|
|
target_libs += PocoXML
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef POCO_UTIL_NO_JSONCONFIGURATION
|
|
|
|
objects += JSONConfiguration
|
|
|
|
target_libs += PocoJSON
|
|
|
|
endif
|
2012-04-29 20:52:25 +02:00
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|