mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-19 23:37:12 +02:00
bin
module
vendor
CPR
ConcurrentQueue
Fmt
POCO
ApacheConnector
CppParser
CppUnit
Crypto
Data
Encodings
Foundation
cmake
include
samples
src
testsuite
src
CMakeLists.txt
Makefile
Makefile-Driver
Makefile-TestApp
Makefile-TestLibrary
TestApp_vs140.vcxproj
TestApp_vs140.vcxproj.filters
TestApp_vs150.vcxproj
TestApp_vs150.vcxproj.filters
TestApp_vs160.vcxproj
TestApp_vs160.vcxproj.filters
TestLibrary_vs140.vcxproj
TestLibrary_vs140.vcxproj.filters
TestLibrary_vs150.vcxproj
TestLibrary_vs150.vcxproj.filters
TestLibrary_vs160.vcxproj
TestLibrary_vs160.vcxproj.filters
TestSuite_vs140.vcxproj
TestSuite_vs140.vcxproj.filters
TestSuite_vs150.vcxproj
TestSuite_vs150.vcxproj.filters
TestSuite_vs160.vcxproj
TestSuite_vs160.vcxproj.filters
nonexistent.txt
testlibrary.opt
wcelibcex-1.0
CMakeLists.txt
Foundation_vs140.sln
Foundation_vs140.vcxproj
Foundation_vs140.vcxproj.filters
Foundation_vs150.sln
Foundation_vs150.vcxproj
Foundation_vs150.vcxproj.filters
Foundation_vs160.sln
Foundation_vs160.vcxproj
Foundation_vs160.vcxproj.filters
Makefile
extradirs
JSON
JWT
MongoDB
Net
NetSSL_OpenSSL
NetSSL_Win
PDF
PageCompiler
PocoDoc
ProGen
Redis
SevenZip
Util
XML
Zip
appveyor
build
cmake
contrib
doc
packaging
patches
release
travis
CHANGELOG
CMakeLists.txt
CODE_OF_CONDUCT.md
CONTRIBUTING.md
CONTRIBUTORS
LICENSE
Makefile
NEWS
README
README.md
VERSION
appveyor.yml
build_cmake.cmd
build_cmake.sh
build_vs140.cmd
build_vs150.cmd
build_vs160.cmd
buildwin.cmd
buildwin.ps1
components
configure
cppignore.lnx
cppignore.win
env.bat
env.sh
libversion
SimpleIni
Squirrel
TinyDir
CMakeLists.txt
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
52 lines
2.5 KiB
Plaintext
52 lines
2.5 KiB
Plaintext
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco Foundation testsuite
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
objects = ActiveMethodTest ActivityTest ActiveDispatcherTest \
|
|
AutoPtrTest ArrayTest SharedPtrTest AutoReleasePoolTest \
|
|
Base32Test Base64Test BinaryReaderWriterTest LineEndingConverterTest \
|
|
ByteOrderTest ChannelTest ClassLoaderTest ClockTest CoreTest CoreTestSuite \
|
|
CountingStreamTest CryptTestSuite DateTimeFormatterTest \
|
|
DateTimeParserTest DateTimeTest LocalDateTimeTest DateTimeTestSuite DigestStreamTest \
|
|
Driver DynamicFactoryTest FPETest FileChannelTest FileTest GlobTest FilesystemTestSuite \
|
|
FIFOBufferStreamTest FoundationTestSuite HMACEngineTest HexBinaryTest LoggerTest \
|
|
ListMapTest LoggingFactoryTest LoggingRegistryTest LoggingTestSuite LogStreamTest \
|
|
NamedEventTest NamedMutexTest ProcessesTestSuite ProcessTest \
|
|
MemoryPoolTest MD4EngineTest MD5EngineTest ManifestTest \
|
|
NDCTest NotificationCenterTest NotificationQueueTest \
|
|
PriorityNotificationQueueTest TimedNotificationQueueTest \
|
|
NotificationsTestSuite NullStreamTest NumberFormatterTest \
|
|
NumberParserTest PathTest PatternFormatterTest PBKDF2EngineTest RWLockTest \
|
|
RandomStreamTest RandomTest RegularExpressionTest SHA1EngineTest SHA2EngineTest \
|
|
SemaphoreTest ConditionTest SharedLibraryTest SharedLibraryTestSuite \
|
|
SimpleFileChannelTest StopwatchTest \
|
|
StreamConverterTest StreamCopierTest StreamTokenizerTest \
|
|
StreamsTestSuite StringTest StringTokenizerTest TaskTestSuite TaskTest \
|
|
TaskManagerTest TestChannel TeeStreamTest UTF8StringTest \
|
|
TextConverterTest TextIteratorTest TextBufferIteratorTest TextTestSuite TextEncodingTest \
|
|
ThreadLocalTest ThreadPoolTest ThreadTest ThreadingTestSuite TimerTest \
|
|
TimespanTest TimestampTest TimezoneTest URIStreamOpenerTest URITest \
|
|
URITestSuite UUIDGeneratorTest UUIDTest UUIDTestSuite ZLibTest \
|
|
TestPlugin DummyDelegate BasicEventTest FIFOEventTest PriorityEventTest EventTestSuite \
|
|
LRUCacheTest ExpireCacheTest ExpireLRUCacheTest CacheTestSuite AnyTest FormatTest \
|
|
HashingTestSuite HashTableTest SimpleHashTableTest LinearHashTableTest \
|
|
HashSetTest HashMapTest SharedMemoryTest OrderedContainersTest \
|
|
UniqueExpireCacheTest UniqueExpireLRUCacheTest UnicodeConverterTest \
|
|
TuplesTest NamedTuplesTest TypeListTest VarTest DynamicTestSuite FileStreamTest \
|
|
MemoryStreamTest ObjectPoolTest DirectoryWatcherTest DirectoryIteratorsTest \
|
|
DataURIStreamTest
|
|
|
|
target = testrunner
|
|
target_version = 1
|
|
target_libs = PocoFoundation CppUnit
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|
|
|
|
ifdef POCO_UNBUNDLED
|
|
SYSLIBS += -lz -lpcre
|
|
endif
|