From 5e5e9297a603b4d7183df736afef0bf20d2d1f89 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Wed, 14 Feb 2024 09:45:20 +0100 Subject: [PATCH] fix(CppUnit): remove Foundation dependency --- CppUnit/Makefile | 1 - CppUnit/cmake/CppUnitConfig.cmake | 3 --- CppUnit/dependencies | 1 - Makefile | 2 +- 4 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 CppUnit/cmake/CppUnitConfig.cmake delete mode 100644 CppUnit/dependencies diff --git a/CppUnit/Makefile b/CppUnit/Makefile index 4890fe667..00c277e46 100644 --- a/CppUnit/Makefile +++ b/CppUnit/Makefile @@ -11,6 +11,5 @@ objects = CppUnitException TestDecorator TestResult TestSuite \ target = CppUnit target_version = 1 -target_libs = PocoFoundation include $(POCO_BASE)/build/rules/lib diff --git a/CppUnit/cmake/CppUnitConfig.cmake b/CppUnit/cmake/CppUnitConfig.cmake deleted file mode 100644 index f78f247b0..000000000 --- a/CppUnit/cmake/CppUnitConfig.cmake +++ /dev/null @@ -1,3 +0,0 @@ -include(CMakeFindDependencyMacro) -find_dependency(PocoFoundation) -include("${CMAKE_CURRENT_LIST_DIR}/PocoDataTargets.cmake") diff --git a/CppUnit/dependencies b/CppUnit/dependencies deleted file mode 100644 index 2e8175e4e..000000000 --- a/CppUnit/dependencies +++ /dev/null @@ -1 +0,0 @@ -Foundation diff --git a/Makefile b/Makefile index 35e4cb357..dd714a4fa 100644 --- a/Makefile +++ b/Makefile @@ -81,7 +81,7 @@ all: libexecs tests samples INSTALLDIR = $(DESTDIR)$(POCO_PREFIX) COMPONENTS = Foundation Encodings XML JSON Util Net Crypto NetSSL_OpenSSL Data Data/SQLite Data/ODBC Data/MySQL Data/PostgreSQL ActiveRecord ActiveRecord/Compiler Zip PageCompiler PageCompiler/File2Page JWT CppParser PDF MongoDB Redis Prometheus -cppunit: Foundation-libexec +cppunit: $(MAKE) -C $(POCO_BASE)/CppUnit CppUnit-clean: