mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 10:13:51 +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>
30 lines
872 B
Makefile
30 lines
872 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco Foundation Samples
|
|
#
|
|
|
|
.PHONY: projects
|
|
clean distclean all: projects
|
|
projects:
|
|
$(MAKE) -C ActiveMethod $(MAKECMDGOALS)
|
|
$(MAKE) -C Activity $(MAKECMDGOALS)
|
|
$(MAKE) -C Timer $(MAKECMDGOALS)
|
|
$(MAKE) -C BinaryReaderWriter $(MAKECMDGOALS)
|
|
$(MAKE) -C LineEndingConverter $(MAKECMDGOALS)
|
|
$(MAKE) -C base64decode $(MAKECMDGOALS)
|
|
$(MAKE) -C base64encode $(MAKECMDGOALS)
|
|
$(MAKE) -C deflate $(MAKECMDGOALS)
|
|
$(MAKE) -C inflate $(MAKECMDGOALS)
|
|
$(MAKE) -C DateTime $(MAKECMDGOALS)
|
|
$(MAKE) -C Logger $(MAKECMDGOALS)
|
|
$(MAKE) -C grep $(MAKECMDGOALS)
|
|
$(MAKE) -C dir $(MAKECMDGOALS)
|
|
$(MAKE) -C md5 $(MAKECMDGOALS)
|
|
$(MAKE) -C hmacmd5 $(MAKECMDGOALS)
|
|
$(MAKE) -C NotificationQueue $(MAKECMDGOALS)
|
|
$(MAKE) -C StringTokenizer $(MAKECMDGOALS)
|
|
$(MAKE) -C URI $(MAKECMDGOALS)
|
|
$(MAKE) -C uuidgen $(MAKECMDGOALS)
|
|
$(MAKE) -C trace $(MAKECMDGOALS)
|