mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
1e90f64bbf
* fix(NumericString): properly mark uIntToString deprecated #4304 * dev(runLibtests): allow to specify test to run * fix(NotificationCenter): data race #4307 * fix(DirectoryWatcher): data race #4308 * fix(ArchiveStrategy): data race #4309 * fix(ActiveThread): data race #4310 * fix(Task): Cancelled Task shouldn't start running #4311 (WIP) * fix(String): ignore clang loop unrolling warnings * fix(TaskManager): task ownership #4311 * chore(FIFOEventTest): fix unused var warning; disable benchmark in test * fix(Task): remove unnecessary mutex (and prevent cyclic locking reported by TSAN) * fix(CryptoTest): disable testEncryptDecryptGCM * fix(ci): typo * fix(NotificationCenter): disable and clear observers in dtor (#4307) --------- Co-authored-by: Matej Kenda <matejken@gmail.com>
38 lines
785 B
Makefile
38 lines
785 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco Crypto testsuite
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
# Note: linking order is important, do not change it.
|
|
ifeq ($(POCO_CONFIG),FreeBSD)
|
|
SYSLIBS += -lssl -lcrypto -lz
|
|
else
|
|
ifeq ($(POCO_CONFIG),QNX)
|
|
SYSLIBS += -lssl -lcrypto -lz
|
|
else
|
|
ifeq ($(findstring AIX, $(POCO_CONFIG)), AIX)
|
|
SYSLIBS += -lssl_a -lcrypto_a -lz -ldl
|
|
else
|
|
ifeq ($(POCO_CONFIG),Darwin)
|
|
SYSLIBS += -lssl -lcrypto -lz
|
|
else
|
|
SYSLIBS += -lssl -lcrypto -lz -ldl
|
|
endif # Darwin
|
|
endif # AIX
|
|
endif # QNX
|
|
endif # FreeBSD
|
|
|
|
objects = CryptoTestSuite Driver \
|
|
CryptoTest DigestEngineTest ECTest \
|
|
EVPTest RSATest PKCS12ContainerTest \
|
|
EnvelopeTest
|
|
|
|
target = testrunner
|
|
target_version = 1
|
|
target_libs = PocoCrypto PocoFoundation CppUnit
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|