mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
1724e8ba53
* Guard SQLITE_BUSY_SNAPSHOT which is not available in older SQLite releases When building POCO unbundled with older versions of SQLite (such as on RHEL7) SQLITE_BUSY_SNAPSHOT is not defined, so #ifdef guard it. * Some of the samples need to link with PocoJSON * Build parallelization issues #1730 * Fix building XMLStreamParser with unbundled expat
16 lines
255 B
Makefile
16 lines
255 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco httpget
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
objects = httpget
|
|
|
|
target = httpget
|
|
target_version = 1
|
|
target_libs = PocoUtil PocoNet PocoXML PocoJSON PocoFoundation
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|