1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-10-24 20:07:19 +02:00
Files
SqMod/vendor/POCO/Crypto/testsuite/Makefile
Sandu Liviu Catalin f2b7499f85 Update libraries and make it build on windows.
Still gets some warnings because compilers have changed. But should work.
2025-06-25 22:34:23 +03:00

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