Makefile 833 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Makefile
  3. #
  4. # Makefile for Poco Util testsuite
  5. #
  6. include $(POCO_BASE)/build/rules/global
  7. objects = AbstractConfigurationTest ConfigurationTestSuite \
  8. ConfigurationMapperTest ConfigurationViewTest Driver \
  9. HelpFormatterTest IniFileConfigurationTest LayeredConfigurationTest \
  10. LocalConfigurationViewTest LoggingConfiguratorTest MapConfigurationTest \
  11. OptionProcessorTest OptionSetTest OptionTest \
  12. OptionsTestSuite PropertyFileConfigurationTest \
  13. SystemConfigurationTest UtilTestSuite XMLConfigurationTest \
  14. FilesystemConfigurationTest ValidatorTest \
  15. TimerTestSuite TimerTest \
  16. JSONConfigurationTest
  17. target = testrunner
  18. target_version = 1
  19. target_libs = PocoUtil PocoXML PocoJSON PocoFoundation CppUnit
  20. include $(POCO_BASE)/build/rules/exec
  21. ifdef POCO_UNBUNDLED
  22. SYSLIBS += -lz -lpcre -lexpat
  23. endif