mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-06 08:41:11 +01:00
eaabd3ff8d
* chore(Trace): add dev env settings * add(Trace): init add Poco::trace and libbacktrace files * feat(Exception): generate stack trace if enabled at compile time * chore(DNSSD): remove binaries from git * fix(Trace): build * chore(ci): exclude exception text tests for trace build; add debug test script params * chore(build): mac (dl) * chore(cmake): Changes to build Trace with CMake. * chore(cmake): Changes to build Trace on Windows * chore(cmake): Improvements to include trace sample. * chore(cmake): Fixes to properly build/link Trace on Linux * chore(cmake): add_definitions --> add_compile_definitions * chore(cmake): Build Trace as static and don't export it. * chore(make): Link Trace with built-in libbacktrace on Linux * chore(Trace): remove unnecessary sources for libbacktrace. * chore(github): enable trace on a few github checks * chore(cmake): Build Trace with clang++ on Linux. * chore(cmake): Properly set POCO_ENABLE_TRACE globally when needed. * fix(cmake): Trace: corrected include for clang on Linux --------- Co-authored-by: Matej Kenda <matejken@gmail.com>
79 lines
3.5 KiB
Makefile
79 lines
3.5 KiB
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco Foundation
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
ifdef POCO_ENABLE_TRACE
|
|
INCLUDE += -I $(POCO_BASE)/Trace/include/Poco/Trace
|
|
endif
|
|
|
|
objects = ArchiveStrategy Ascii ASCIIEncoding AsyncChannel AsyncNotificationCenter ActiveThreadPool\
|
|
Base32Decoder Base32Encoder Base64Decoder Base64Encoder \
|
|
BinaryReader BinaryWriter Bugcheck ByteOrder Channel Checksum Clock Configurable ConsoleChannel \
|
|
Condition CountingStream DateTime LocalDateTime DateTimeFormat DateTimeFormatter DateTimeParser \
|
|
Debugger DeflatingStream DigestEngine DigestStream DirectoryIterator DirectoryWatcher \
|
|
Environment Event EventChannel Error EventArgs ErrorHandler Exception FIFOBufferStream FPEnvironment File \
|
|
FileChannel Formatter FormattingChannel 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 JSONFormatter PIDFile Process ProcessRunner PurgeStrategy RWLock Random RandomStream \
|
|
DirectoryIteratorStrategy RegularExpression RefCountedObject Runnable RotateStrategy \
|
|
SHA1Engine SHA2Engine 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 VarVisitor Format Pipe PipeImpl PipeStream SharedMemory \
|
|
MemoryStream FileStream AtomicCounter DataURIStream DataURIStreamFactory
|
|
|
|
zlib_objects = adler32 compress crc32 deflate \
|
|
infback inffast inflate inftrees trees zutil
|
|
|
|
pcre_objects = pcre2_auto_possess pcre2_chartables pcre2_chkdint pcre2_compile pcre2_config \
|
|
pcre2_context pcre2_convert pcre2_dfa_match pcre2_error pcre2_extuni \
|
|
pcre2_find_bracket pcre2_jit_compile pcre2_maketables pcre2_match \
|
|
pcre2_match_data pcre2_newline pcre2_ord2utf pcre2_pattern_info \
|
|
pcre2_script_run pcre2_serialize pcre2_string_utils pcre2_study pcre2_substitute \
|
|
pcre2_substring pcre2_tables pcre2_ucd pcre2_valid_utf pcre2_xclass
|
|
|
|
pcre_utf8_objects = pcre2_ucd pcre2_tables
|
|
|
|
utf8proc_objects = utf8proc
|
|
|
|
ifdef POCO_UNBUNDLED
|
|
SYSLIBS += -lpcre2-8 -lutf8proc -lz
|
|
objects += $(pcre_utf8_objects)
|
|
else
|
|
COMMONFLAGS += -DUTF8PROC_STATIC
|
|
objects += $(zlib_objects) $(pcre_objects) $(pcre_utf8_objects) $(utf8proc_objects)
|
|
endif
|
|
|
|
ifeq ($(findstring MinGW, $(POCO_CONFIG)), MinGW)
|
|
objects += EventLogChannel WindowsConsoleChannel
|
|
else
|
|
objects += SyslogChannel
|
|
endif
|
|
|
|
target = PocoFoundation
|
|
target_version = $(LIBVERSION)
|
|
target_libs =
|
|
ifdef POCO_ENABLE_TRACE
|
|
target_libs += PocoTrace
|
|
endif
|
|
|
|
ifeq ($(findstring MinGW, $(POCO_CONFIG)), MinGW)
|
|
$(shell cd src; $(WINDMC) pocomsg.mc)
|
|
endif
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|