mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-06 08:41:11 +01:00
added PDF module to gmake
revision bump to 1.5.0
This commit is contained in:
parent
a0daaba97e
commit
8c53f354e5
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
#include "afxres.h"
|
#include "afxres.h"
|
||||||
|
|
||||||
#define POCO_VERSION 1,4,3,0
|
#define POCO_VERSION 1,5,0,0
|
||||||
#define POCO_VERSION_STR "1.4.3"
|
#define POCO_VERSION_STR "1.5.0"
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION POCO_VERSION
|
FILEVERSION POCO_VERSION
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
// Ax are alpha releases
|
// Ax are alpha releases
|
||||||
// Bx are beta releases
|
// Bx are beta releases
|
||||||
//
|
//
|
||||||
#define POCO_VERSION 0x010404D1
|
#define POCO_VERSION 0x010500D1
|
||||||
|
|
||||||
|
|
||||||
#endif // Foundation_Version_INCLUDED
|
#endif // Foundation_Version_INCLUDED
|
||||||
|
19
Makefile
19
Makefile
@ -44,9 +44,9 @@ install: libexecs
|
|||||||
find $(POCO_BUILD)/lib -name "libPoco*" -type f -exec cp -f {} $(INSTALLDIR)/lib \;
|
find $(POCO_BUILD)/lib -name "libPoco*" -type f -exec cp -f {} $(INSTALLDIR)/lib \;
|
||||||
find $(POCO_BUILD)/lib -name "libPoco*" -type l -exec cp -Rf {} $(INSTALLDIR)/lib \;
|
find $(POCO_BUILD)/lib -name "libPoco*" -type l -exec cp -Rf {} $(INSTALLDIR)/lib \;
|
||||||
|
|
||||||
libexecs = Foundation-libexec XML-libexec Util-libexec Net-libexec Crypto-libexec NetSSL_OpenSSL-libexec Data-libexec Data/SQLite-libexec Data/ODBC-libexec Data/MySQL-libexec Zip-libexec PageCompiler-libexec PageCompiler/File2Page-libexec
|
libexecs = Foundation-libexec XML-libexec Util-libexec Net-libexec Crypto-libexec NetSSL_OpenSSL-libexec Data-libexec Data/SQLite-libexec Data/ODBC-libexec Data/MySQL-libexec Zip-libexec PageCompiler-libexec PageCompiler/File2Page-libexec PDF-libexec
|
||||||
tests = Foundation-tests XML-tests Util-tests Net-tests Crypto-tests NetSSL_OpenSSL-tests Data-tests Data/SQLite-tests Data/ODBC-tests Data/MySQL-tests Zip-tests
|
tests = Foundation-tests XML-tests Util-tests Net-tests Crypto-tests NetSSL_OpenSSL-tests Data-tests Data/SQLite-tests Data/ODBC-tests Data/MySQL-tests Zip-tests PDF-tests
|
||||||
samples = Foundation-samples XML-samples Util-samples Net-samples Crypto-samples NetSSL_OpenSSL-samples Data-samples Zip-samples PageCompiler-samples
|
samples = Foundation-samples XML-samples Util-samples Net-samples Crypto-samples NetSSL_OpenSSL-samples Data-samples Zip-samples PageCompiler-samples PDF-samples
|
||||||
|
|
||||||
.PHONY: $(libexecs)
|
.PHONY: $(libexecs)
|
||||||
.PHONY: $(tests)
|
.PHONY: $(tests)
|
||||||
@ -155,6 +155,16 @@ PageCompiler-samples: PageCompiler-libexec
|
|||||||
PageCompiler/File2Page-libexec: Net-libexec Util-libexec XML-libexec Foundation-libexec
|
PageCompiler/File2Page-libexec: Net-libexec Util-libexec XML-libexec Foundation-libexec
|
||||||
$(MAKE) -C $(POCO_BASE)/PageCompiler/File2Page
|
$(MAKE) -C $(POCO_BASE)/PageCompiler/File2Page
|
||||||
|
|
||||||
|
PDF-libexec: Foundation-libexec
|
||||||
|
$(MAKE) -C $(POCO_BASE)/PDF
|
||||||
|
|
||||||
|
PDF-tests: PDF-libexec cppunit
|
||||||
|
$(MAKE) -C $(POCO_BASE)/PDF/testsuite
|
||||||
|
|
||||||
|
PDF-samples: PDF-libexec
|
||||||
|
$(MAKE) -C $(POCO_BASE)/PDF/samples
|
||||||
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(MAKE) -C $(POCO_BASE)/Foundation clean
|
$(MAKE) -C $(POCO_BASE)/Foundation clean
|
||||||
$(MAKE) -C $(POCO_BASE)/Foundation/testsuite clean
|
$(MAKE) -C $(POCO_BASE)/Foundation/testsuite clean
|
||||||
@ -189,6 +199,9 @@ clean:
|
|||||||
$(MAKE) -C $(POCO_BASE)/PageCompiler clean
|
$(MAKE) -C $(POCO_BASE)/PageCompiler clean
|
||||||
$(MAKE) -C $(POCO_BASE)/PageCompiler/samples clean
|
$(MAKE) -C $(POCO_BASE)/PageCompiler/samples clean
|
||||||
$(MAKE) -C $(POCO_BASE)/PageCompiler/File2Page clean
|
$(MAKE) -C $(POCO_BASE)/PageCompiler/File2Page clean
|
||||||
|
$(MAKE) -C $(POCO_BASE)/PDF clean
|
||||||
|
$(MAKE) -C $(POCO_BASE)/PDF/testsuite clean
|
||||||
|
$(MAKE) -C $(POCO_BASE)/PDF/samples clean
|
||||||
$(MAKE) -C $(POCO_BASE)/CppUnit clean
|
$(MAKE) -C $(POCO_BASE)/CppUnit clean
|
||||||
|
|
||||||
distclean:
|
distclean:
|
||||||
|
@ -1 +1 @@
|
|||||||
12
|
14
|
||||||
|
Loading…
Reference in New Issue
Block a user