added POCO_NO_SHARED_LIBRARY_DEBUG_SUFFIX configuration macro to disable *d.so, *d.dll suffix in SharedLibrary class

This commit is contained in:
Guenter Obiltschnig
2016-10-10 11:56:58 +02:00
parent 18eee84793
commit 59a78a55b5
7 changed files with 21 additions and 10 deletions

View File

@@ -122,7 +122,9 @@ public:
/// Returns the platform-specific filename suffix
/// for shared libraries (including the period).
/// In debug mode, the suffix also includes a
/// "d" to specify the debug version of a library.
/// "d" to specify the debug version of a library
/// (e.g., "d.so", "d.dll") unless the library has
/// been compiled with -DPOCO_NO_SHARED_LIBRARY_DEBUG_SUFFIX.
private:
SharedLibrary(const SharedLibrary&);