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