2012-04-29 18:52:25 +00:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco Util testsuite
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
|
|
|
objects = AbstractConfigurationTest ConfigurationTestSuite \
|
|
|
|
ConfigurationMapperTest ConfigurationViewTest Driver \
|
|
|
|
HelpFormatterTest IniFileConfigurationTest LayeredConfigurationTest \
|
2022-05-26 12:00:41 -05:00
|
|
|
LocalConfigurationViewTest LoggingConfiguratorTest MapConfigurationTest \
|
2012-04-29 18:52:25 +00:00
|
|
|
OptionProcessorTest OptionSetTest OptionTest \
|
|
|
|
OptionsTestSuite PropertyFileConfigurationTest \
|
|
|
|
SystemConfigurationTest UtilTestSuite XMLConfigurationTest \
|
|
|
|
FilesystemConfigurationTest ValidatorTest \
|
2012-07-04 20:48:53 +00:00
|
|
|
TimerTestSuite TimerTest \
|
|
|
|
JSONConfigurationTest
|
2012-04-29 18:52:25 +00:00
|
|
|
|
|
|
|
target = testrunner
|
|
|
|
target_version = 1
|
2012-07-07 16:03:21 +00:00
|
|
|
target_libs = PocoUtil PocoXML PocoJSON PocoFoundation CppUnit
|
2012-04-29 18:52:25 +00:00
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|
2013-01-05 00:04:09 -06:00
|
|
|
|
|
|
|
ifdef POCO_UNBUNDLED
|
|
|
|
SYSLIBS += -lz -lpcre -lexpat
|
|
|
|
endif
|