mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-17 03:03:23 +02:00

* FTPSClientSession Add class to support FTPS (explicit FTP over SSL). Testcase done but just TestSuite_x64_vs140.vcxproj modified * FTPS project file Added FTPS files to v140 project * FTPS makefile Added FTPS file to makefile * testsuit compile Fix compile of testsuite * comment misspelled checked misspelled comment, and re-add WebSocket testsuite * remove warning reorder constructor inizializzations in order to remove gcc -Wreorder warning * testsuite compile Correct Makefile in testsuite * Makefile testsuite add DialogServer to testsuite makefile * test build fix build of testsuite * add FTPSStreamFactory * vs140 32bit * build and test for vs150
28 lines
776 B
Makefile
28 lines
776 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# $Id: //poco/Main/template/TestSuite.make#3 $
|
|
#
|
|
# Makefile for Poco NetSSL 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
|
|
SYSLIBS += -lssl -lcrypto -lz -ldl
|
|
endif
|
|
|
|
objects = NetSSLTestSuite Driver \
|
|
HTTPSClientSessionTest HTTPSClientTestSuite HTTPSServerTest HTTPSServerTestSuite \
|
|
HTTPSStreamFactoryTest HTTPSTestServer TCPServerTest TCPServerTestSuite \
|
|
WebSocketTest WebSocketTestSuite FTPSClientSessionTest FTPSClientTestSuite DialogServer
|
|
|
|
target = testrunner
|
|
target_version = 1
|
|
target_libs = PocoNetSSL PocoNet PocoCrypto PocoUtil PocoJSON PocoXML PocoFoundation PocoCppUnit
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|