mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-12-24 22:37:21 +00:00
* Logger & Channel classes now using AutoPtr<Channel> instead of Channel* (API improvement) * fix CachingChannel * more fixes * Configuration: remove raw pointers from interfaces #2077 * Add WeakPtr to Foundation #2246 * Add WeakPtr to Foundation #2246 (buildsystems files) * Add WeakPtr to Foundation #2246 (x64 VS project files) * backtrace and Event fixes * add ordered map * add ordered set * add sanitize makefiles * update RefPtr doc * fix AtomicCounter includes * add ordered containers tests * fix xml test compile error * remove operator bool rom smart pointers * Poco::strToInt<> fails for values right above the type's boundary / limit #2250 * add g++ -ftrapv config * remove Version.h includes (now included from Config.h) * comment out offending SQLite test (TODO) * add AtomicFlag and SpinlockMutex * remove RefCountedObject include from RefPtr and WeakRefPtr mutex template param * add WeakRef SpinLockMutex threading test * WeakRefPtr, backtrace, NDC, refcount DC fixes * SQL fixes * update RCO documentation * XML/DOM: Remove raw pointers from public interfaces #2075 * few fixes * PocoDoc - make logger non-static reference member * remove path char array initialization * Fix failing unit test, adding d in debug mode for TestApp and TestLibrary * fix application config pointer * fix some crypto warnings * fix Process tests and consolidate TestApp name building * define PathImpl::selfImpl for WinCE * restore WinCE test app name extension * attempt to passify 32 bit clang * fix failing Active* tests * Add POCO_OS_ANDROID support for Path::self() * Add build dependencies between Foundation-testrunner and TestApp, TestLibrary in cmake build * Remove to set LD_LIBRARY_PATH on foundation test * revert to develop XML * fix VS150 env not found (hardcode it) * undef min/max
72 lines
3.1 KiB
Makefile
72 lines
3.1 KiB
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco Foundation
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
objects = ArchiveStrategy Ascii ASCIIEncoding AsyncChannel \
|
|
Base32Decoder Base32Encoder Base64Decoder Base64Encoder \
|
|
BinaryReader BinaryWriter Bugcheck ByteOrder Channel \
|
|
Checksum Checksum32 Checksum64 Clock Configurable ConsoleChannel \
|
|
Condition CountingStream DateTime LocalDateTime DateTimeFormat DateTimeFormatter DateTimeParser \
|
|
Debugger DeflatingStream DigestEngine DigestStream DirectoryIterator DirectoryWatcher \
|
|
Environment Event Error EventArgs EventChannel ErrorHandler Exception FIFOBufferStream FPEnvironment \
|
|
File FileChannel Formatter FormattingChannel Foundation Glob HexBinaryDecoder LineEndingConverter \
|
|
HexBinaryEncoder InflatingStream JSONString Latin1Encoding Latin2Encoding Latin9Encoding \
|
|
LogFile Logger LoggingFactory LoggingRegistry LogStream NamedEvent NamedMutex NullChannel \
|
|
MemoryPool MD4Engine MD5Engine Manifest Message Mutex \
|
|
NestedDiagnosticContext Notification NotificationCenter \
|
|
NotificationQueue PriorityNotificationQueue TimedNotificationQueue \
|
|
NullStream NumberFormatter NumberParser NumericString AbstractObserver \
|
|
Path PatternFormatter Process PurgeStrategy RWLock Random RandomStream \
|
|
DirectoryIteratorStrategy RegularExpression RefCountedObject Runnable RotateStrategy \
|
|
SHA1Engine SHA2Engine SHA3Engine BLAKE2Engine Semaphore SharedLibrary SimpleFileChannel \
|
|
SignalHandler SplitterChannel SortedDirectoryIterator Stopwatch StreamChannel \
|
|
StreamConverter StreamCopier StreamTokenizer String StringTokenizer SynchronizedObject \
|
|
Task TaskManager TaskNotification TeeStream Hash HashStatistic \
|
|
TemporaryFile TextConverter TextEncoding TextIterator TextBufferIterator Thread ThreadLocal \
|
|
ThreadPool ThreadTarget ActiveDispatcher Timer Timespan Timestamp Timezone Token URI \
|
|
FileStreamFactory URIStreamFactory URIStreamOpener UTF32Encoding UTF16Encoding UTF8Encoding UTF8String \
|
|
Unicode UnicodeConverter Windows1250Encoding Windows1251Encoding Windows1252Encoding \
|
|
UUID UUIDGenerator Void Var VarHolder VarIterator Format Pipe PipeImpl PipeStream SharedMemory \
|
|
MemoryStream FileStream AtomicCounter
|
|
|
|
zlib_objects = adler32 compress crc32 deflate \
|
|
infback inffast inflate inftrees trees zutil
|
|
|
|
pcre_objects = pcre_config pcre_chartables pcre_compile pcre_globals pcre_maketables \
|
|
pcre_study pcre_byte_order pcre_valid_utf8 pcre_dfa_exec pcre_get pcre_jit_compile\
|
|
pcre_exec pcre_ord2utf8 pcre_newline pcre_fullinfo pcre_xclass pcre_refcount pcre_string_utils \
|
|
pcre_version
|
|
|
|
pcre_utf8_objects = pcre_ucd pcre_tables
|
|
|
|
ifdef POCO_UNBUNDLED
|
|
SYSLIBS += -lpcre -lz
|
|
objects += $(pcre_utf8_objects)
|
|
else
|
|
objects += $(zlib_objects) $(pcre_objects) $(pcre_utf8_objects)
|
|
endif
|
|
|
|
ifeq ($(findstring MinGW, $(POCO_CONFIG)), MinGW)
|
|
objects += EventLogChannel WindowsConsoleChannel
|
|
else
|
|
objects += SyslogChannel
|
|
endif
|
|
|
|
ifeq ($(findstring Android, $(POCO_CONFIG)), Android)
|
|
objects += AndroidLogChannel
|
|
endif
|
|
|
|
target = PocoFoundation
|
|
target_version = $(LIBVERSION)
|
|
target_libs =
|
|
|
|
ifeq ($(findstring MinGW, $(POCO_CONFIG)), MinGW)
|
|
$(shell cd src; $(WINDMC) pocomsg.mc)
|
|
endif
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|