PocoDoc: support generation on Windows (#1854)

* PocoDoc: support generation on Windows

* Replace hard code path with variables:
VC should be set to the path of the C++ compiler (cl.exe)
WDK should be set to the Windows Development Kit

* Update CHANGELOG with the latest 1.7.8p4 one
This commit is contained in:
zosrothko
2017-08-23 16:52:00 +02:00
committed by Aleksandar Fabijanic
parent 9ab7295108
commit 0f6c528435
7 changed files with 440 additions and 63 deletions

View File

@@ -102,6 +102,24 @@ public:
/// - Dx mark development releases,
/// - Ax mark alpha releases, and
/// - Bx mark beta releases.
static Poco::Int32 os();
/// Return the operating system as defined
/// in the include Foundation/Platform.h (POCO_OS)
static Poco::Int32 cpu();
/// Return the underlying cpu that runs this operating system
/// as defined in Foundation/Platform (POCO_ARCH)
static bool osFamilyUnix();
/// Return true if the operating system belongs to the Linux family
static bool osFamilyWindows();
/// Return true if the operating system belongs to the Windows family
static bool osFamilyVms();
/// Return true if the operating system belongs to the VMS family
};