Browse Source

Use -std=c99 for C compiler on Lnux

Francis ANDRE 7 years ago
parent
commit
8716de6537
6 changed files with 7279 additions and 8 deletions
  1. 10 0
      PocoDoc/PocoDoc.ini
  2. 3 6
      build.gradle
  3. 1009 0
      build.gradle.kampbell
  4. 1 1
      gradle
  5. 1 1
      openssl
  6. 6255 0
      x

+ 10 - 0
PocoDoc/PocoDoc.ini

@@ -0,0 +1,10 @@
+
+PocoBuild=Z:\git\poco-1.9.1
+PocoBase=Z:\git\poco-1.9.1
+PocoDoc.output=releases/poco-1.9.1-all-doc
+PocoDoc.version=1.9.1-all
+
+Includes=-IC:/3rd/PostgreSQL/postgresql-10.5-1-win32/pgsql/include,-IC:/3rd/MySQL/mysql-5.7.23-win32/include,-ICppParser/include,-ICppUnit/include,-ICrypto/include,-IEncodings/include,-IData/include,-IData/include,-IData/MySQL/include,-IData/ODBC/include,-IData/PostgreSQL/include,-IData/SQLite/include, -IData/SQLite/src,-IFoundation/include,-IJSON/include,-IMongoDB/include,-INet/include,-INetSSL_OpenSSL/include,-INetSSL_Win/include,-IRedis/include,-IUtil/include,-IXML/include,-IZip/include,-ISevenZip/include,-IPDF/include
+VCH=C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.15.26726
+WDK=C:/Program Files (x86)/Windows Kits/10/Include/10.0.17134.0
+CLP=C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.15.26726/bin/Hostx86/x86

+ 3 - 6
build.gradle

@@ -653,7 +653,7 @@ subprojects {
 					cCompiler.define "POCO_HAVE_FD_EPOLL"
 					cCompiler.define "POCO_HAVE_ADDRINFO"
 					cCompiler.define "POCO_HAVE_LIBRESOLV"
-					cCompiler.args "-std=c++11"
+					cCompiler.args 	"-std=c99"
 
 					cppCompiler.define "_XOPEN_SOURCE=600"
 					cppCompiler.define "_REENTRANT"
@@ -665,9 +665,7 @@ subprojects {
 					cppCompiler.define "POCO_HAVE_LIBRESOLV"
 					cppCompiler.args "-std=c++11"
 
-					linker.args "-lrt"
-					linker.args "-ldl"
-					linker.args "-lpthread"
+					linker.args 	("-lrt", "-ldl", "-lpthread")
 				} else
 				if (toolChain in Clang) {			// supposed to be for Darwin OSX
 					cCompiler.define "POCO_HAVE_IPv6"
@@ -691,8 +689,7 @@ subprojects {
 						cppCompiler.args 	'-O2'
 					}
 					
-					linker.args "-stdlib=libc++"
-					linker.args "-ldl"
+					linker.args 	("-stdlib=libc++", "-ldl")
 				}
 			}
 			withType(SharedLibraryBinarySpec) {

+ 1009 - 0
build.gradle.kampbell

@@ -0,0 +1,1009 @@
+buildscript {
+}
+
+plugins {
+	id 'com.ullink.nuget' version '2.15'
+}
+apply plugin: 	'base' 
+
+def os = org.gradle.internal.os.OperatingSystem.current()
+def String version = file("VERSION").text.replaceAll("[\n\r]", "")
+
+File appendDebugSuffix(File binaryFile) {
+	String name = binaryFile.getName()
+	File parent = binaryFile.getParentFile()
+	int extensionSeparatorIndex = name.lastIndexOf('.')
+	if (extensionSeparatorIndex == -1) {
+		return new File(parent, name + "d")
+	}
+	return new File(parent, name.substring(0, extensionSeparatorIndex) + "d" + name.substring(extensionSeparatorIndex))
+}
+ 
+File appendStaticSuffix(File binaryFile) {
+    def os = org.gradle.internal.os.OperatingSystem.current()
+	if (!os.windows) {
+		return binaryFile
+    }
+    String name = binaryFile.getName()
+    File parent = binaryFile.getParentFile()
+    int extensionSeparatorIndex = name.lastIndexOf('.')
+    if (extensionSeparatorIndex == -1) {
+    	return new File(parent, name + "MT")
+    }
+    return new File(parent, name.substring(0, extensionSeparatorIndex) + "MT" + name.substring(extensionSeparatorIndex))
+}
+File prefixByPoco(File binaryFile) {
+	String name = binaryFile.getName()
+	String prefix = ''
+	if (name.startsWith('lib')) {
+		prefix = 'lib'
+		name = name.substring(3)
+	}
+	File parent = binaryFile.getParentFile()
+	return new File(parent, prefix + "Poco" + name);
+}
+File suffixByArch(File binaryFile, Platform platform) {
+	if (!platform.operatingSystem.windows) {
+		return binaryFile
+	}
+	String name = binaryFile.getName()
+	String suffix = ''
+	if (platform.architecture.name == 'x86') {
+		suffix = ''
+	} else
+	if (platform.architecture.name == 'x86-64') {
+		suffix = '64'
+	} else {
+		throw new GradleException("Unknown architecture: " + platform.architecture.name)
+	}
+	int extensionSeparatorIndex = name.lastIndexOf('.')
+	if (extensionSeparatorIndex == -1) {
+		return new File(parent, name + suffix)
+	}
+	File parent = binaryFile.getParentFile()
+	return new File(parent, name.substring(0, extensionSeparatorIndex) + suffix + name.substring(extensionSeparatorIndex));
+}
+File toLocalBin(File binaryFile, Platform platform) {
+	String name = binaryFile.getName()
+	String target
+	if (platform.architecture.name == 'x86') {
+		target = 'bin'
+	} else
+	if (platform.architecture.name == 'x86-64') {
+		target = 'bin64'
+	} else {
+		throw new GradleException("Unknown architecture: " + platform.architecture.name)
+	}
+	File parent = new File(target)
+	return new File(parent, name);
+}
+File toBin(File sharedFile, Platform platform) {
+	File parent = sharedFile.parentFile
+	if (parent.canonicalPath.contains("testsuite"))
+		return sharedFile;
+	if (parent.canonicalPath.contains("sample"))
+		return sharedFile;
+		
+	if (platform.operatingSystem.linux) {
+		return toLib(sharedFile, platform)
+	}
+
+	String name = sharedFile.getName()
+	String target
+	if (platform.architecture.name == 'x86') {
+		target = 'bin'
+	} else
+	if (platform.architecture.name == 'x86-64') {
+		target = 'bin64'
+	} else {
+		throw new GradleException("Unknown architecture: " + platform.architecture.name)
+	}
+	File newParent = new File(rootDir, target)
+	return new File(newParent, name);
+}
+File toLib(File linkFile, Platform platform) {
+	File parent = linkFile.parentFile
+	if (parent.canonicalPath.contains("testsuite"))
+		return linkFile;
+	if (parent.canonicalPath.contains("sample"))
+		return linkFile;
+		
+	// On macOS, it creates a dylib file which is the shared and import library
+	if (platform.operatingSystem.macOsX) {
+		return toBin(linkFile, platform)
+	}
+
+	String name = linkFile.getName()
+	String target
+	if (platform.architecture.name == 'x86') {
+		target = 'lib'
+	} else
+	if (platform.architecture.name == 'x86-64') {
+		target = 'lib64'
+	} else {
+		throw new GradleException("Unknown architecture: " + platform.architecture.name)
+	}
+	File newParent = new File(rootDir, target )
+	return new File(newParent, name);
+}
+File toStatic(File staticFile, Platform platform) {
+	String name = staticFile.getName()
+	String target
+	if (platform.architecture.name == 'x86') {
+		target = 'lib'
+	} else
+	if (platform.architecture.name == 'x86-64') {
+		target = 'lib64'
+	} else {
+		throw new GradleException("Unknown architecture: " + platform.architecture.name)
+	}
+	File parent = new File(rootDir, target)
+	return new File(parent, name);
+}
+File toPDB(File binaryFile) {
+	String name = binaryFile.getName()
+	File parent = binaryFile.getParentFile()
+	int extensionSeparatorIndex = name.lastIndexOf('.')
+	return new File(parent, name.substring(0, extensionSeparatorIndex) + ".pdb")
+}
+File makePreBuildLibrary(String name, Platform platform) {
+	File pbl
+	if (platform.architecture.name == 'x86') {
+		pbl = new File(WDKHome + "/Lib/" + WDKVers + "/um/x86/" + name + ".lib")
+	} else
+	if (platform.architecture.name == 'x86-64') {
+		pbl = new File(WDKHome + "/Lib/" + WDKVers + "/um/x64/" + name + ".lib")
+	} else
+	if (platform.architecture.name == 'arm-v7') {
+		pbl = new File(WDKHome + "/Lib/" + WDKVers + "/um/arm-v7/" + name + ".lib")
+	} else
+	if (platform.architecture.name == 'ia-64') {
+		pbl = new File(WDKHome + "/Lib/" + WDKVers + "/um/ia-64/" + name + ".lib")
+	} else {
+		throw new GradleException("Unknown architecture: " + platform.architecture.name)
+	}
+	return pbl
+}
+class SliceTasksPlugin extends RuleSource {
+	@Mutate
+	void createBuildSliceTask(ModelMap<Task> tasks, BinaryContainer binaries, BuildTypeContainer buildTypes) {
+		tasks.create("slice") {
+			dependsOn binaries.withType(NativeBinarySpec).findAll { 
+				it.buildable && 
+				it.buildType == buildTypes.debug && 
+				it.targetPlatform.architecture.name == 'x86' &&
+				it instanceof SharedLibraryBinarySpec
+			}
+		}
+	}
+}
+
+
+allprojects {
+	buildDir = new File('guild')	            // DO NOT REMOVE OR CHANGE to 'build' since 'build' is a Poco directory
+	file('bin').mkdirs()
+	file('bin64').mkdirs()
+	file('lib').mkdirs()
+	file('lib64').mkdirs()
+/*
+	clean.doFirst {
+		file(projectDir, 'bin').delete()
+		file(projectDir, 'bin64').delete() 
+		file(projectDir, 'lib').delete() 
+		file(projectDir, 'lib64').delete() 
+	}
+*/
+}
+subprojects {
+	apply plugin:	'c'
+	apply plugin:	'cpp'
+	apply plugin:	'cppunit-test-suite'
+ 	apply plugin:	'windows-resources'
+	apply plugin:	'windows-messages'
+	apply plugin: 	SliceTasksPlugin
+	
+	buildDir = new File("guild")	
+	
+
+	model {
+		buildTypes {
+			release
+			debug
+		}
+
+/*
+		toolChains {
+			visualCpp(VisualCpp) {
+				// Specify the installDir if Visual Studio cannot be located
+//				installDir "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community"
+//				installDir "C:/Program Files (x86)/Microsoft Visual Studio 14.0"
+			}
+
+			gcc(Gcc) {
+				// Uncomment to use a GCC install that is not in the PATH
+				// path "/usr/bin/gcc"
+			}
+			clang(Clang)
+		}
+*/
+		platforms {
+			win32 {
+				operatingSystem "windows"
+				architecture 'x86'
+			}
+			win64 {
+				operatingSystem "windows"
+				architecture 'x64'
+			}
+			linux32 {
+				operatingSystem "linux"
+				architecture 'x86'
+			}
+			linux64 {
+				operatingSystem "linux"
+				architecture 'x64'
+			}
+			macos {
+				operatingSystem "macosx"
+				architecture 'x64'
+			}
+		}
+
+		flavors {
+			bundled
+//			unbundled
+		}
+		repositories {
+			libs(PrebuiltLibraries) {
+				WS2_32 {
+					headers.srcDir WDKHome + "/Include/" + WDKVers + "/um/x86"
+					binaries.withType(StaticLibraryBinary) {
+						if (targetPlatform.operatingSystem.windows) {
+							staticLibraryFile = makePreBuildLibrary("WS2_32", targetPlatform)
+							println "staticLibraryFile=" + staticLibraryFile
+						}
+					}
+				}
+				crypto {
+					binaries.withType(StaticLibraryBinary) {
+						def libName = "foobar"
+						if (buildType == buildTypes.debug) {
+							if (targetPlatform.name == 'win32') {
+					            		headers.srcDir "$openSSLWindowsHome/include"
+								libName = 'libcryptod.lib'
+								staticLibraryFile = new File("$openSSLWindowsHome/win32/lib/debug/$libName")
+							} else if (targetPlatform.name == 'win64') {
+					            		headers.srcDir "$openSSLWindowsHome/include"
+								libName = 'libcryptod.lib'
+								staticLibraryFile = new File("$openSSLWindowsHome/win64/lib/debug/$libName")
+							} else if (targetPlatform.operatingSystem.macOsX) {
+								headers.srcDir "$openSSLBrewHome/include"
+								libName = 'libcrypto.a'
+								staticLibraryFile = new File("$openSSLBrewHome/lib/$libName")
+							} else if (targetPlatform.operatingSystem.linux) {
+					            		headers.srcDir "$openSSL64LinuxInc/include"
+								libName = 'libcrypto.a'
+								staticLibraryFile = new File("$openSSL64LinuxLib/$libName")
+							}
+						} else
+						if (buildType == buildTypes.release) {
+							if (targetPlatform.name == 'win32') {
+								libName = 'libcrypto.lib'
+								staticLibraryFile = new File("$openSSLWindowsHome/win32/lib/release/$libName")
+							} else if (targetPlatform.name == 'win64') {
+								libName = 'libcrypto.lib'
+								staticLibraryFile = new File("$openSSLWindowsHome/win64/lib/release/$libName")
+							} else if (targetPlatform.operatingSystem.macOsX) {
+								headers.srcDir "$openSSLBrewHome/include"
+								libName = 'libcrypto.a'
+								staticLibraryFile = new File("$openSSLBrewHome/lib/$libName")
+							} else if (targetPlatform.operatingSystem.linux) {
+					            		headers.srcDir "$openSSL64LinuxInc/include"
+								libName = 'libcrypto.a'
+								staticLibraryFile = new File("$openSSL64LinuxLib/$libName")
+							}
+						} else {
+							throw new GradleException("Unknown buildType" + buildType)
+						}
+					}
+					binaries.withType(SharedLibraryBinary) {
+						def dllName
+						def linkName
+						if (buildType == buildTypes.debug) {
+							if (targetPlatform.name == 'win32') {
+								dllName = 'libcryptod.dll'
+								linkName = 'libcryptod.lib'
+								sharedLibraryFile	 = new File("$openSSLWindowsHome/win32/bin/debug/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLWindowsHome/win32/bin/debug/$linkName")
+							} else if (targetPlatform.name == 'win64') {
+								dllName = 'libcryptod.dll'
+								linkName = 'libcryptod.lib'
+								sharedLibraryFile	 = new File("$openSSLWindowsHome/win64/bin/debug/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLWindowsHome/win64/bin/debug/$linkName")
+							} else if (targetPlatform.operatingSystem.macOsX) {
+								headers.srcDir "$openSSLBrewHome/include"
+								dllName = 'libcrypto.dylib'
+								linkName = 'libcrypto.dylib'
+								sharedLibraryFile	 = new File("$openSSLBrewHome/lib/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLBrewHome/lib/$linkName")
+							} else if (targetPlatform.operatingSystem.linux) {
+					            		headers.srcDir "$openSSL64LinuxInc/include"
+								dllName = 'libcrypto.so'
+								linkName = 'libcrypto.a'
+								sharedLibraryFile	 = new File("$openSSL64LinuxLib/$dllName")
+								sharedLibraryLinkFile = new File("$openSSL64LinuxLib/$linkName")
+							}
+						} else
+						if (buildType == buildTypes.release) {
+							if (targetPlatform.name == 'win32') {
+								dllName = 'libcrypto.dll'
+								linkName = 'libcrypto.lib'
+								sharedLibraryFile	 = new File("$openSSLWindowsHome/win32/bin/release/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLWindowsHome/win32/bin/release/$linkName")
+							} else if (targetPlatform.name == 'win64') {
+								dllName = 'libcrypto.dll'
+								linkName = 'libcrypto.lib'
+								sharedLibraryFile	 = new File("$openSSLWindowsHome/win64/bin/release/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLWindowsHome/win64/bin/release/$linkName")
+							} else if (targetPlatform.operatingSystem.macOsX) {
+								headers.srcDir "$openSSLBrewHome/include"
+								dllName = 'libcrypto.dylib'
+								linkName = 'libcrypto.dylib'
+								sharedLibraryFile	 = new File("$openSSLBrewHome/lib/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLBrewHome/lib/$linkName")
+							} else if (targetPlatform.operatingSystem.linux) {
+					            		headers.srcDir "$openSSL64LinuxInc/include"
+								dllName = 'libcrypto.so'
+								linkName = 'libcrypto.a'
+								sharedLibraryFile	 = new File("$openSSL64LinuxLib/$dllName")
+								sharedLibraryLinkFile = new File("$openSSL64LinuxLib/$linkName")
+							}
+						} else {
+							throw new GradleException("Unknown buildType" + buildType)
+						}
+					}
+				}
+				ssl {
+					binaries.withType(StaticLibraryBinary) {
+						def libName
+						if (buildType == buildTypes.debug) {
+							if (targetPlatform.name == 'win32') {
+					            		headers.srcDir "$openSSLWindowsHome/include"
+								libName = 'libssld.lib'
+								staticLibraryFile = new File("$openSSLWindowsHome/win32/lib/debug/$libName")
+							} else if (targetPlatform.name == 'win64') {
+					            		headers.srcDir "$openSSLWindowsHome/include"
+								libName = 'libssl.lib'
+								staticLibraryFile = new File("$openSSLWindowsHome/win64/lib/debug/$libName")
+							} else if (targetPlatform.operatingSystem.macOsX) {
+								headers.srcDir "$openSSLBrewHome/include"
+								libName = 'libssl.a'
+								staticLibraryFile = new File("$openSSLBrewHome/lib/$libName")
+							} else if (targetPlatform.operatingSystem.linux) {
+					            		headers.srcDir "$openSSL64LinuxInc/include"
+								libName = 'libssl.a'
+								staticLibraryFile = new File("$openSSL64LinuxLib", "$libName")
+							}
+						} else
+						if (buildType == buildTypes.release) {
+							if (targetPlatform.name == 'win32') {
+								libName = 'libssl.lib'
+								staticLibraryFile = new File("$openSSLWindowsHome/win32/lib/release/$libName")
+							} else if (targetPlatform.name == 'win64') {
+								libName = 'libssl.lib'
+								staticLibraryFile = new File("$openSSLWindowsHome/win64/lib/release/$libName")
+							} else if (targetPlatform.operatingSystem.macOsX) {
+								headers.srcDir "$openSSLBrewHome/include"
+								libName = 'libssl.a'
+								staticLibraryFile = new File("$openSSLBrewHome/lib/$libName")
+							} else if (targetPlatform.operatingSystem.linux) {
+					            		headers.srcDir "$openSSL64LinuxInc/include"
+								libName = 'libssl.a'
+								staticLibraryFile = new File("$openSSL64LinuxLib/$libName")
+							}
+						} else {
+							throw new GradleException("Unknown buildType" + buildType)
+						}
+					}
+					binaries.withType(SharedLibraryBinary) {
+						def dllName
+						def linkName
+						if (buildType == buildTypes.debug) {
+							if (targetPlatform.name == 'win32') {
+								dllName = 'libssld.dll'
+								linkName = 'libssld.lib'
+								sharedLibraryFile	 = new File("$openSSLWindowsHome/win32/bin/debug/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLWindowsHome/win32/bin/debug/$linkName")
+							} else if (targetPlatform.name == 'win64') {
+								dllName = 'libssld.dll'
+								linkName = 'libssld.lib'
+								sharedLibraryFile	 = new File("$openSSLWindowsHome/win64/bin/debug/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLWindowsHome/win64/bin/debug/$linkName")
+							} else if (targetPlatform.operatingSystem.macOsX) {
+								headers.srcDir "$openSSLBrewHome/include"
+								dllName = 'libssl.dylib'
+								linkName = 'libssl.dylib'
+								sharedLibraryFile	 = new File("$openSSLBrewHome/lib/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLBrewHome/lib/$linkName")
+							} else if (targetPlatform.operatingSystem.linux) {
+                                				def File openSSL64LinuxLibFile = new File("$openSSL64LinuxLib")
+					            		headers.srcDir "$openSSL64LinuxInc/include"
+								dllName  = "libssl.so"
+								linkName = "libssl.a"
+								sharedLibraryFile	 = new File(openSSL64LinuxLibFile, dllName)
+								sharedLibraryLinkFile = new File(openSSL64LinuxLibFile, linkName)
+							}
+						} else if (buildType == buildTypes.release) {
+							if (targetPlatform.name == 'win32') {
+								dllName = 'libssl.dll'
+								linkName = 'libssl.lib'
+								sharedLibraryFile	 = new File("$openSSLWindowsHome/win32/bin/release/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLWindowsHome/win32/bin/release/$linkName")
+							} else if (targetPlatform.name == 'win64') {
+								dllName = 'libssl.dll'
+								linkName = 'libssl.lib'
+								sharedLibraryFile	 = new File("$openSSLWindowsHome/win64/bin/release/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLWindowsHome/win64/bin/release/$linkName")
+							} else if (targetPlatform.operatingSystem.macOsX) {
+								headers.srcDir "$openSSLBrewHome/include"
+								dllName = 'libssl.dylib'
+								linkName = 'libssl.dylib'
+								sharedLibraryFile	 = new File("$openSSLBrewHome/lib/$dllName")
+								sharedLibraryLinkFile = new File("$openSSLBrewHome/lib/$linkName")
+							} else if (targetPlatform.operatingSystem.linux) {
+					            		headers.srcDir "$openSSL64LinuxInc/include"
+								dllName = 'libssl.so'
+								linkName = 'libssl.a'
+								sharedLibraryFile	 = new File("$openSSL64LinuxLib/$dllName")
+								sharedLibraryLinkFile = new File("$openSSL64LinuxLib/$linkName")
+							}
+						} else {
+							throw new GradleException("Unknown buildType" + buildType)
+						}
+					}
+				}
+			}
+		}
+		components {
+			withType(NativeComponentSpec) {
+				//targetPlatform "linux32"
+				targetPlatform "linux64"
+				targetPlatform "macos"
+
+				binaries.withType(NativeTestSuiteBinarySpec) {
+					if (buildType == buildTypes.debug) {
+						if (it instanceof NativeExecutableBinarySpec) {
+							executable.file = toLocalBin(appendDebugSuffix(executable.file), targetPlatform)
+						}
+					} else
+					if (buildType == buildTypes.release) {
+						if (it instanceof NativeExecutableBinarySpec) {
+							executable.file = toLocalBin(executable.file, targetPlatform)
+						} 
+					}
+				}
+				binaries.withType(NativeBinarySpec) {
+
+					if (toolChain in Clang) {
+						cppCompiler.args "-std=c++11"
+					}
+					if (buildType == buildTypes.debug) {
+						if (it instanceof SharedLibraryBinarySpec) {
+							sharedLibraryFile	 = toBin(prefixByPoco(appendDebugSuffix(suffixByArch(sharedLibraryFile, targetPlatform))), targetPlatform)
+							sharedLibraryLinkFile = toLib(prefixByPoco(appendDebugSuffix(sharedLibraryLinkFile)), targetPlatform)
+
+							if (targetPlatform.operatingSystem.windows) {
+								// WINDOWS ONLY
+								linker.args "/implib:${sharedLibraryLinkFile}"  // For MSVC only
+								// use the following for MinGW
+								// linker.args "-Wl,--out-implib,${sharedLibraryLinkFile}"
+								// This next part is simply to ensure the directory is created as the compiler (tested on MSVC only) won't create it
+								def binary = it  // Simply to expose the binary in the `doFirst`
+								tasks.withType(LinkSharedLibrary) {
+									doFirst {
+										binary.sharedLibraryLinkFile.parentFile.mkdirs()
+									}
+								}
+							}
+						} else
+						if (it instanceof StaticLibraryBinarySpec) {
+							staticLibraryFile = toStatic(prefixByPoco(appendDebugSuffix(appendStaticSuffix(staticLibraryFile))), targetPlatform)
+							def binary = it
+							tasks.withType(CreateStaticLibrary) {
+								doFirst {
+									binary.staticLibraryFile.parentFile.mkdirs()
+								}
+							}
+						} else
+						if (it instanceof NativeExecutableBinarySpec) {
+							executable.file = toBin(appendDebugSuffix(executable.file), targetPlatform)
+						}
+					} else
+					if (buildType == buildTypes.release) {
+						if (it instanceof SharedLibraryBinarySpec) {
+							sharedLibraryFile = toBin(prefixByPoco(suffixByArch(sharedLibraryFile, targetPlatform)), targetPlatform)
+							sharedLibraryLinkFile = toLib(prefixByPoco(sharedLibraryLinkFile), targetPlatform)
+
+							if (targetPlatform.operatingSystem.windows) {
+								// WINDOWS ONLY
+								linker.args "/implib:${sharedLibraryLinkFile}"  // For MSVC only
+								// use the following for MinGW
+								// linker.args "-Wl,--out-implib,${sharedLibraryLinkFile}"
+								// This next part is simply to ensure the directory is created as the compiler (tested on MSVC only) won't create it
+								def binary = it  // Simply to expose the binary in the `doFirst`
+								tasks.withType(LinkSharedLibrary) {
+									doFirst {
+										binary.sharedLibraryLinkFile.parentFile.mkdirs()
+									}
+								}
+							}
+						} else
+						if (it instanceof StaticLibraryBinarySpec) {
+							staticLibraryFile = toStatic(prefixByPoco(appendStaticSuffix(staticLibraryFile)), targetPlatform)
+							def binary = it
+							tasks.withType(CreateStaticLibrary) {
+								doFirst {
+									binary.staticLibraryFile.parentFile.mkdirs()
+								}
+							}
+						} else
+						if (it instanceof NativeExecutableBinarySpec) {
+							executable.file = toBin(executable.file, targetPlatform)
+						} 
+					} else {
+						throw new GradleException("Unknown buildType" + buildType)
+					}
+				}
+			}
+		}
+
+
+		binaries {
+			all {
+				if (flavor != flavors.bundled) {
+					cCompiler.define 'POCO_UNBUNDLED'
+					cppCompiler.define 'POCO_UNBUNDLED'
+				}
+				if (buildType == buildTypes.debug) {
+					cCompiler.define '_DEBUG'
+					cppCompiler.define '_DEBUG'
+				} else 
+				if (buildType == buildTypes.release) {
+					cCompiler.define 'NDEBUG'
+					cppCompiler.define 'NDEBUG'
+				}
+			
+				if (toolChain in Gcc) {
+					cppCompiler.define "_XOPEN_SOURCE=600"
+					cppCompiler.define "_REENTRANT"
+					cppCompiler.define "_THREAD_SAFE"
+					cppCompiler.define "_FILE_OFFSET_BITS=64"
+					cppCompiler.define "_LARGEFILE64_SOURCE"
+					cppCompiler.define "POCO_HAVE_FD_EPOLL"
+					cppCompiler.define "POCO_HAVE_ADDRINFO"
+					cppCompiler.define "POCO_HAVE_LIBRESOLV"
+					cppCompiler.args "-std=c++11"
+					cppCompiler.args "-fPIC"
+
+					linker.args "-lrt"
+					linker.args "-ldl"
+					linker.args "-lpthread"
+				}
+				if (toolChain in VisualCpp) {
+					if (targetPlatform == platforms.win64) {
+						linker.args '/MACHINE:X64'
+					} else {
+						linker.args '/MACHINE:X86'
+					}
+					if (buildType == buildTypes.debug) {
+						cCompiler.args '/Zi'
+						cppCompiler.args '/Zi'
+						linker.args '/DEBUG'
+					}
+					cCompiler.args '/RTC1'
+					cCompiler.args '/FS'
+					cCompiler.args '/Zc:wchar_t'
+					cCompiler.args '/Zc:inline'
+					cCompiler.args '/Zc:forScope'
+					cCompiler.args '/GR'
+					cCompiler.args '/GF'
+					cCompiler.args '/EHsc'
+					cCompiler.args '/bigobj'
+					cCompiler.define 'WIN32'
+					cCompiler.define '_WIN32'
+					cCompiler.define '_WINDOWS'
+					cCompiler.define '_MBCS'
+
+					cppCompiler.args '/RTC1'
+					cppCompiler.args '/FS'
+					cppCompiler.args '/Zc:wchar_t'
+					cppCompiler.args '/Zc:inline'
+					cppCompiler.args '/Zc:forScope'
+					cppCompiler.args '/GR'
+					cppCompiler.args '/GF'
+					cppCompiler.args '/EHsc'
+					cppCompiler.args '/bigobj'
+					cppCompiler.define 'WIN32'
+					cppCompiler.define '_WIN32'
+					cppCompiler.define '_WINDOWS'
+					cppCompiler.define '_MBCS'
+					
+					linker.args 'kernel32.lib'
+					linker.args 'user32.lib'
+					linker.args 'gdi32.lib'
+					linker.args 'winspool.lib'
+					linker.args 'comdlg32.lib'
+					linker.args 'advapi32.lib'
+					linker.args 'shell32.lib'
+					linker.args 'ole32.lib'
+					linker.args 'oleaut32.lib'
+					linker.args 'uuid.lib'
+					
+					linker.args '/NXCOMPAT' 
+					linker.args '/OPT:REF' 
+					linker.args '/INCREMENTAL:NO' 
+//					linker.args '/MANIFEST' 
+//					linker.args '/MANIFESTUAC:"level='asInvoker' uiAccess='false'"' 
+					linker.args '/OPT:ICF' 
+					linker.args '/NOLOGO' 
+					linker.args '/SUBSYSTEM:CONSOLE'
+				}
+			}
+			withType(SharedLibraryBinarySpec) {
+				if (toolChain in VisualCpp) {
+					cCompiler.define   '_USRDLL'
+					cCompiler.define   '_WINDLL'
+					cppCompiler.define '_USRDLL'
+					cppCompiler.define '_WINDLL'
+					if (buildType == buildTypes.debug) {
+						cCompiler.args "/MDd"
+						cppCompiler.args "/MDd"
+					} else 
+					if (buildType == buildTypes.release) {
+						cCompiler.args "/MD"
+						cppCompiler.args "/MD"
+					}
+				}
+				if (toolChain in Gcc) {
+					if (targetPlatform == platforms.linux32) {
+					    linker.args "-Wl,-rpath,$rootDir/lib"   //FIXME
+                    } else
+					if (targetPlatform == platforms.linux64) {
+					    linker.args "-Wl,-rpath,$rootDir/lib64"   //FIXME
+                    }
+				}
+			}
+			withType(StaticLibraryBinarySpec) {
+				if (toolChain in VisualCpp) {
+					cCompiler.define   '_LIB'
+					cCompiler.define   'POCO_STATIC'
+					cppCompiler.define '_LIB'
+					cppCompiler.define 'POCO_STATIC'
+					if (buildType == buildTypes.debug) {
+						cCompiler.args "/MTd"
+						cCompiler.args "/Fd" + toStatic(toPDB(staticLibraryFile), targetPlatform)
+						cppCompiler.args "/MTd"
+						cppCompiler.args "/Fd" + toStatic(toPDB(staticLibraryFile), targetPlatform)
+					} else 
+					if (buildType == buildTypes.release) {
+						cCompiler.args "/MT"
+						cppCompiler.args "/MT"
+					} else {
+						throw new GradleException("Unknown buildType" + buildType)
+					}
+				}
+				if (toolChain in Gcc) {
+					linker.args "-Wl,-rpath,$rootDir/lib64"   //FIXME
+				}
+			}
+			withType(NativeExecutableBinarySpec) {
+				if (toolChain in VisualCpp) {
+					if (buildType == buildTypes.debug) {
+						cCompiler.args "/MDd"
+						cppCompiler.args "/MDd"
+					} else 
+					if (buildType == buildTypes.release) {
+						cCompiler.args "/MD"
+						cppCompiler.args "/MD"
+					} else {
+						throw new GradleException("Unknown buildType" + buildType)
+					}
+				}
+				if (toolChain in Gcc) {
+					if (targetPlatform == platforms.linux32) {
+					    linker.args "-Wl,-rpath,$rootDir/lib"   //FIXME
+                    } else
+					if (targetPlatform == platforms.linux64) {
+					    linker.args "-Wl,-rpath,$rootDir/lib64"   //FIXME
+                    }
+				}
+			}
+		}
+	}
+	tasks.withType(RunTestExecutable) {
+		String PATH = System.getenv("PATH")
+		String name = getName();
+		if (name.contains('Win32')) {
+			PATH = "$rootDir\\bin;$PATH"
+			PATH = "$rootDir\\openssl\\build\\win32\\bin\\release;$PATH"
+			PATH = "$rootDir\\openssl\\build\\win32\\bin\\debug;$PATH"
+			PATH = "$mysql32Home".replace('/','\\') + "\\bin;$PATH"
+			PATH = "$postgres32Home".replace('/','\\') + "\\bin;$PATH"
+
+		} else
+		if (name.contains('Win64')) {
+			PATH = "$rootDir\\bin64;$PATH"
+			PATH = "$rootDir\\openssl\\build\\win64\\bin\\release;$PATH"
+			PATH = "$rootDir\\openssl\\build\\win64\\bin\\debug;$PATH"
+			PATH = "$mysql64Home".replace('/','\\') + "\\bin;$PATH"
+			PATH = "$postgres64Home".replace('/','\\') + "\\bin;$PATH"
+		}
+
+		environment "Path", "$PATH"
+
+		String CPPUNIT_IGNORE = "";
+		if (name.contains('Win32') || name.contains('Win64')) {
+		    CPPUNIT_IGNORE =' class CppUnit::TestCaller<class NTPClientTest>.testTimeSync';
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class RawSocketTest>.testEchoIPv4';
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class RawSocketTest>.testSendToReceiveFromIPv4';
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class ICMPClientTest>.testPing';
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class ICMPClientTest>.testBigPing';
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class HTTPSClientSessionTest>.testProxy';
+    		CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class HTTPSStreamFactoryTest>.testProxy';
+    		CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class TCPServerTest>.testReuseSocket';
+
+	    	//FIXME Those tests below should work
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class ProcessTest>.testLaunch';
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class ProcessTest>.testLaunchRedirectIn';
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class ProcessTest>.testLaunchRedirectOut';
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class ProcessTest>.testLaunchEnv';
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class ProcessTest>.testLaunchArgs';
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class ProcessTest>.testIsRunning';
+	    	CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class ProcessTest>.testIsRunningAllowsForTermination';
+    
+    		//FIXME won't work until SharedLibraries be properly generated
+    		CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class SharedLibraryTest>.testSharedLibrary1';
+    		CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class SharedLibraryTest>.testSharedLibrary2';
+    		CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class SharedLibraryTest>.testSharedLibrary3';
+    		CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class ClassLoaderTest>.testClassLoader2';
+    		CPPUNIT_IGNORE+=' class CppUnit::TestCaller<class ClassLoaderTest>.testClassLoader3';
+	    }
+		if (name.contains('Linux32') || name.contains('Linux64')) {
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI8PathTestEE.testExpand';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI13RawSocketTestEE.testEchoIPv4';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI13RawSocketTestEE.testSendToReceiveFromIPv4';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI14ICMPClientTestEE.testPing';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI14ICMPClientTestEE.testBigPing';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI22HTTPSClientSessionTestEE.testProxy';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI22HTTPSStreamFactoryTestEE.testProxy';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI19MulticastSocketTestEE.testMulticast';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI13NTPClientTestEE.testTimeSync';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI9TimerTestEE.testTimer';
+
+    		//FIXME won't work until SharedLibraries be properly generated
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI17SharedLibraryTestEE.testSharedLibrary1';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI17SharedLibraryTestEE.testSharedLibrary2';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI17SharedLibraryTestEE.testSharedLibrary3';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI15ClassLoaderTestEE.testClassLoader2';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI15ClassLoaderTestEE.testClassLoader3';
+
+	    	//FIXME Those tests below should work
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI11ProcessTestEE.testLaunch';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI11ProcessTestEE.testLaunchRedirectIn';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI11ProcessTestEE.testLaunchRedirectOut';
+            CPPUNIT_IGNORE+=' N7CppUnit10TestCallerI11ProcessTestEE.testLaunchEnv';
+		}
+        CPPUNIT_IGNORE+=' ';
+
+        environment "CPPUNIT_IGNORE", "\"$CPPUNIT_IGNORE\""
+		environment "POCO_BASE", "$rootDir"
+
+		args test
+	}
+}
+
+tasks.withType(CppCompile) {
+	maxParallelForks = 2
+}
+
+task PocoDocIni() {
+    def file = new File("$rootDir/PocoDoc/PocoDoc.ini")
+    file.createNewFile()
+    file.text = """
+Includes=-I$rootDir/CppParser/include,-I$rootDir/CppUnit/include,-I$rootDir/Encodings/include,-I$rootDir/Crypto/include,-I$rootDir/Data/include,-I$rootDir/Data/include,-I$rootDir/Data/MySQL/include,-I$rootDir/Data/ODBC/include,-I$rootDir/Data/PostgreSQL/include,-I$rootDir/Data/SQLite/include, -I$rootDir/Data/SQLite/src,-I$rootDir/Foundation/include,-I$rootDir/JSON/include,-I$rootDir/MongoDB/include,-I$rootDir/Net/include,-I$rootDir/NetSSL_OpenSSL/include,-I$rootDir/NetSSL_Win/include,-I$rootDir/Redis/include,-I$rootDir/Util/include,-I$rootDir/XML/include,-I$rootDir/Zip/include,-I$rootDir/SevenZip/include,-I$rootDir/PDF/include
+PocoBuild=$rootDir
+PocoBase=$rootDir
+PocoDoc.output=releases/poco-${version}-all-doc
+PocoDoc.version=${version}-all
+"""
+	if (os.windows) {
+		def	String javaVCH = VCHome.replace('\\','/')
+		def	String javaCLP = CLPath.replace('\\','/')
+		def	String javaWDK = WDKHome + "/Include/" + WDKVers
+		javaWDK = javaWDK.replace('\\','/')
+		
+ 		file.text += """
+VCH=${javaVCH}
+WDK=${javaWDK}
+CLP=${javaCLP}
+"""
+	} else 
+    if (os.linux) {
+ 		file.text += """
+CXX=g++
+CXXFLAGS=-std=c++11
+"""
+	} else 
+    if (os.macOsX) {
+	}
+}
+task pocoDoc(type: Exec) {
+	dependsOn ':PocoDoc::assemble'
+	dependsOn PocoDocIni
+	if (os.windows) {
+		environment "Path", "$rootDir\\bin;$Path"
+		println environment.Path
+		
+		executable "PocoDoc/bin/PocoDoc.exe"
+		args "/config=$rootDir/PocoDoc/cfg/mkdoc-gradle.xml"
+		args "/config=$rootDir/PocoDoc/PocoDoc.ini"
+	} 
+	if (os.linux) {
+		environment "LD_LIBRARY_PATH", "$rootDir/lib64:$LD_LIBRARY_PATH"
+		executable "PocoDoc/bin64/PocoDoc"
+		args "--config=$rootDir/PocoDoc/cfg/mkdoc-gradle.xml"
+		args "--config=$rootDir/PocoDoc/PocoDoc.ini"
+	}
+	if (os.macOsX) {
+		//FIXME environment "LD_LIBRARY_PATH", "$rootDir/bin:$LD_LIBRARY_PATH"
+		executable "PocoDoc/bin64/PocoDoc"
+		args "--config=$rootDir/PocoDoc/cfg/mkdoc-gradle.xml"
+		args "--config=$rootDir/PocoDoc/PocoDoc.ini"
+	}
+//	inputs.files(tasks.getByPath(':production').outputs.files)
+	inputs.files(executable)
+	inputs.files(fileTree("doc").filter { it.isFile() })
+	inputs.files(new File("$rootDir/PocoDoc/cfg/mkdoc-gradle.xml"))
+	outputs.files(new File("releases/poco-${version}-all-doc/index.html"))
+}
+task zipDoc(type: Zip) {
+	from "releases/poco-${version}-all-doc/"
+	include '*'
+	include '*/*'
+	archiveName "poco-${version}-all-doc.zip"
+	destinationDir(file('releases'))
+	inputs.files(new File("releases/$version-all-doc/index.html"))
+	outputs.files(new File("releases/poco-${version}-all-doc.zip"))
+	dependsOn pocoDoc
+}
+
+task packaging() {
+}
+//
+//	gradle\bin\gradle Zip:testsuite:check -Ptest=-all
+//
+def cover(os, Directory, Module) {
+	return tasks.create("cover-${Module}", Exec) {
+		String PATH = System.getenv("PATH")
+		PATH = "$rootDir\\bin;$PATH"
+		PATH = "$rootDir\\openssl\\build\\win32\\bin\\release;$PATH"
+		PATH = "$rootDir\\openssl\\build\\win32\\bin\\debug;$PATH"
+		PATH = "$mysql32Home".replace('/','\\') + "\\lib;$PATH"
+		PATH = "$postgres32Home".replace('/','\\') + "\\lib;$PATH"
+		environment "Path", "$PATH"
+//		println environment.Path
+
+		environment "POCO_BASE", "$rootDir"
+//		println "POCO_BASE=" + environment.POCO_BASE
+
+		String CPPUNIT_IGNORE;
+		CPPUNIT_IGNORE =  'class CppUnit::TestCaller<class NTPClientTest>.testTimeSync';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class RawSocketTest>.testEchoIPv4';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class RawSocketTest>.testSendToReceiveFromIPv4';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ICMPClientTest>.testPing';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ICMPClientTest>.testBigPing';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class HTTPSClientSessionTest>.testProxy';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class HTTPSStreamFactoryTest>.testProxy';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class TCPServerTest>.testReuseSocket';
+
+		//FIXME Those test below should work
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ProcessTest>.testLaunch';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ProcessTest>.testLaunchRedirectIn';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ProcessTest>.testLaunchRedirectOut';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ProcessTest>.testLaunchEnv';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ProcessTest>.testLaunchArgs';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ProcessTest>.testIsRunning';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ProcessTest>.testIsRunningAllowsForTermination';
+		
+		//FIXME won't work until SharedLibraries be properly generated
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class SharedLibraryTest>.testSharedLibrary1';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class SharedLibraryTest>.testSharedLibrary2';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class SharedLibraryTest>.testSharedLibrary3';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ClassLoaderTest>.testClassLoader2';
+		CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ClassLoaderTest>.testClassLoader3';
+		
+		environment "CPPUNIT_IGNORE", "\"$CPPUNIT_IGNORE\""
+//		println "CPPUNIT_IGNORE=" + environment.CPPUNIT_IGNORE
+
+
+		def Set<Task> tests = project.getTasksByName("testsuite:${Module}", true)
+		setDependsOn(tests)
+
+		workingDir "coverage/${Directory}"
+		file(workingDir).mkdirs()
+
+		executable "${OpenCppCoverageHome}/OpenCppCoverage.exe"
+		args "-q"
+		args "$rootDir/${Directory}/testsuite/gradle/exe/${Module}TestSuite/win32/debug/${Module}TestSuite.exe"
+		args "--modules", "Poco*d.dll"
+		args "--export_type", "cobertura"
+		args "--continue_after_cpp_exception"
+		args "--"
+		args "-all"
+
+		outputs.files(new File(workingDir,"${Module}TestSuite.xml"))
+		
+		onlyIf(new Spec<Exec>() {
+			boolean isSatisfiedBy(Exec task) {
+				   return os.windows;
+			}
+		});
+	}
+}
+def report(os, Directory, Module) {
+	return tasks.create("report-${Module}", Exec) {
+		dependsOn cover(os, Directory, Module)
+		
+		executable "${ReportGeneratorHome}/ReportGenerator.exe"
+		args "-verbosity:Verbose"
+		args "-reports:coverage/${Module}/${Module}TestSuiteCoverage.xml"
+		args "-targetdir:coverage/${Module}"
+//		args "-sourcedirs:XML/src;XML/include;CppUnit/src;CppUnit/include;Foundation/src;Foundation/include"
+
+		File targetDir = new File("coverage/${Module}")
+		inputs.files(new File(targetDir,"${Module}TestSuite.xml"))
+
+		onlyIf(new Spec<Exec>() {
+			boolean isSatisfiedBy(Exec task) {
+				   return os.windows;
+			}
+		});
+	}
+}
+task coverage() {
+	if (os.windows) {
+		def Set<Task> tasksSet = project.getTasksByName('testsuite', true)
+		println "task coverage: covered modules"
+		println "--------------------------------------"
+		tasksSet.each { task -> println task.project.parent.path.replace(':','/').substring(1) }
+		println "--------------------------------------"
+		tasksSet.each { task -> dependsOn report(os, task.project.parent.path.replace(':','/').substring(1), task.project.parent.name) }
+	}
+}
+/*
+task all() {
+        FileCollection incs = task.includes;
+        incs.each { dir -> fileTree(dir).files.each { file -> inputs.files(file) }};
+        inputs.files.each { file -> println file.path }
+}
+*/
+/*
+    tasks { t ->
+        $.components.main.binaries.each { binary ->
+            def stripTask = binary.tasks.taskName("strip")
+            t.create(stripTask) {
+                dependsOn binary.tasks.link
+                doFirst {
+                    if (binary.toolChain in Gcc) {
+                        ["strip", binary.tasks.link.outputFile].execute().waitForOrKill(1000)
+                    }
+                }
+            }
+            binary.tasks.build.dependsOn stripTask
+        }
+    }
+*/
+
+
+
+

+ 1 - 1
gradle

@@ -1 +1 @@
-Subproject commit fd7f69f2e78b6fd23401d06a5c0a9e3e115040b5
+Subproject commit cde5722cd5e9b66fb7471ef5f18b43eee057ccb6

+ 1 - 1
openssl

@@ -1 +1 @@
-Subproject commit 26b1673caad94a702b6d694f48f917a283b30777
+Subproject commit 0c6d16ec85f80ea3ce05a8f2ff52c1b3ba240a41

+ 6255 - 0
x

@@ -0,0 +1,6255 @@
+
+> Configure project :
+Z:\git\poco-1.9.1\bin;interface org.gradle.model.Path
+task coverage: covered modules
+--------------------------------------
+NetSSL_OpenSSL
+Data
+Data/MySQL
+NetSSL_Win
+Net
+Util
+Redis
+Foundation
+MongoDB
+XML
+CppParser
+Data/PostgreSQL
+Zip
+Data/SQLite
+JSON
+Data/ODBC
+Crypto
+Encodings
+--------------------------------------
+
+> Task :tasks
+
+------------------------------------------------------------
+All tasks runnable from root project
+------------------------------------------------------------
+
+Build tasks
+-----------
+ActiveMethodLinux32DebugExecutable - Assembles executable 'activeMethod:linux32:debug:executable'.
+ActiveMethodLinux32ReleaseExecutable - Assembles executable 'activeMethod:linux32:release:executable'.
+ActiveMethodLinux64DebugExecutable - Assembles executable 'activeMethod:linux64:debug:executable'.
+ActiveMethodLinux64ReleaseExecutable - Assembles executable 'activeMethod:linux64:release:executable'.
+ActiveMethodMacosDebugExecutable - Assembles executable 'activeMethod:macos:debug:executable'.
+ActiveMethodMacosReleaseExecutable - Assembles executable 'activeMethod:macos:release:executable'.
+ActiveMethodWin32DebugExecutable - Assembles executable 'activeMethod:win32:debug:executable'.
+ActiveMethodWin32ReleaseExecutable - Assembles executable 'activeMethod:win32:release:executable'.
+ActiveMethodWin64DebugExecutable - Assembles executable 'activeMethod:win64:debug:executable'.
+ActiveMethodWin64ReleaseExecutable - Assembles executable 'activeMethod:win64:release:executable'.
+ActivityLinux32DebugExecutable - Assembles executable 'activity:linux32:debug:executable'.
+ActivityLinux32ReleaseExecutable - Assembles executable 'activity:linux32:release:executable'.
+ActivityLinux64DebugExecutable - Assembles executable 'activity:linux64:debug:executable'.
+ActivityLinux64ReleaseExecutable - Assembles executable 'activity:linux64:release:executable'.
+ActivityMacosDebugExecutable - Assembles executable 'activity:macos:debug:executable'.
+ActivityMacosReleaseExecutable - Assembles executable 'activity:macos:release:executable'.
+ActivityWin32DebugExecutable - Assembles executable 'activity:win32:debug:executable'.
+ActivityWin32ReleaseExecutable - Assembles executable 'activity:win32:release:executable'.
+ActivityWin64DebugExecutable - Assembles executable 'activity:win64:debug:executable'.
+ActivityWin64ReleaseExecutable - Assembles executable 'activity:win64:release:executable'.
+assemble - Assembles the outputs of this project.
+base64decodeLinux32DebugExecutable - Assembles executable 'base64decode:linux32:debug:executable'.
+base64decodeLinux32ReleaseExecutable - Assembles executable 'base64decode:linux32:release:executable'.
+base64decodeLinux64DebugExecutable - Assembles executable 'base64decode:linux64:debug:executable'.
+base64decodeLinux64ReleaseExecutable - Assembles executable 'base64decode:linux64:release:executable'.
+base64decodeMacosDebugExecutable - Assembles executable 'base64decode:macos:debug:executable'.
+base64decodeMacosReleaseExecutable - Assembles executable 'base64decode:macos:release:executable'.
+base64decodeWin32DebugExecutable - Assembles executable 'base64decode:win32:debug:executable'.
+base64decodeWin32ReleaseExecutable - Assembles executable 'base64decode:win32:release:executable'.
+base64decodeWin64DebugExecutable - Assembles executable 'base64decode:win64:debug:executable'.
+base64decodeWin64ReleaseExecutable - Assembles executable 'base64decode:win64:release:executable'.
+base64encodeLinux32DebugExecutable - Assembles executable 'base64encode:linux32:debug:executable'.
+base64encodeLinux32ReleaseExecutable - Assembles executable 'base64encode:linux32:release:executable'.
+base64encodeLinux64DebugExecutable - Assembles executable 'base64encode:linux64:debug:executable'.
+base64encodeLinux64ReleaseExecutable - Assembles executable 'base64encode:linux64:release:executable'.
+base64encodeMacosDebugExecutable - Assembles executable 'base64encode:macos:debug:executable'.
+base64encodeMacosReleaseExecutable - Assembles executable 'base64encode:macos:release:executable'.
+base64encodeWin32DebugExecutable - Assembles executable 'base64encode:win32:debug:executable'.
+base64encodeWin32ReleaseExecutable - Assembles executable 'base64encode:win32:release:executable'.
+base64encodeWin64DebugExecutable - Assembles executable 'base64encode:win64:debug:executable'.
+base64encodeWin64ReleaseExecutable - Assembles executable 'base64encode:win64:release:executable'.
+BenchmarkLinux32DebugExecutable - Assembles executable 'benchmark:linux32:debug:executable'.
+BenchmarkLinux32ReleaseExecutable - Assembles executable 'benchmark:linux32:release:executable'.
+BenchmarkLinux64DebugExecutable - Assembles executable 'benchmark:linux64:debug:executable'.
+BenchmarkLinux64ReleaseExecutable - Assembles executable 'benchmark:linux64:release:executable'.
+BenchmarkMacosDebugExecutable - Assembles executable 'benchmark:macos:debug:executable'.
+BenchmarkMacosReleaseExecutable - Assembles executable 'benchmark:macos:release:executable'.
+BenchmarkWin32DebugExecutable - Assembles executable 'benchmark:win32:debug:executable'.
+BenchmarkWin32ReleaseExecutable - Assembles executable 'benchmark:win32:release:executable'.
+BenchmarkWin64DebugExecutable - Assembles executable 'benchmark:win64:debug:executable'.
+BenchmarkWin64ReleaseExecutable - Assembles executable 'benchmark:win64:release:executable'.
+BinaryReaderWriterLinux32DebugExecutable - Assembles executable 'binaryReaderWriter:linux32:debug:executable'.
+BinaryReaderWriterLinux32ReleaseExecutable - Assembles executable 'binaryReaderWriter:linux32:release:executable'.
+BinaryReaderWriterLinux64DebugExecutable - Assembles executable 'binaryReaderWriter:linux64:debug:executable'.
+BinaryReaderWriterLinux64ReleaseExecutable - Assembles executable 'binaryReaderWriter:linux64:release:executable'.
+BinaryReaderWriterMacosDebugExecutable - Assembles executable 'binaryReaderWriter:macos:debug:executable'.
+BinaryReaderWriterMacosReleaseExecutable - Assembles executable 'binaryReaderWriter:macos:release:executable'.
+BinaryReaderWriterWin32DebugExecutable - Assembles executable 'binaryReaderWriter:win32:debug:executable'.
+BinaryReaderWriterWin32ReleaseExecutable - Assembles executable 'binaryReaderWriter:win32:release:executable'.
+BinaryReaderWriterWin64DebugExecutable - Assembles executable 'binaryReaderWriter:win64:debug:executable'.
+BinaryReaderWriterWin64ReleaseExecutable - Assembles executable 'binaryReaderWriter:win64:release:executable'.
+BindingLinux32DebugExecutable - Assembles executable 'binding:linux32:debug:executable'.
+BindingLinux32ReleaseExecutable - Assembles executable 'binding:linux32:release:executable'.
+BindingLinux64DebugExecutable - Assembles executable 'binding:linux64:debug:executable'.
+BindingLinux64ReleaseExecutable - Assembles executable 'binding:linux64:release:executable'.
+BindingMacosDebugExecutable - Assembles executable 'binding:macos:debug:executable'.
+BindingMacosReleaseExecutable - Assembles executable 'binding:macos:release:executable'.
+BindingWin32DebugExecutable - Assembles executable 'binding:win32:debug:executable'.
+BindingWin32ReleaseExecutable - Assembles executable 'binding:win32:release:executable'.
+BindingWin64DebugExecutable - Assembles executable 'binding:win64:debug:executable'.
+BindingWin64ReleaseExecutable - Assembles executable 'binding:win64:release:executable'.
+build - Assembles and tests this project.
+clean - Deletes the build directory.
+CppParserLinux32DebugSharedLibrary - Assembles shared library 'cppParser:linux32:debug:sharedLibrary'.
+CppParserLinux32DebugStaticLibrary - Assembles static library 'cppParser:linux32:debug:staticLibrary'.
+CppParserLinux32ReleaseSharedLibrary - Assembles shared library 'cppParser:linux32:release:sharedLibrary'.
+CppParserLinux32ReleaseStaticLibrary - Assembles static library 'cppParser:linux32:release:staticLibrary'.
+CppParserLinux64DebugSharedLibrary - Assembles shared library 'cppParser:linux64:debug:sharedLibrary'.
+CppParserLinux64DebugStaticLibrary - Assembles static library 'cppParser:linux64:debug:staticLibrary'.
+CppParserLinux64ReleaseSharedLibrary - Assembles shared library 'cppParser:linux64:release:sharedLibrary'.
+CppParserLinux64ReleaseStaticLibrary - Assembles static library 'cppParser:linux64:release:staticLibrary'.
+CppParserMacosDebugSharedLibrary - Assembles shared library 'cppParser:macos:debug:sharedLibrary'.
+CppParserMacosDebugStaticLibrary - Assembles static library 'cppParser:macos:debug:staticLibrary'.
+CppParserMacosReleaseSharedLibrary - Assembles shared library 'cppParser:macos:release:sharedLibrary'.
+CppParserMacosReleaseStaticLibrary - Assembles static library 'cppParser:macos:release:staticLibrary'.
+CppParserTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'cppParserTestSuite:linux32:debug:cppUnitExe'.
+CppParserTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'cppParserTestSuite:linux32:release:cppUnitExe'.
+CppParserTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'cppParserTestSuite:linux64:debug:cppUnitExe'.
+CppParserTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'cppParserTestSuite:linux64:release:cppUnitExe'.
+CppParserTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'cppParserTestSuite:macos:debug:cppUnitExe'.
+CppParserTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'cppParserTestSuite:macos:release:cppUnitExe'.
+CppParserTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'cppParserTestSuite:win32:debug:cppUnitExe'.
+CppParserTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'cppParserTestSuite:win32:release:cppUnitExe'.
+CppParserTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'cppParserTestSuite:win64:debug:cppUnitExe'.
+CppParserTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'cppParserTestSuite:win64:release:cppUnitExe'.
+CppParserWin32DebugSemiStaticLibrary - Assembles semi static library 'cppParser:win32:debug:semiStaticLibrary'.
+CppParserWin32DebugSharedLibrary - Assembles shared library 'cppParser:win32:debug:sharedLibrary'.
+CppParserWin32DebugStaticLibrary - Assembles static library 'cppParser:win32:debug:staticLibrary'.
+CppParserWin32ReleaseSemiStaticLibrary - Assembles semi static library 'cppParser:win32:release:semiStaticLibrary'.
+CppParserWin32ReleaseSharedLibrary - Assembles shared library 'cppParser:win32:release:sharedLibrary'.
+CppParserWin32ReleaseStaticLibrary - Assembles static library 'cppParser:win32:release:staticLibrary'.
+CppParserWin64DebugSemiStaticLibrary - Assembles semi static library 'cppParser:win64:debug:semiStaticLibrary'.
+CppParserWin64DebugSharedLibrary - Assembles shared library 'cppParser:win64:debug:sharedLibrary'.
+CppParserWin64DebugStaticLibrary - Assembles static library 'cppParser:win64:debug:staticLibrary'.
+CppParserWin64ReleaseSemiStaticLibrary - Assembles semi static library 'cppParser:win64:release:semiStaticLibrary'.
+CppParserWin64ReleaseSharedLibrary - Assembles shared library 'cppParser:win64:release:sharedLibrary'.
+CppParserWin64ReleaseStaticLibrary - Assembles static library 'cppParser:win64:release:staticLibrary'.
+CppUnitLinux32DebugSharedLibrary - Assembles shared library 'cppUnit:linux32:debug:sharedLibrary'.
+CppUnitLinux32DebugStaticLibrary - Assembles static library 'cppUnit:linux32:debug:staticLibrary'.
+CppUnitLinux32ReleaseSharedLibrary - Assembles shared library 'cppUnit:linux32:release:sharedLibrary'.
+CppUnitLinux32ReleaseStaticLibrary - Assembles static library 'cppUnit:linux32:release:staticLibrary'.
+CppUnitLinux64DebugSharedLibrary - Assembles shared library 'cppUnit:linux64:debug:sharedLibrary'.
+CppUnitLinux64DebugStaticLibrary - Assembles static library 'cppUnit:linux64:debug:staticLibrary'.
+CppUnitLinux64ReleaseSharedLibrary - Assembles shared library 'cppUnit:linux64:release:sharedLibrary'.
+CppUnitLinux64ReleaseStaticLibrary - Assembles static library 'cppUnit:linux64:release:staticLibrary'.
+CppUnitMacosDebugSharedLibrary - Assembles shared library 'cppUnit:macos:debug:sharedLibrary'.
+CppUnitMacosDebugStaticLibrary - Assembles static library 'cppUnit:macos:debug:staticLibrary'.
+CppUnitMacosReleaseSharedLibrary - Assembles shared library 'cppUnit:macos:release:sharedLibrary'.
+CppUnitMacosReleaseStaticLibrary - Assembles static library 'cppUnit:macos:release:staticLibrary'.
+CppUnitWin32DebugSemiStaticLibrary - Assembles semi static library 'cppUnit:win32:debug:semiStaticLibrary'.
+CppUnitWin32DebugSharedLibrary - Assembles shared library 'cppUnit:win32:debug:sharedLibrary'.
+CppUnitWin32DebugStaticLibrary - Assembles static library 'cppUnit:win32:debug:staticLibrary'.
+CppUnitWin32ReleaseSemiStaticLibrary - Assembles semi static library 'cppUnit:win32:release:semiStaticLibrary'.
+CppUnitWin32ReleaseSharedLibrary - Assembles shared library 'cppUnit:win32:release:sharedLibrary'.
+CppUnitWin32ReleaseStaticLibrary - Assembles static library 'cppUnit:win32:release:staticLibrary'.
+CppUnitWin64DebugSemiStaticLibrary - Assembles semi static library 'cppUnit:win64:debug:semiStaticLibrary'.
+CppUnitWin64DebugSharedLibrary - Assembles shared library 'cppUnit:win64:debug:sharedLibrary'.
+CppUnitWin64DebugStaticLibrary - Assembles static library 'cppUnit:win64:debug:staticLibrary'.
+CppUnitWin64ReleaseSemiStaticLibrary - Assembles semi static library 'cppUnit:win64:release:semiStaticLibrary'.
+CppUnitWin64ReleaseSharedLibrary - Assembles shared library 'cppUnit:win64:release:sharedLibrary'.
+CppUnitWin64ReleaseStaticLibrary - Assembles static library 'cppUnit:win64:release:staticLibrary'.
+cpspcLinux32DebugExecutable - Assembles executable 'cpspc:linux32:debug:executable'.
+cpspcLinux32ReleaseExecutable - Assembles executable 'cpspc:linux32:release:executable'.
+cpspcLinux64DebugExecutable - Assembles executable 'cpspc:linux64:debug:executable'.
+cpspcLinux64ReleaseExecutable - Assembles executable 'cpspc:linux64:release:executable'.
+cpspcMacosDebugExecutable - Assembles executable 'cpspc:macos:debug:executable'.
+cpspcMacosReleaseExecutable - Assembles executable 'cpspc:macos:release:executable'.
+cpspcWin32DebugExecutable - Assembles executable 'cpspc:win32:debug:executable'.
+cpspcWin32ReleaseExecutable - Assembles executable 'cpspc:win32:release:executable'.
+cpspcWin64DebugExecutable - Assembles executable 'cpspc:win64:debug:executable'.
+cpspcWin64ReleaseExecutable - Assembles executable 'cpspc:win64:release:executable'.
+CryptoLinux32DebugSharedLibrary - Assembles shared library 'crypto:linux32:debug:sharedLibrary'.
+CryptoLinux32DebugStaticLibrary - Assembles static library 'crypto:linux32:debug:staticLibrary'.
+CryptoLinux32ReleaseSharedLibrary - Assembles shared library 'crypto:linux32:release:sharedLibrary'.
+CryptoLinux32ReleaseStaticLibrary - Assembles static library 'crypto:linux32:release:staticLibrary'.
+CryptoLinux64DebugSharedLibrary - Assembles shared library 'crypto:linux64:debug:sharedLibrary'.
+CryptoLinux64DebugStaticLibrary - Assembles static library 'crypto:linux64:debug:staticLibrary'.
+CryptoLinux64ReleaseSharedLibrary - Assembles shared library 'crypto:linux64:release:sharedLibrary'.
+CryptoLinux64ReleaseStaticLibrary - Assembles static library 'crypto:linux64:release:staticLibrary'.
+CryptoMacosDebugSharedLibrary - Assembles shared library 'crypto:macos:debug:sharedLibrary'.
+CryptoMacosDebugStaticLibrary - Assembles static library 'crypto:macos:debug:staticLibrary'.
+CryptoMacosReleaseSharedLibrary - Assembles shared library 'crypto:macos:release:sharedLibrary'.
+CryptoMacosReleaseStaticLibrary - Assembles static library 'crypto:macos:release:staticLibrary'.
+CryptoTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'cryptoTestSuite:linux32:debug:cppUnitExe'.
+CryptoTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'cryptoTestSuite:linux32:release:cppUnitExe'.
+CryptoTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'cryptoTestSuite:linux64:debug:cppUnitExe'.
+CryptoTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'cryptoTestSuite:linux64:release:cppUnitExe'.
+CryptoTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'cryptoTestSuite:macos:debug:cppUnitExe'.
+CryptoTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'cryptoTestSuite:macos:release:cppUnitExe'.
+CryptoTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'cryptoTestSuite:win32:debug:cppUnitExe'.
+CryptoTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'cryptoTestSuite:win32:release:cppUnitExe'.
+CryptoTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'cryptoTestSuite:win64:debug:cppUnitExe'.
+CryptoTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'cryptoTestSuite:win64:release:cppUnitExe'.
+CryptoWin32DebugSemiStaticLibrary - Assembles semi static library 'crypto:win32:debug:semiStaticLibrary'.
+CryptoWin32DebugSharedLibrary - Assembles shared library 'crypto:win32:debug:sharedLibrary'.
+CryptoWin32DebugStaticLibrary - Assembles static library 'crypto:win32:debug:staticLibrary'.
+CryptoWin32ReleaseSemiStaticLibrary - Assembles semi static library 'crypto:win32:release:semiStaticLibrary'.
+CryptoWin32ReleaseSharedLibrary - Assembles shared library 'crypto:win32:release:sharedLibrary'.
+CryptoWin32ReleaseStaticLibrary - Assembles static library 'crypto:win32:release:staticLibrary'.
+CryptoWin64DebugSemiStaticLibrary - Assembles semi static library 'crypto:win64:debug:semiStaticLibrary'.
+CryptoWin64DebugSharedLibrary - Assembles shared library 'crypto:win64:debug:sharedLibrary'.
+CryptoWin64DebugStaticLibrary - Assembles static library 'crypto:win64:debug:staticLibrary'.
+CryptoWin64ReleaseSemiStaticLibrary - Assembles semi static library 'crypto:win64:release:semiStaticLibrary'.
+CryptoWin64ReleaseSharedLibrary - Assembles shared library 'crypto:win64:release:sharedLibrary'.
+CryptoWin64ReleaseStaticLibrary - Assembles static library 'crypto:win64:release:staticLibrary'.
+dataLinux32DebugExecutable - Assembles executable 'data:linux32:debug:executable'.
+DataLinux32DebugSharedLibrary - Assembles shared library 'data:linux32:debug:sharedLibrary'.
+DataLinux32DebugStaticLibrary - Assembles static library 'data:linux32:debug:staticLibrary'.
+dataLinux32ReleaseExecutable - Assembles executable 'data:linux32:release:executable'.
+DataLinux32ReleaseSharedLibrary - Assembles shared library 'data:linux32:release:sharedLibrary'.
+DataLinux32ReleaseStaticLibrary - Assembles static library 'data:linux32:release:staticLibrary'.
+dataLinux64DebugExecutable - Assembles executable 'data:linux64:debug:executable'.
+DataLinux64DebugSharedLibrary - Assembles shared library 'data:linux64:debug:sharedLibrary'.
+DataLinux64DebugStaticLibrary - Assembles static library 'data:linux64:debug:staticLibrary'.
+dataLinux64ReleaseExecutable - Assembles executable 'data:linux64:release:executable'.
+DataLinux64ReleaseSharedLibrary - Assembles shared library 'data:linux64:release:sharedLibrary'.
+DataLinux64ReleaseStaticLibrary - Assembles static library 'data:linux64:release:staticLibrary'.
+dataMacosDebugExecutable - Assembles executable 'data:macos:debug:executable'.
+DataMacosDebugSharedLibrary - Assembles shared library 'data:macos:debug:sharedLibrary'.
+DataMacosDebugStaticLibrary - Assembles static library 'data:macos:debug:staticLibrary'.
+dataMacosReleaseExecutable - Assembles executable 'data:macos:release:executable'.
+DataMacosReleaseSharedLibrary - Assembles shared library 'data:macos:release:sharedLibrary'.
+DataMacosReleaseStaticLibrary - Assembles static library 'data:macos:release:staticLibrary'.
+DataMySQLLinux32DebugSharedLibrary - Assembles shared library 'dataMySQL:linux32:debug:sharedLibrary'.
+DataMySQLLinux32DebugStaticLibrary - Assembles static library 'dataMySQL:linux32:debug:staticLibrary'.
+DataMySQLLinux32ReleaseSharedLibrary - Assembles shared library 'dataMySQL:linux32:release:sharedLibrary'.
+DataMySQLLinux32ReleaseStaticLibrary - Assembles static library 'dataMySQL:linux32:release:staticLibrary'.
+DataMySQLLinux64DebugSharedLibrary - Assembles shared library 'dataMySQL:linux64:debug:sharedLibrary'.
+DataMySQLLinux64DebugStaticLibrary - Assembles static library 'dataMySQL:linux64:debug:staticLibrary'.
+DataMySQLLinux64ReleaseSharedLibrary - Assembles shared library 'dataMySQL:linux64:release:sharedLibrary'.
+DataMySQLLinux64ReleaseStaticLibrary - Assembles static library 'dataMySQL:linux64:release:staticLibrary'.
+DataMySQLMacosDebugSharedLibrary - Assembles shared library 'dataMySQL:macos:debug:sharedLibrary'.
+DataMySQLMacosDebugStaticLibrary - Assembles static library 'dataMySQL:macos:debug:staticLibrary'.
+DataMySQLMacosReleaseSharedLibrary - Assembles shared library 'dataMySQL:macos:release:sharedLibrary'.
+DataMySQLMacosReleaseStaticLibrary - Assembles static library 'dataMySQL:macos:release:staticLibrary'.
+DataMySQLWin32DebugSemiStaticLibrary - Assembles semi static library 'dataMySQL:win32:debug:semiStaticLibrary'.
+DataMySQLWin32DebugSharedLibrary - Assembles shared library 'dataMySQL:win32:debug:sharedLibrary'.
+DataMySQLWin32DebugStaticLibrary - Assembles static library 'dataMySQL:win32:debug:staticLibrary'.
+DataMySQLWin32ReleaseSemiStaticLibrary - Assembles semi static library 'dataMySQL:win32:release:semiStaticLibrary'.
+DataMySQLWin32ReleaseSharedLibrary - Assembles shared library 'dataMySQL:win32:release:sharedLibrary'.
+DataMySQLWin32ReleaseStaticLibrary - Assembles static library 'dataMySQL:win32:release:staticLibrary'.
+DataMySQLWin64DebugSemiStaticLibrary - Assembles semi static library 'dataMySQL:win64:debug:semiStaticLibrary'.
+DataMySQLWin64DebugSharedLibrary - Assembles shared library 'dataMySQL:win64:debug:sharedLibrary'.
+DataMySQLWin64DebugStaticLibrary - Assembles static library 'dataMySQL:win64:debug:staticLibrary'.
+DataMySQLWin64ReleaseSemiStaticLibrary - Assembles semi static library 'dataMySQL:win64:release:semiStaticLibrary'.
+DataMySQLWin64ReleaseSharedLibrary - Assembles shared library 'dataMySQL:win64:release:sharedLibrary'.
+DataMySQLWin64ReleaseStaticLibrary - Assembles static library 'dataMySQL:win64:release:staticLibrary'.
+DataODBCLinux32DebugSharedLibrary - Assembles shared library 'dataODBC:linux32:debug:sharedLibrary'.
+DataODBCLinux32DebugStaticLibrary - Assembles static library 'dataODBC:linux32:debug:staticLibrary'.
+DataODBCLinux32ReleaseSharedLibrary - Assembles shared library 'dataODBC:linux32:release:sharedLibrary'.
+DataODBCLinux32ReleaseStaticLibrary - Assembles static library 'dataODBC:linux32:release:staticLibrary'.
+DataODBCLinux64DebugSharedLibrary - Assembles shared library 'dataODBC:linux64:debug:sharedLibrary'.
+DataODBCLinux64DebugStaticLibrary - Assembles static library 'dataODBC:linux64:debug:staticLibrary'.
+DataODBCLinux64ReleaseSharedLibrary - Assembles shared library 'dataODBC:linux64:release:sharedLibrary'.
+DataODBCLinux64ReleaseStaticLibrary - Assembles static library 'dataODBC:linux64:release:staticLibrary'.
+DataODBCMacosDebugSharedLibrary - Assembles shared library 'dataODBC:macos:debug:sharedLibrary'.
+DataODBCMacosDebugStaticLibrary - Assembles static library 'dataODBC:macos:debug:staticLibrary'.
+DataODBCMacosReleaseSharedLibrary - Assembles shared library 'dataODBC:macos:release:sharedLibrary'.
+DataODBCMacosReleaseStaticLibrary - Assembles static library 'dataODBC:macos:release:staticLibrary'.
+DataODBCWin32DebugSemiStaticLibrary - Assembles semi static library 'dataODBC:win32:debug:semiStaticLibrary'.
+DataODBCWin32DebugSharedLibrary - Assembles shared library 'dataODBC:win32:debug:sharedLibrary'.
+DataODBCWin32DebugStaticLibrary - Assembles static library 'dataODBC:win32:debug:staticLibrary'.
+DataODBCWin32ReleaseSemiStaticLibrary - Assembles semi static library 'dataODBC:win32:release:semiStaticLibrary'.
+DataODBCWin32ReleaseSharedLibrary - Assembles shared library 'dataODBC:win32:release:sharedLibrary'.
+DataODBCWin32ReleaseStaticLibrary - Assembles static library 'dataODBC:win32:release:staticLibrary'.
+DataODBCWin64DebugSemiStaticLibrary - Assembles semi static library 'dataODBC:win64:debug:semiStaticLibrary'.
+DataODBCWin64DebugSharedLibrary - Assembles shared library 'dataODBC:win64:debug:sharedLibrary'.
+DataODBCWin64DebugStaticLibrary - Assembles static library 'dataODBC:win64:debug:staticLibrary'.
+DataODBCWin64ReleaseSemiStaticLibrary - Assembles semi static library 'dataODBC:win64:release:semiStaticLibrary'.
+DataODBCWin64ReleaseSharedLibrary - Assembles shared library 'dataODBC:win64:release:sharedLibrary'.
+DataODBCWin64ReleaseStaticLibrary - Assembles static library 'dataODBC:win64:release:staticLibrary'.
+DataPostgreSQLLinux32DebugSharedLibrary - Assembles shared library 'dataPostgreSQL:linux32:debug:sharedLibrary'.
+DataPostgreSQLLinux32DebugStaticLibrary - Assembles static library 'dataPostgreSQL:linux32:debug:staticLibrary'.
+DataPostgreSQLLinux32ReleaseSharedLibrary - Assembles shared library 'dataPostgreSQL:linux32:release:sharedLibrary'.
+DataPostgreSQLLinux32ReleaseStaticLibrary - Assembles static library 'dataPostgreSQL:linux32:release:staticLibrary'.
+DataPostgreSQLLinux64DebugSharedLibrary - Assembles shared library 'dataPostgreSQL:linux64:debug:sharedLibrary'.
+DataPostgreSQLLinux64DebugStaticLibrary - Assembles static library 'dataPostgreSQL:linux64:debug:staticLibrary'.
+DataPostgreSQLLinux64ReleaseSharedLibrary - Assembles shared library 'dataPostgreSQL:linux64:release:sharedLibrary'.
+DataPostgreSQLLinux64ReleaseStaticLibrary - Assembles static library 'dataPostgreSQL:linux64:release:staticLibrary'.
+DataPostgreSQLMacosDebugSharedLibrary - Assembles shared library 'dataPostgreSQL:macos:debug:sharedLibrary'.
+DataPostgreSQLMacosDebugStaticLibrary - Assembles static library 'dataPostgreSQL:macos:debug:staticLibrary'.
+DataPostgreSQLMacosReleaseSharedLibrary - Assembles shared library 'dataPostgreSQL:macos:release:sharedLibrary'.
+DataPostgreSQLMacosReleaseStaticLibrary - Assembles static library 'dataPostgreSQL:macos:release:staticLibrary'.
+DataPostgreSQLWin32DebugSemiStaticLibrary - Assembles semi static library 'dataPostgreSQL:win32:debug:semiStaticLibrary'.
+DataPostgreSQLWin32DebugSharedLibrary - Assembles shared library 'dataPostgreSQL:win32:debug:sharedLibrary'.
+DataPostgreSQLWin32DebugStaticLibrary - Assembles static library 'dataPostgreSQL:win32:debug:staticLibrary'.
+DataPostgreSQLWin32ReleaseSemiStaticLibrary - Assembles semi static library 'dataPostgreSQL:win32:release:semiStaticLibrary'.
+DataPostgreSQLWin32ReleaseSharedLibrary - Assembles shared library 'dataPostgreSQL:win32:release:sharedLibrary'.
+DataPostgreSQLWin32ReleaseStaticLibrary - Assembles static library 'dataPostgreSQL:win32:release:staticLibrary'.
+DataPostgreSQLWin64DebugSemiStaticLibrary - Assembles semi static library 'dataPostgreSQL:win64:debug:semiStaticLibrary'.
+DataPostgreSQLWin64DebugSharedLibrary - Assembles shared library 'dataPostgreSQL:win64:debug:sharedLibrary'.
+DataPostgreSQLWin64DebugStaticLibrary - Assembles static library 'dataPostgreSQL:win64:debug:staticLibrary'.
+DataPostgreSQLWin64ReleaseSemiStaticLibrary - Assembles semi static library 'dataPostgreSQL:win64:release:semiStaticLibrary'.
+DataPostgreSQLWin64ReleaseSharedLibrary - Assembles shared library 'dataPostgreSQL:win64:release:sharedLibrary'.
+DataPostgreSQLWin64ReleaseStaticLibrary - Assembles static library 'dataPostgreSQL:win64:release:staticLibrary'.
+DataSQLiteLinux32DebugSharedLibrary - Assembles shared library 'dataSQLite:linux32:debug:sharedLibrary'.
+DataSQLiteLinux32DebugStaticLibrary - Assembles static library 'dataSQLite:linux32:debug:staticLibrary'.
+DataSQLiteLinux32ReleaseSharedLibrary - Assembles shared library 'dataSQLite:linux32:release:sharedLibrary'.
+DataSQLiteLinux32ReleaseStaticLibrary - Assembles static library 'dataSQLite:linux32:release:staticLibrary'.
+DataSQLiteLinux64DebugSharedLibrary - Assembles shared library 'dataSQLite:linux64:debug:sharedLibrary'.
+DataSQLiteLinux64DebugStaticLibrary - Assembles static library 'dataSQLite:linux64:debug:staticLibrary'.
+DataSQLiteLinux64ReleaseSharedLibrary - Assembles shared library 'dataSQLite:linux64:release:sharedLibrary'.
+DataSQLiteLinux64ReleaseStaticLibrary - Assembles static library 'dataSQLite:linux64:release:staticLibrary'.
+DataSQLiteMacosDebugSharedLibrary - Assembles shared library 'dataSQLite:macos:debug:sharedLibrary'.
+DataSQLiteMacosDebugStaticLibrary - Assembles static library 'dataSQLite:macos:debug:staticLibrary'.
+DataSQLiteMacosReleaseSharedLibrary - Assembles shared library 'dataSQLite:macos:release:sharedLibrary'.
+DataSQLiteMacosReleaseStaticLibrary - Assembles static library 'dataSQLite:macos:release:staticLibrary'.
+DataSQLiteWin32DebugSemiStaticLibrary - Assembles semi static library 'dataSQLite:win32:debug:semiStaticLibrary'.
+DataSQLiteWin32DebugSharedLibrary - Assembles shared library 'dataSQLite:win32:debug:sharedLibrary'.
+DataSQLiteWin32DebugStaticLibrary - Assembles static library 'dataSQLite:win32:debug:staticLibrary'.
+DataSQLiteWin32ReleaseSemiStaticLibrary - Assembles semi static library 'dataSQLite:win32:release:semiStaticLibrary'.
+DataSQLiteWin32ReleaseSharedLibrary - Assembles shared library 'dataSQLite:win32:release:sharedLibrary'.
+DataSQLiteWin32ReleaseStaticLibrary - Assembles static library 'dataSQLite:win32:release:staticLibrary'.
+DataSQLiteWin64DebugSemiStaticLibrary - Assembles semi static library 'dataSQLite:win64:debug:semiStaticLibrary'.
+DataSQLiteWin64DebugSharedLibrary - Assembles shared library 'dataSQLite:win64:debug:sharedLibrary'.
+DataSQLiteWin64DebugStaticLibrary - Assembles static library 'dataSQLite:win64:debug:staticLibrary'.
+DataSQLiteWin64ReleaseSemiStaticLibrary - Assembles semi static library 'dataSQLite:win64:release:semiStaticLibrary'.
+DataSQLiteWin64ReleaseSharedLibrary - Assembles shared library 'dataSQLite:win64:release:sharedLibrary'.
+DataSQLiteWin64ReleaseStaticLibrary - Assembles static library 'dataSQLite:win64:release:staticLibrary'.
+DataTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'dataTestSuite:linux32:debug:cppUnitExe'.
+DataTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'dataTestSuite:linux32:release:cppUnitExe'.
+DataTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'dataTestSuite:linux64:debug:cppUnitExe'.
+DataTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'dataTestSuite:linux64:release:cppUnitExe'.
+DataTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'dataTestSuite:macos:debug:cppUnitExe'.
+DataTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'dataTestSuite:macos:release:cppUnitExe'.
+DataTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'dataTestSuite:win32:debug:cppUnitExe'.
+DataTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'dataTestSuite:win32:release:cppUnitExe'.
+DataTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'dataTestSuite:win64:debug:cppUnitExe'.
+DataTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'dataTestSuite:win64:release:cppUnitExe'.
+dataWin32DebugExecutable - Assembles executable 'data:win32:debug:executable'.
+DataWin32DebugSemiStaticLibrary - Assembles semi static library 'data:win32:debug:semiStaticLibrary'.
+DataWin32DebugSharedLibrary - Assembles shared library 'data:win32:debug:sharedLibrary'.
+DataWin32DebugStaticLibrary - Assembles static library 'data:win32:debug:staticLibrary'.
+dataWin32ReleaseExecutable - Assembles executable 'data:win32:release:executable'.
+DataWin32ReleaseSemiStaticLibrary - Assembles semi static library 'data:win32:release:semiStaticLibrary'.
+DataWin32ReleaseSharedLibrary - Assembles shared library 'data:win32:release:sharedLibrary'.
+DataWin32ReleaseStaticLibrary - Assembles static library 'data:win32:release:staticLibrary'.
+dataWin64DebugExecutable - Assembles executable 'data:win64:debug:executable'.
+DataWin64DebugSemiStaticLibrary - Assembles semi static library 'data:win64:debug:semiStaticLibrary'.
+DataWin64DebugSharedLibrary - Assembles shared library 'data:win64:debug:sharedLibrary'.
+DataWin64DebugStaticLibrary - Assembles static library 'data:win64:debug:staticLibrary'.
+dataWin64ReleaseExecutable - Assembles executable 'data:win64:release:executable'.
+DataWin64ReleaseSemiStaticLibrary - Assembles semi static library 'data:win64:release:semiStaticLibrary'.
+DataWin64ReleaseSharedLibrary - Assembles shared library 'data:win64:release:sharedLibrary'.
+DataWin64ReleaseStaticLibrary - Assembles static library 'data:win64:release:staticLibrary'.
+DateTimeLinux32DebugExecutable - Assembles executable 'dateTime:linux32:debug:executable'.
+DateTimeLinux32ReleaseExecutable - Assembles executable 'dateTime:linux32:release:executable'.
+DateTimeLinux64DebugExecutable - Assembles executable 'dateTime:linux64:debug:executable'.
+DateTimeLinux64ReleaseExecutable - Assembles executable 'dateTime:linux64:release:executable'.
+DateTimeMacosDebugExecutable - Assembles executable 'dateTime:macos:debug:executable'.
+DateTimeMacosReleaseExecutable - Assembles executable 'dateTime:macos:release:executable'.
+DateTimeWin32DebugExecutable - Assembles executable 'dateTime:win32:debug:executable'.
+DateTimeWin32ReleaseExecutable - Assembles executable 'dateTime:win32:release:executable'.
+DateTimeWin64DebugExecutable - Assembles executable 'dateTime:win64:debug:executable'.
+DateTimeWin64ReleaseExecutable - Assembles executable 'dateTime:win64:release:executable'.
+deflateLinux32DebugExecutable - Assembles executable 'deflate:linux32:debug:executable'.
+deflateLinux32ReleaseExecutable - Assembles executable 'deflate:linux32:release:executable'.
+deflateLinux64DebugExecutable - Assembles executable 'deflate:linux64:debug:executable'.
+deflateLinux64ReleaseExecutable - Assembles executable 'deflate:linux64:release:executable'.
+deflateMacosDebugExecutable - Assembles executable 'deflate:macos:debug:executable'.
+deflateMacosReleaseExecutable - Assembles executable 'deflate:macos:release:executable'.
+deflateWin32DebugExecutable - Assembles executable 'deflate:win32:debug:executable'.
+deflateWin32ReleaseExecutable - Assembles executable 'deflate:win32:release:executable'.
+deflateWin64DebugExecutable - Assembles executable 'deflate:win64:debug:executable'.
+deflateWin64ReleaseExecutable - Assembles executable 'deflate:win64:release:executable'.
+dictLinux32DebugExecutable - Assembles executable 'dict:linux32:debug:executable'.
+dictLinux32ReleaseExecutable - Assembles executable 'dict:linux32:release:executable'.
+dictLinux64DebugExecutable - Assembles executable 'dict:linux64:debug:executable'.
+dictLinux64ReleaseExecutable - Assembles executable 'dict:linux64:release:executable'.
+dictMacosDebugExecutable - Assembles executable 'dict:macos:debug:executable'.
+dictMacosReleaseExecutable - Assembles executable 'dict:macos:release:executable'.
+dictWin32DebugExecutable - Assembles executable 'dict:win32:debug:executable'.
+dictWin32ReleaseExecutable - Assembles executable 'dict:win32:release:executable'.
+dictWin64DebugExecutable - Assembles executable 'dict:win64:debug:executable'.
+dictWin64ReleaseExecutable - Assembles executable 'dict:win64:release:executable'.
+dirLinux32DebugExecutable - Assembles executable 'dir:linux32:debug:executable'.
+dirLinux32ReleaseExecutable - Assembles executable 'dir:linux32:release:executable'.
+dirLinux64DebugExecutable - Assembles executable 'dir:linux64:debug:executable'.
+dirLinux64ReleaseExecutable - Assembles executable 'dir:linux64:release:executable'.
+dirMacosDebugExecutable - Assembles executable 'dir:macos:debug:executable'.
+dirMacosReleaseExecutable - Assembles executable 'dir:macos:release:executable'.
+dirWin32DebugExecutable - Assembles executable 'dir:win32:debug:executable'.
+dirWin32ReleaseExecutable - Assembles executable 'dir:win32:release:executable'.
+dirWin64DebugExecutable - Assembles executable 'dir:win64:debug:executable'.
+dirWin64ReleaseExecutable - Assembles executable 'dir:win64:release:executable'.
+DOMParserLinux32DebugExecutable - Assembles executable 'dOMParser:linux32:debug:executable'.
+DOMParserLinux32ReleaseExecutable - Assembles executable 'dOMParser:linux32:release:executable'.
+DOMParserLinux64DebugExecutable - Assembles executable 'dOMParser:linux64:debug:executable'.
+DOMParserLinux64ReleaseExecutable - Assembles executable 'dOMParser:linux64:release:executable'.
+DOMParserMacosDebugExecutable - Assembles executable 'dOMParser:macos:debug:executable'.
+DOMParserMacosReleaseExecutable - Assembles executable 'dOMParser:macos:release:executable'.
+DOMParserWin32DebugExecutable - Assembles executable 'dOMParser:win32:debug:executable'.
+DOMParserWin32ReleaseExecutable - Assembles executable 'dOMParser:win32:release:executable'.
+DOMParserWin64DebugExecutable - Assembles executable 'dOMParser:win64:debug:executable'.
+DOMParserWin64ReleaseExecutable - Assembles executable 'dOMParser:win64:release:executable'.
+DOMWriterLinux32DebugExecutable - Assembles executable 'dOMWriter:linux32:debug:executable'.
+DOMWriterLinux32ReleaseExecutable - Assembles executable 'dOMWriter:linux32:release:executable'.
+DOMWriterLinux64DebugExecutable - Assembles executable 'dOMWriter:linux64:debug:executable'.
+DOMWriterLinux64ReleaseExecutable - Assembles executable 'dOMWriter:linux64:release:executable'.
+DOMWriterMacosDebugExecutable - Assembles executable 'dOMWriter:macos:debug:executable'.
+DOMWriterMacosReleaseExecutable - Assembles executable 'dOMWriter:macos:release:executable'.
+DOMWriterWin32DebugExecutable - Assembles executable 'dOMWriter:win32:debug:executable'.
+DOMWriterWin32ReleaseExecutable - Assembles executable 'dOMWriter:win32:release:executable'.
+DOMWriterWin64DebugExecutable - Assembles executable 'dOMWriter:win64:debug:executable'.
+DOMWriterWin64ReleaseExecutable - Assembles executable 'dOMWriter:win64:release:executable'.
+downloadLinux32DebugExecutable - Assembles executable 'download:linux32:debug:executable'.
+downloadLinux32ReleaseExecutable - Assembles executable 'download:linux32:release:executable'.
+downloadLinux64DebugExecutable - Assembles executable 'download:linux64:debug:executable'.
+downloadLinux64ReleaseExecutable - Assembles executable 'download:linux64:release:executable'.
+downloadMacosDebugExecutable - Assembles executable 'download:macos:debug:executable'.
+downloadMacosReleaseExecutable - Assembles executable 'download:macos:release:executable'.
+downloadWin32DebugExecutable - Assembles executable 'download:win32:debug:executable'.
+downloadWin32ReleaseExecutable - Assembles executable 'download:win32:release:executable'.
+downloadWin64DebugExecutable - Assembles executable 'download:win64:debug:executable'.
+downloadWin64ReleaseExecutable - Assembles executable 'download:win64:release:executable'.
+EchoServerLinux32DebugExecutable - Assembles executable 'echoServer:linux32:debug:executable'.
+EchoServerLinux32ReleaseExecutable - Assembles executable 'echoServer:linux32:release:executable'.
+EchoServerLinux64DebugExecutable - Assembles executable 'echoServer:linux64:debug:executable'.
+EchoServerLinux64ReleaseExecutable - Assembles executable 'echoServer:linux64:release:executable'.
+EchoServerMacosDebugExecutable - Assembles executable 'echoServer:macos:debug:executable'.
+EchoServerMacosReleaseExecutable - Assembles executable 'echoServer:macos:release:executable'.
+EchoServerWin32DebugExecutable - Assembles executable 'echoServer:win32:debug:executable'.
+EchoServerWin32ReleaseExecutable - Assembles executable 'echoServer:win32:release:executable'.
+EchoServerWin64DebugExecutable - Assembles executable 'echoServer:win64:debug:executable'.
+EchoServerWin64ReleaseExecutable - Assembles executable 'echoServer:win64:release:executable'.
+EncodingsLinux32DebugSharedLibrary - Assembles shared library 'encodings:linux32:debug:sharedLibrary'.
+EncodingsLinux32DebugStaticLibrary - Assembles static library 'encodings:linux32:debug:staticLibrary'.
+EncodingsLinux32ReleaseSharedLibrary - Assembles shared library 'encodings:linux32:release:sharedLibrary'.
+EncodingsLinux32ReleaseStaticLibrary - Assembles static library 'encodings:linux32:release:staticLibrary'.
+EncodingsLinux64DebugSharedLibrary - Assembles shared library 'encodings:linux64:debug:sharedLibrary'.
+EncodingsLinux64DebugStaticLibrary - Assembles static library 'encodings:linux64:debug:staticLibrary'.
+EncodingsLinux64ReleaseSharedLibrary - Assembles shared library 'encodings:linux64:release:sharedLibrary'.
+EncodingsLinux64ReleaseStaticLibrary - Assembles static library 'encodings:linux64:release:staticLibrary'.
+EncodingsMacosDebugSharedLibrary - Assembles shared library 'encodings:macos:debug:sharedLibrary'.
+EncodingsMacosDebugStaticLibrary - Assembles static library 'encodings:macos:debug:staticLibrary'.
+EncodingsMacosReleaseSharedLibrary - Assembles shared library 'encodings:macos:release:sharedLibrary'.
+EncodingsMacosReleaseStaticLibrary - Assembles static library 'encodings:macos:release:staticLibrary'.
+EncodingsTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'encodingsTestSuite:linux32:debug:cppUnitExe'.
+EncodingsTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'encodingsTestSuite:linux32:release:cppUnitExe'.
+EncodingsTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'encodingsTestSuite:linux64:debug:cppUnitExe'.
+EncodingsTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'encodingsTestSuite:linux64:release:cppUnitExe'.
+EncodingsTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'encodingsTestSuite:macos:debug:cppUnitExe'.
+EncodingsTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'encodingsTestSuite:macos:release:cppUnitExe'.
+EncodingsTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'encodingsTestSuite:win32:debug:cppUnitExe'.
+EncodingsTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'encodingsTestSuite:win32:release:cppUnitExe'.
+EncodingsTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'encodingsTestSuite:win64:debug:cppUnitExe'.
+EncodingsTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'encodingsTestSuite:win64:release:cppUnitExe'.
+EncodingsWin32DebugSemiStaticLibrary - Assembles semi static library 'encodings:win32:debug:semiStaticLibrary'.
+EncodingsWin32DebugSharedLibrary - Assembles shared library 'encodings:win32:debug:sharedLibrary'.
+EncodingsWin32DebugStaticLibrary - Assembles static library 'encodings:win32:debug:staticLibrary'.
+EncodingsWin32ReleaseSemiStaticLibrary - Assembles semi static library 'encodings:win32:release:semiStaticLibrary'.
+EncodingsWin32ReleaseSharedLibrary - Assembles shared library 'encodings:win32:release:sharedLibrary'.
+EncodingsWin32ReleaseStaticLibrary - Assembles static library 'encodings:win32:release:staticLibrary'.
+EncodingsWin64DebugSemiStaticLibrary - Assembles semi static library 'encodings:win64:debug:semiStaticLibrary'.
+EncodingsWin64DebugSharedLibrary - Assembles shared library 'encodings:win64:debug:sharedLibrary'.
+EncodingsWin64DebugStaticLibrary - Assembles static library 'encodings:win64:debug:staticLibrary'.
+EncodingsWin64ReleaseSemiStaticLibrary - Assembles semi static library 'encodings:win64:release:semiStaticLibrary'.
+EncodingsWin64ReleaseSharedLibrary - Assembles shared library 'encodings:win64:release:sharedLibrary'.
+EncodingsWin64ReleaseStaticLibrary - Assembles static library 'encodings:win64:release:staticLibrary'.
+File2pageLinux32DebugExecutable - Assembles executable 'file2page:linux32:debug:executable'.
+File2pageLinux32ReleaseExecutable - Assembles executable 'file2page:linux32:release:executable'.
+File2pageLinux64DebugExecutable - Assembles executable 'file2page:linux64:debug:executable'.
+File2pageLinux64ReleaseExecutable - Assembles executable 'file2page:linux64:release:executable'.
+File2pageMacosDebugExecutable - Assembles executable 'file2page:macos:debug:executable'.
+File2pageMacosReleaseExecutable - Assembles executable 'file2page:macos:release:executable'.
+File2pageWin32DebugExecutable - Assembles executable 'file2page:win32:debug:executable'.
+File2pageWin32ReleaseExecutable - Assembles executable 'file2page:win32:release:executable'.
+File2pageWin64DebugExecutable - Assembles executable 'file2page:win64:debug:executable'.
+File2pageWin64ReleaseExecutable - Assembles executable 'file2page:win64:release:executable'.
+FoundationLinux32DebugSharedLibrary - Assembles shared library 'foundation:linux32:debug:sharedLibrary'.
+FoundationLinux32DebugStaticLibrary - Assembles static library 'foundation:linux32:debug:staticLibrary'.
+FoundationLinux32ReleaseSharedLibrary - Assembles shared library 'foundation:linux32:release:sharedLibrary'.
+FoundationLinux32ReleaseStaticLibrary - Assembles static library 'foundation:linux32:release:staticLibrary'.
+FoundationLinux64DebugSharedLibrary - Assembles shared library 'foundation:linux64:debug:sharedLibrary'.
+FoundationLinux64DebugStaticLibrary - Assembles static library 'foundation:linux64:debug:staticLibrary'.
+FoundationLinux64ReleaseSharedLibrary - Assembles shared library 'foundation:linux64:release:sharedLibrary'.
+FoundationLinux64ReleaseStaticLibrary - Assembles static library 'foundation:linux64:release:staticLibrary'.
+FoundationMacosDebugSharedLibrary - Assembles shared library 'foundation:macos:debug:sharedLibrary'.
+FoundationMacosDebugStaticLibrary - Assembles static library 'foundation:macos:debug:staticLibrary'.
+FoundationMacosReleaseSharedLibrary - Assembles shared library 'foundation:macos:release:sharedLibrary'.
+FoundationMacosReleaseStaticLibrary - Assembles static library 'foundation:macos:release:staticLibrary'.
+FoundationTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'foundationTestSuite:linux32:debug:cppUnitExe'.
+FoundationTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'foundationTestSuite:linux32:release:cppUnitExe'.
+FoundationTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'foundationTestSuite:linux64:debug:cppUnitExe'.
+FoundationTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'foundationTestSuite:linux64:release:cppUnitExe'.
+FoundationTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'foundationTestSuite:macos:debug:cppUnitExe'.
+FoundationTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'foundationTestSuite:macos:release:cppUnitExe'.
+FoundationTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'foundationTestSuite:win32:debug:cppUnitExe'.
+FoundationTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'foundationTestSuite:win32:release:cppUnitExe'.
+FoundationTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'foundationTestSuite:win64:debug:cppUnitExe'.
+FoundationTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'foundationTestSuite:win64:release:cppUnitExe'.
+FoundationWin32DebugSemiStaticLibrary - Assembles semi static library 'foundation:win32:debug:semiStaticLibrary'.
+FoundationWin32DebugSharedLibrary - Assembles shared library 'foundation:win32:debug:sharedLibrary'.
+FoundationWin32DebugStaticLibrary - Assembles static library 'foundation:win32:debug:staticLibrary'.
+FoundationWin32ReleaseSemiStaticLibrary - Assembles semi static library 'foundation:win32:release:semiStaticLibrary'.
+FoundationWin32ReleaseSharedLibrary - Assembles shared library 'foundation:win32:release:sharedLibrary'.
+FoundationWin32ReleaseStaticLibrary - Assembles static library 'foundation:win32:release:staticLibrary'.
+FoundationWin64DebugSemiStaticLibrary - Assembles semi static library 'foundation:win64:debug:semiStaticLibrary'.
+FoundationWin64DebugSharedLibrary - Assembles shared library 'foundation:win64:debug:sharedLibrary'.
+FoundationWin64DebugStaticLibrary - Assembles static library 'foundation:win64:debug:staticLibrary'.
+FoundationWin64ReleaseSemiStaticLibrary - Assembles semi static library 'foundation:win64:release:semiStaticLibrary'.
+FoundationWin64ReleaseSharedLibrary - Assembles shared library 'foundation:win64:release:sharedLibrary'.
+FoundationWin64ReleaseStaticLibrary - Assembles static library 'foundation:win64:release:staticLibrary'.
+grepLinux32DebugExecutable - Assembles executable 'grep:linux32:debug:executable'.
+grepLinux32ReleaseExecutable - Assembles executable 'grep:linux32:release:executable'.
+grepLinux64DebugExecutable - Assembles executable 'grep:linux64:debug:executable'.
+grepLinux64ReleaseExecutable - Assembles executable 'grep:linux64:release:executable'.
+grepMacosDebugExecutable - Assembles executable 'grep:macos:debug:executable'.
+grepMacosReleaseExecutable - Assembles executable 'grep:macos:release:executable'.
+grepWin32DebugExecutable - Assembles executable 'grep:win32:debug:executable'.
+grepWin32ReleaseExecutable - Assembles executable 'grep:win32:release:executable'.
+grepWin64DebugExecutable - Assembles executable 'grep:win64:debug:executable'.
+grepWin64ReleaseExecutable - Assembles executable 'grep:win64:release:executable'.
+hmacmd5Linux32DebugExecutable - Assembles executable 'hmacmd5:linux32:debug:executable'.
+hmacmd5Linux32ReleaseExecutable - Assembles executable 'hmacmd5:linux32:release:executable'.
+hmacmd5Linux64DebugExecutable - Assembles executable 'hmacmd5:linux64:debug:executable'.
+hmacmd5Linux64ReleaseExecutable - Assembles executable 'hmacmd5:linux64:release:executable'.
+hmacmd5MacosDebugExecutable - Assembles executable 'hmacmd5:macos:debug:executable'.
+hmacmd5MacosReleaseExecutable - Assembles executable 'hmacmd5:macos:release:executable'.
+hmacmd5Win32DebugExecutable - Assembles executable 'hmacmd5:win32:debug:executable'.
+hmacmd5Win32ReleaseExecutable - Assembles executable 'hmacmd5:win32:release:executable'.
+hmacmd5Win64DebugExecutable - Assembles executable 'hmacmd5:win64:debug:executable'.
+hmacmd5Win64ReleaseExecutable - Assembles executable 'hmacmd5:win64:release:executable'.
+HTTPFormServerLinux32DebugExecutable - Assembles executable 'hTTPFormServer:linux32:debug:executable'.
+HTTPFormServerLinux32ReleaseExecutable - Assembles executable 'hTTPFormServer:linux32:release:executable'.
+HTTPFormServerLinux64DebugExecutable - Assembles executable 'hTTPFormServer:linux64:debug:executable'.
+HTTPFormServerLinux64ReleaseExecutable - Assembles executable 'hTTPFormServer:linux64:release:executable'.
+HTTPFormServerMacosDebugExecutable - Assembles executable 'hTTPFormServer:macos:debug:executable'.
+HTTPFormServerMacosReleaseExecutable - Assembles executable 'hTTPFormServer:macos:release:executable'.
+HTTPFormServerWin32DebugExecutable - Assembles executable 'hTTPFormServer:win32:debug:executable'.
+HTTPFormServerWin32ReleaseExecutable - Assembles executable 'hTTPFormServer:win32:release:executable'.
+HTTPFormServerWin64DebugExecutable - Assembles executable 'hTTPFormServer:win64:debug:executable'.
+HTTPFormServerWin64ReleaseExecutable - Assembles executable 'hTTPFormServer:win64:release:executable'.
+httpgetLinux32DebugExecutable - Assembles executable 'httpget:linux32:debug:executable'.
+httpgetLinux32ReleaseExecutable - Assembles executable 'httpget:linux32:release:executable'.
+httpgetLinux64DebugExecutable - Assembles executable 'httpget:linux64:debug:executable'.
+httpgetLinux64ReleaseExecutable - Assembles executable 'httpget:linux64:release:executable'.
+httpgetMacosDebugExecutable - Assembles executable 'httpget:macos:debug:executable'.
+httpgetMacosReleaseExecutable - Assembles executable 'httpget:macos:release:executable'.
+httpgetWin32DebugExecutable - Assembles executable 'httpget:win32:debug:executable'.
+httpgetWin32ReleaseExecutable - Assembles executable 'httpget:win32:release:executable'.
+httpgetWin64DebugExecutable - Assembles executable 'httpget:win64:debug:executable'.
+httpgetWin64ReleaseExecutable - Assembles executable 'httpget:win64:release:executable'.
+HTTPLoadTestLinux32DebugExecutable - Assembles executable 'hTTPLoadTest:linux32:debug:executable'.
+HTTPLoadTestLinux32ReleaseExecutable - Assembles executable 'hTTPLoadTest:linux32:release:executable'.
+HTTPLoadTestLinux64DebugExecutable - Assembles executable 'hTTPLoadTest:linux64:debug:executable'.
+HTTPLoadTestLinux64ReleaseExecutable - Assembles executable 'hTTPLoadTest:linux64:release:executable'.
+HTTPLoadTestMacosDebugExecutable - Assembles executable 'hTTPLoadTest:macos:debug:executable'.
+HTTPLoadTestMacosReleaseExecutable - Assembles executable 'hTTPLoadTest:macos:release:executable'.
+HTTPLoadTestWin32DebugExecutable - Assembles executable 'hTTPLoadTest:win32:debug:executable'.
+HTTPLoadTestWin32ReleaseExecutable - Assembles executable 'hTTPLoadTest:win32:release:executable'.
+HTTPLoadTestWin64DebugExecutable - Assembles executable 'hTTPLoadTest:win64:debug:executable'.
+HTTPLoadTestWin64ReleaseExecutable - Assembles executable 'hTTPLoadTest:win64:release:executable'.
+HTTPSTimeServerLinux32DebugExecutable - Assembles executable 'hTTPSTimeServer:linux32:debug:executable'.
+HTTPSTimeServerLinux32ReleaseExecutable - Assembles executable 'hTTPSTimeServer:linux32:release:executable'.
+HTTPSTimeServerLinux64DebugExecutable - Assembles executable 'hTTPSTimeServer:linux64:debug:executable'.
+HTTPSTimeServerLinux64ReleaseExecutable - Assembles executable 'hTTPSTimeServer:linux64:release:executable'.
+HTTPSTimeServerMacosDebugExecutable - Assembles executable 'hTTPSTimeServer:macos:debug:executable'.
+HTTPSTimeServerMacosReleaseExecutable - Assembles executable 'hTTPSTimeServer:macos:release:executable'.
+HTTPSTimeServerWin32DebugExecutable - Assembles executable 'hTTPSTimeServer:win32:debug:executable'.
+HTTPSTimeServerWin32ReleaseExecutable - Assembles executable 'hTTPSTimeServer:win32:release:executable'.
+HTTPSTimeServerWin64DebugExecutable - Assembles executable 'hTTPSTimeServer:win64:debug:executable'.
+HTTPSTimeServerWin64ReleaseExecutable - Assembles executable 'hTTPSTimeServer:win64:release:executable'.
+HTTPTimeServerLinux32DebugExecutable - Assembles executable 'hTTPTimeServer:linux32:debug:executable'.
+HTTPTimeServerLinux32ReleaseExecutable - Assembles executable 'hTTPTimeServer:linux32:release:executable'.
+HTTPTimeServerLinux64DebugExecutable - Assembles executable 'hTTPTimeServer:linux64:debug:executable'.
+HTTPTimeServerLinux64ReleaseExecutable - Assembles executable 'hTTPTimeServer:linux64:release:executable'.
+HTTPTimeServerMacosDebugExecutable - Assembles executable 'hTTPTimeServer:macos:debug:executable'.
+HTTPTimeServerMacosReleaseExecutable - Assembles executable 'hTTPTimeServer:macos:release:executable'.
+HTTPTimeServerWin32DebugExecutable - Assembles executable 'hTTPTimeServer:win32:debug:executable'.
+HTTPTimeServerWin32ReleaseExecutable - Assembles executable 'hTTPTimeServer:win32:release:executable'.
+HTTPTimeServerWin64DebugExecutable - Assembles executable 'hTTPTimeServer:win64:debug:executable'.
+HTTPTimeServerWin64ReleaseExecutable - Assembles executable 'hTTPTimeServer:win64:release:executable'.
+ifconfigLinux32DebugExecutable - Assembles executable 'ifconfig:linux32:debug:executable'.
+ifconfigLinux32ReleaseExecutable - Assembles executable 'ifconfig:linux32:release:executable'.
+ifconfigLinux64DebugExecutable - Assembles executable 'ifconfig:linux64:debug:executable'.
+ifconfigLinux64ReleaseExecutable - Assembles executable 'ifconfig:linux64:release:executable'.
+ifconfigMacosDebugExecutable - Assembles executable 'ifconfig:macos:debug:executable'.
+ifconfigMacosReleaseExecutable - Assembles executable 'ifconfig:macos:release:executable'.
+ifconfigWin32DebugExecutable - Assembles executable 'ifconfig:win32:debug:executable'.
+ifconfigWin32ReleaseExecutable - Assembles executable 'ifconfig:win32:release:executable'.
+ifconfigWin64DebugExecutable - Assembles executable 'ifconfig:win64:debug:executable'.
+ifconfigWin64ReleaseExecutable - Assembles executable 'ifconfig:win64:release:executable'.
+ImageLinux32DebugExecutable - Assembles executable 'image:linux32:debug:executable'.
+ImageLinux32ReleaseExecutable - Assembles executable 'image:linux32:release:executable'.
+ImageLinux64DebugExecutable - Assembles executable 'image:linux64:debug:executable'.
+ImageLinux64ReleaseExecutable - Assembles executable 'image:linux64:release:executable'.
+ImageMacosDebugExecutable - Assembles executable 'image:macos:debug:executable'.
+ImageMacosReleaseExecutable - Assembles executable 'image:macos:release:executable'.
+ImageWin32DebugExecutable - Assembles executable 'image:win32:debug:executable'.
+ImageWin32ReleaseExecutable - Assembles executable 'image:win32:release:executable'.
+ImageWin64DebugExecutable - Assembles executable 'image:win64:debug:executable'.
+ImageWin64ReleaseExecutable - Assembles executable 'image:win64:release:executable'.
+inflateLinux32DebugExecutable - Assembles executable 'inflate:linux32:debug:executable'.
+inflateLinux32ReleaseExecutable - Assembles executable 'inflate:linux32:release:executable'.
+inflateLinux64DebugExecutable - Assembles executable 'inflate:linux64:debug:executable'.
+inflateLinux64ReleaseExecutable - Assembles executable 'inflate:linux64:release:executable'.
+inflateMacosDebugExecutable - Assembles executable 'inflate:macos:debug:executable'.
+inflateMacosReleaseExecutable - Assembles executable 'inflate:macos:release:executable'.
+inflateWin32DebugExecutable - Assembles executable 'inflate:win32:debug:executable'.
+inflateWin32ReleaseExecutable - Assembles executable 'inflate:win32:release:executable'.
+inflateWin64DebugExecutable - Assembles executable 'inflate:win64:debug:executable'.
+inflateWin64ReleaseExecutable - Assembles executable 'inflate:win64:release:executable'.
+installActiveMethodLinux32DebugExecutable - Installs a development image of executable 'activeMethod:linux32:debug:executable'
+installActiveMethodLinux32ReleaseExecutable - Installs a development image of executable 'activeMethod:linux32:release:executable'
+installActiveMethodLinux64DebugExecutable - Installs a development image of executable 'activeMethod:linux64:debug:executable'
+installActiveMethodLinux64ReleaseExecutable - Installs a development image of executable 'activeMethod:linux64:release:executable'
+installActiveMethodMacosDebugExecutable - Installs a development image of executable 'activeMethod:macos:debug:executable'
+installActiveMethodMacosReleaseExecutable - Installs a development image of executable 'activeMethod:macos:release:executable'
+installActiveMethodWin32DebugExecutable - Installs a development image of executable 'activeMethod:win32:debug:executable'
+installActiveMethodWin32ReleaseExecutable - Installs a development image of executable 'activeMethod:win32:release:executable'
+installActiveMethodWin64DebugExecutable - Installs a development image of executable 'activeMethod:win64:debug:executable'
+installActiveMethodWin64ReleaseExecutable - Installs a development image of executable 'activeMethod:win64:release:executable'
+installActivityLinux32DebugExecutable - Installs a development image of executable 'activity:linux32:debug:executable'
+installActivityLinux32ReleaseExecutable - Installs a development image of executable 'activity:linux32:release:executable'
+installActivityLinux64DebugExecutable - Installs a development image of executable 'activity:linux64:debug:executable'
+installActivityLinux64ReleaseExecutable - Installs a development image of executable 'activity:linux64:release:executable'
+installActivityMacosDebugExecutable - Installs a development image of executable 'activity:macos:debug:executable'
+installActivityMacosReleaseExecutable - Installs a development image of executable 'activity:macos:release:executable'
+installActivityWin32DebugExecutable - Installs a development image of executable 'activity:win32:debug:executable'
+installActivityWin32ReleaseExecutable - Installs a development image of executable 'activity:win32:release:executable'
+installActivityWin64DebugExecutable - Installs a development image of executable 'activity:win64:debug:executable'
+installActivityWin64ReleaseExecutable - Installs a development image of executable 'activity:win64:release:executable'
+installBase64decodeLinux32DebugExecutable - Installs a development image of executable 'base64decode:linux32:debug:executable'
+installBase64decodeLinux32ReleaseExecutable - Installs a development image of executable 'base64decode:linux32:release:executable'
+installBase64decodeLinux64DebugExecutable - Installs a development image of executable 'base64decode:linux64:debug:executable'
+installBase64decodeLinux64ReleaseExecutable - Installs a development image of executable 'base64decode:linux64:release:executable'
+installBase64decodeMacosDebugExecutable - Installs a development image of executable 'base64decode:macos:debug:executable'
+installBase64decodeMacosReleaseExecutable - Installs a development image of executable 'base64decode:macos:release:executable'
+installBase64decodeWin32DebugExecutable - Installs a development image of executable 'base64decode:win32:debug:executable'
+installBase64decodeWin32ReleaseExecutable - Installs a development image of executable 'base64decode:win32:release:executable'
+installBase64decodeWin64DebugExecutable - Installs a development image of executable 'base64decode:win64:debug:executable'
+installBase64decodeWin64ReleaseExecutable - Installs a development image of executable 'base64decode:win64:release:executable'
+installBase64encodeLinux32DebugExecutable - Installs a development image of executable 'base64encode:linux32:debug:executable'
+installBase64encodeLinux32ReleaseExecutable - Installs a development image of executable 'base64encode:linux32:release:executable'
+installBase64encodeLinux64DebugExecutable - Installs a development image of executable 'base64encode:linux64:debug:executable'
+installBase64encodeLinux64ReleaseExecutable - Installs a development image of executable 'base64encode:linux64:release:executable'
+installBase64encodeMacosDebugExecutable - Installs a development image of executable 'base64encode:macos:debug:executable'
+installBase64encodeMacosReleaseExecutable - Installs a development image of executable 'base64encode:macos:release:executable'
+installBase64encodeWin32DebugExecutable - Installs a development image of executable 'base64encode:win32:debug:executable'
+installBase64encodeWin32ReleaseExecutable - Installs a development image of executable 'base64encode:win32:release:executable'
+installBase64encodeWin64DebugExecutable - Installs a development image of executable 'base64encode:win64:debug:executable'
+installBase64encodeWin64ReleaseExecutable - Installs a development image of executable 'base64encode:win64:release:executable'
+installBenchmarkLinux32DebugExecutable - Installs a development image of executable 'benchmark:linux32:debug:executable'
+installBenchmarkLinux32ReleaseExecutable - Installs a development image of executable 'benchmark:linux32:release:executable'
+installBenchmarkLinux64DebugExecutable - Installs a development image of executable 'benchmark:linux64:debug:executable'
+installBenchmarkLinux64ReleaseExecutable - Installs a development image of executable 'benchmark:linux64:release:executable'
+installBenchmarkMacosDebugExecutable - Installs a development image of executable 'benchmark:macos:debug:executable'
+installBenchmarkMacosReleaseExecutable - Installs a development image of executable 'benchmark:macos:release:executable'
+installBenchmarkWin32DebugExecutable - Installs a development image of executable 'benchmark:win32:debug:executable'
+installBenchmarkWin32ReleaseExecutable - Installs a development image of executable 'benchmark:win32:release:executable'
+installBenchmarkWin64DebugExecutable - Installs a development image of executable 'benchmark:win64:debug:executable'
+installBenchmarkWin64ReleaseExecutable - Installs a development image of executable 'benchmark:win64:release:executable'
+installBinaryReaderWriterLinux32DebugExecutable - Installs a development image of executable 'binaryReaderWriter:linux32:debug:executable'
+installBinaryReaderWriterLinux32ReleaseExecutable - Installs a development image of executable 'binaryReaderWriter:linux32:release:executable'
+installBinaryReaderWriterLinux64DebugExecutable - Installs a development image of executable 'binaryReaderWriter:linux64:debug:executable'
+installBinaryReaderWriterLinux64ReleaseExecutable - Installs a development image of executable 'binaryReaderWriter:linux64:release:executable'
+installBinaryReaderWriterMacosDebugExecutable - Installs a development image of executable 'binaryReaderWriter:macos:debug:executable'
+installBinaryReaderWriterMacosReleaseExecutable - Installs a development image of executable 'binaryReaderWriter:macos:release:executable'
+installBinaryReaderWriterWin32DebugExecutable - Installs a development image of executable 'binaryReaderWriter:win32:debug:executable'
+installBinaryReaderWriterWin32ReleaseExecutable - Installs a development image of executable 'binaryReaderWriter:win32:release:executable'
+installBinaryReaderWriterWin64DebugExecutable - Installs a development image of executable 'binaryReaderWriter:win64:debug:executable'
+installBinaryReaderWriterWin64ReleaseExecutable - Installs a development image of executable 'binaryReaderWriter:win64:release:executable'
+installBindingLinux32DebugExecutable - Installs a development image of executable 'binding:linux32:debug:executable'
+installBindingLinux32ReleaseExecutable - Installs a development image of executable 'binding:linux32:release:executable'
+installBindingLinux64DebugExecutable - Installs a development image of executable 'binding:linux64:debug:executable'
+installBindingLinux64ReleaseExecutable - Installs a development image of executable 'binding:linux64:release:executable'
+installBindingMacosDebugExecutable - Installs a development image of executable 'binding:macos:debug:executable'
+installBindingMacosReleaseExecutable - Installs a development image of executable 'binding:macos:release:executable'
+installBindingWin32DebugExecutable - Installs a development image of executable 'binding:win32:debug:executable'
+installBindingWin32ReleaseExecutable - Installs a development image of executable 'binding:win32:release:executable'
+installBindingWin64DebugExecutable - Installs a development image of executable 'binding:win64:debug:executable'
+installBindingWin64ReleaseExecutable - Installs a development image of executable 'binding:win64:release:executable'
+installCppParserTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'cppParserTestSuite:linux32:debug:cppUnitExe'
+installCppParserTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'cppParserTestSuite:linux32:release:cppUnitExe'
+installCppParserTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'cppParserTestSuite:linux64:debug:cppUnitExe'
+installCppParserTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'cppParserTestSuite:linux64:release:cppUnitExe'
+installCppParserTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'cppParserTestSuite:macos:debug:cppUnitExe'
+installCppParserTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'cppParserTestSuite:macos:release:cppUnitExe'
+installCppParserTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'cppParserTestSuite:win32:debug:cppUnitExe'
+installCppParserTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'cppParserTestSuite:win32:release:cppUnitExe'
+installCppParserTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'cppParserTestSuite:win64:debug:cppUnitExe'
+installCppParserTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'cppParserTestSuite:win64:release:cppUnitExe'
+installCpspcLinux32DebugExecutable - Installs a development image of executable 'cpspc:linux32:debug:executable'
+installCpspcLinux32ReleaseExecutable - Installs a development image of executable 'cpspc:linux32:release:executable'
+installCpspcLinux64DebugExecutable - Installs a development image of executable 'cpspc:linux64:debug:executable'
+installCpspcLinux64ReleaseExecutable - Installs a development image of executable 'cpspc:linux64:release:executable'
+installCpspcMacosDebugExecutable - Installs a development image of executable 'cpspc:macos:debug:executable'
+installCpspcMacosReleaseExecutable - Installs a development image of executable 'cpspc:macos:release:executable'
+installCpspcWin32DebugExecutable - Installs a development image of executable 'cpspc:win32:debug:executable'
+installCpspcWin32ReleaseExecutable - Installs a development image of executable 'cpspc:win32:release:executable'
+installCpspcWin64DebugExecutable - Installs a development image of executable 'cpspc:win64:debug:executable'
+installCpspcWin64ReleaseExecutable - Installs a development image of executable 'cpspc:win64:release:executable'
+installCryptoTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'cryptoTestSuite:linux32:debug:cppUnitExe'
+installCryptoTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'cryptoTestSuite:linux32:release:cppUnitExe'
+installCryptoTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'cryptoTestSuite:linux64:debug:cppUnitExe'
+installCryptoTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'cryptoTestSuite:linux64:release:cppUnitExe'
+installCryptoTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'cryptoTestSuite:macos:debug:cppUnitExe'
+installCryptoTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'cryptoTestSuite:macos:release:cppUnitExe'
+installCryptoTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'cryptoTestSuite:win32:debug:cppUnitExe'
+installCryptoTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'cryptoTestSuite:win32:release:cppUnitExe'
+installCryptoTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'cryptoTestSuite:win64:debug:cppUnitExe'
+installCryptoTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'cryptoTestSuite:win64:release:cppUnitExe'
+installDataLinux32DebugExecutable - Installs a development image of executable 'data:linux32:debug:executable'
+installDataLinux32ReleaseExecutable - Installs a development image of executable 'data:linux32:release:executable'
+installDataLinux64DebugExecutable - Installs a development image of executable 'data:linux64:debug:executable'
+installDataLinux64ReleaseExecutable - Installs a development image of executable 'data:linux64:release:executable'
+installDataMacosDebugExecutable - Installs a development image of executable 'data:macos:debug:executable'
+installDataMacosReleaseExecutable - Installs a development image of executable 'data:macos:release:executable'
+installDataTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'dataTestSuite:linux32:debug:cppUnitExe'
+installDataTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'dataTestSuite:linux32:release:cppUnitExe'
+installDataTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'dataTestSuite:linux64:debug:cppUnitExe'
+installDataTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'dataTestSuite:linux64:release:cppUnitExe'
+installDataTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'dataTestSuite:macos:debug:cppUnitExe'
+installDataTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'dataTestSuite:macos:release:cppUnitExe'
+installDataTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'dataTestSuite:win32:debug:cppUnitExe'
+installDataTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'dataTestSuite:win32:release:cppUnitExe'
+installDataTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'dataTestSuite:win64:debug:cppUnitExe'
+installDataTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'dataTestSuite:win64:release:cppUnitExe'
+installDataWin32DebugExecutable - Installs a development image of executable 'data:win32:debug:executable'
+installDataWin32ReleaseExecutable - Installs a development image of executable 'data:win32:release:executable'
+installDataWin64DebugExecutable - Installs a development image of executable 'data:win64:debug:executable'
+installDataWin64ReleaseExecutable - Installs a development image of executable 'data:win64:release:executable'
+installDateTimeLinux32DebugExecutable - Installs a development image of executable 'dateTime:linux32:debug:executable'
+installDateTimeLinux32ReleaseExecutable - Installs a development image of executable 'dateTime:linux32:release:executable'
+installDateTimeLinux64DebugExecutable - Installs a development image of executable 'dateTime:linux64:debug:executable'
+installDateTimeLinux64ReleaseExecutable - Installs a development image of executable 'dateTime:linux64:release:executable'
+installDateTimeMacosDebugExecutable - Installs a development image of executable 'dateTime:macos:debug:executable'
+installDateTimeMacosReleaseExecutable - Installs a development image of executable 'dateTime:macos:release:executable'
+installDateTimeWin32DebugExecutable - Installs a development image of executable 'dateTime:win32:debug:executable'
+installDateTimeWin32ReleaseExecutable - Installs a development image of executable 'dateTime:win32:release:executable'
+installDateTimeWin64DebugExecutable - Installs a development image of executable 'dateTime:win64:debug:executable'
+installDateTimeWin64ReleaseExecutable - Installs a development image of executable 'dateTime:win64:release:executable'
+installDeflateLinux32DebugExecutable - Installs a development image of executable 'deflate:linux32:debug:executable'
+installDeflateLinux32ReleaseExecutable - Installs a development image of executable 'deflate:linux32:release:executable'
+installDeflateLinux64DebugExecutable - Installs a development image of executable 'deflate:linux64:debug:executable'
+installDeflateLinux64ReleaseExecutable - Installs a development image of executable 'deflate:linux64:release:executable'
+installDeflateMacosDebugExecutable - Installs a development image of executable 'deflate:macos:debug:executable'
+installDeflateMacosReleaseExecutable - Installs a development image of executable 'deflate:macos:release:executable'
+installDeflateWin32DebugExecutable - Installs a development image of executable 'deflate:win32:debug:executable'
+installDeflateWin32ReleaseExecutable - Installs a development image of executable 'deflate:win32:release:executable'
+installDeflateWin64DebugExecutable - Installs a development image of executable 'deflate:win64:debug:executable'
+installDeflateWin64ReleaseExecutable - Installs a development image of executable 'deflate:win64:release:executable'
+installDictLinux32DebugExecutable - Installs a development image of executable 'dict:linux32:debug:executable'
+installDictLinux32ReleaseExecutable - Installs a development image of executable 'dict:linux32:release:executable'
+installDictLinux64DebugExecutable - Installs a development image of executable 'dict:linux64:debug:executable'
+installDictLinux64ReleaseExecutable - Installs a development image of executable 'dict:linux64:release:executable'
+installDictMacosDebugExecutable - Installs a development image of executable 'dict:macos:debug:executable'
+installDictMacosReleaseExecutable - Installs a development image of executable 'dict:macos:release:executable'
+installDictWin32DebugExecutable - Installs a development image of executable 'dict:win32:debug:executable'
+installDictWin32ReleaseExecutable - Installs a development image of executable 'dict:win32:release:executable'
+installDictWin64DebugExecutable - Installs a development image of executable 'dict:win64:debug:executable'
+installDictWin64ReleaseExecutable - Installs a development image of executable 'dict:win64:release:executable'
+installDirLinux32DebugExecutable - Installs a development image of executable 'dir:linux32:debug:executable'
+installDirLinux32ReleaseExecutable - Installs a development image of executable 'dir:linux32:release:executable'
+installDirLinux64DebugExecutable - Installs a development image of executable 'dir:linux64:debug:executable'
+installDirLinux64ReleaseExecutable - Installs a development image of executable 'dir:linux64:release:executable'
+installDirMacosDebugExecutable - Installs a development image of executable 'dir:macos:debug:executable'
+installDirMacosReleaseExecutable - Installs a development image of executable 'dir:macos:release:executable'
+installDirWin32DebugExecutable - Installs a development image of executable 'dir:win32:debug:executable'
+installDirWin32ReleaseExecutable - Installs a development image of executable 'dir:win32:release:executable'
+installDirWin64DebugExecutable - Installs a development image of executable 'dir:win64:debug:executable'
+installDirWin64ReleaseExecutable - Installs a development image of executable 'dir:win64:release:executable'
+installDOMParserLinux32DebugExecutable - Installs a development image of executable 'dOMParser:linux32:debug:executable'
+installDOMParserLinux32ReleaseExecutable - Installs a development image of executable 'dOMParser:linux32:release:executable'
+installDOMParserLinux64DebugExecutable - Installs a development image of executable 'dOMParser:linux64:debug:executable'
+installDOMParserLinux64ReleaseExecutable - Installs a development image of executable 'dOMParser:linux64:release:executable'
+installDOMParserMacosDebugExecutable - Installs a development image of executable 'dOMParser:macos:debug:executable'
+installDOMParserMacosReleaseExecutable - Installs a development image of executable 'dOMParser:macos:release:executable'
+installDOMParserWin32DebugExecutable - Installs a development image of executable 'dOMParser:win32:debug:executable'
+installDOMParserWin32ReleaseExecutable - Installs a development image of executable 'dOMParser:win32:release:executable'
+installDOMParserWin64DebugExecutable - Installs a development image of executable 'dOMParser:win64:debug:executable'
+installDOMParserWin64ReleaseExecutable - Installs a development image of executable 'dOMParser:win64:release:executable'
+installDOMWriterLinux32DebugExecutable - Installs a development image of executable 'dOMWriter:linux32:debug:executable'
+installDOMWriterLinux32ReleaseExecutable - Installs a development image of executable 'dOMWriter:linux32:release:executable'
+installDOMWriterLinux64DebugExecutable - Installs a development image of executable 'dOMWriter:linux64:debug:executable'
+installDOMWriterLinux64ReleaseExecutable - Installs a development image of executable 'dOMWriter:linux64:release:executable'
+installDOMWriterMacosDebugExecutable - Installs a development image of executable 'dOMWriter:macos:debug:executable'
+installDOMWriterMacosReleaseExecutable - Installs a development image of executable 'dOMWriter:macos:release:executable'
+installDOMWriterWin32DebugExecutable - Installs a development image of executable 'dOMWriter:win32:debug:executable'
+installDOMWriterWin32ReleaseExecutable - Installs a development image of executable 'dOMWriter:win32:release:executable'
+installDOMWriterWin64DebugExecutable - Installs a development image of executable 'dOMWriter:win64:debug:executable'
+installDOMWriterWin64ReleaseExecutable - Installs a development image of executable 'dOMWriter:win64:release:executable'
+installDownloadLinux32DebugExecutable - Installs a development image of executable 'download:linux32:debug:executable'
+installDownloadLinux32ReleaseExecutable - Installs a development image of executable 'download:linux32:release:executable'
+installDownloadLinux64DebugExecutable - Installs a development image of executable 'download:linux64:debug:executable'
+installDownloadLinux64ReleaseExecutable - Installs a development image of executable 'download:linux64:release:executable'
+installDownloadMacosDebugExecutable - Installs a development image of executable 'download:macos:debug:executable'
+installDownloadMacosReleaseExecutable - Installs a development image of executable 'download:macos:release:executable'
+installDownloadWin32DebugExecutable - Installs a development image of executable 'download:win32:debug:executable'
+installDownloadWin32ReleaseExecutable - Installs a development image of executable 'download:win32:release:executable'
+installDownloadWin64DebugExecutable - Installs a development image of executable 'download:win64:debug:executable'
+installDownloadWin64ReleaseExecutable - Installs a development image of executable 'download:win64:release:executable'
+installEchoServerLinux32DebugExecutable - Installs a development image of executable 'echoServer:linux32:debug:executable'
+installEchoServerLinux32ReleaseExecutable - Installs a development image of executable 'echoServer:linux32:release:executable'
+installEchoServerLinux64DebugExecutable - Installs a development image of executable 'echoServer:linux64:debug:executable'
+installEchoServerLinux64ReleaseExecutable - Installs a development image of executable 'echoServer:linux64:release:executable'
+installEchoServerMacosDebugExecutable - Installs a development image of executable 'echoServer:macos:debug:executable'
+installEchoServerMacosReleaseExecutable - Installs a development image of executable 'echoServer:macos:release:executable'
+installEchoServerWin32DebugExecutable - Installs a development image of executable 'echoServer:win32:debug:executable'
+installEchoServerWin32ReleaseExecutable - Installs a development image of executable 'echoServer:win32:release:executable'
+installEchoServerWin64DebugExecutable - Installs a development image of executable 'echoServer:win64:debug:executable'
+installEchoServerWin64ReleaseExecutable - Installs a development image of executable 'echoServer:win64:release:executable'
+installEncodingsTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'encodingsTestSuite:linux32:debug:cppUnitExe'
+installEncodingsTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'encodingsTestSuite:linux32:release:cppUnitExe'
+installEncodingsTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'encodingsTestSuite:linux64:debug:cppUnitExe'
+installEncodingsTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'encodingsTestSuite:linux64:release:cppUnitExe'
+installEncodingsTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'encodingsTestSuite:macos:debug:cppUnitExe'
+installEncodingsTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'encodingsTestSuite:macos:release:cppUnitExe'
+installEncodingsTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'encodingsTestSuite:win32:debug:cppUnitExe'
+installEncodingsTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'encodingsTestSuite:win32:release:cppUnitExe'
+installEncodingsTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'encodingsTestSuite:win64:debug:cppUnitExe'
+installEncodingsTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'encodingsTestSuite:win64:release:cppUnitExe'
+installFile2pageLinux32DebugExecutable - Installs a development image of executable 'file2page:linux32:debug:executable'
+installFile2pageLinux32ReleaseExecutable - Installs a development image of executable 'file2page:linux32:release:executable'
+installFile2pageLinux64DebugExecutable - Installs a development image of executable 'file2page:linux64:debug:executable'
+installFile2pageLinux64ReleaseExecutable - Installs a development image of executable 'file2page:linux64:release:executable'
+installFile2pageMacosDebugExecutable - Installs a development image of executable 'file2page:macos:debug:executable'
+installFile2pageMacosReleaseExecutable - Installs a development image of executable 'file2page:macos:release:executable'
+installFile2pageWin32DebugExecutable - Installs a development image of executable 'file2page:win32:debug:executable'
+installFile2pageWin32ReleaseExecutable - Installs a development image of executable 'file2page:win32:release:executable'
+installFile2pageWin64DebugExecutable - Installs a development image of executable 'file2page:win64:debug:executable'
+installFile2pageWin64ReleaseExecutable - Installs a development image of executable 'file2page:win64:release:executable'
+installFoundationTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'foundationTestSuite:linux32:debug:cppUnitExe'
+installFoundationTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'foundationTestSuite:linux32:release:cppUnitExe'
+installFoundationTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'foundationTestSuite:linux64:debug:cppUnitExe'
+installFoundationTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'foundationTestSuite:linux64:release:cppUnitExe'
+installFoundationTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'foundationTestSuite:macos:debug:cppUnitExe'
+installFoundationTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'foundationTestSuite:macos:release:cppUnitExe'
+installFoundationTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'foundationTestSuite:win32:debug:cppUnitExe'
+installFoundationTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'foundationTestSuite:win32:release:cppUnitExe'
+installFoundationTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'foundationTestSuite:win64:debug:cppUnitExe'
+installFoundationTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'foundationTestSuite:win64:release:cppUnitExe'
+installGrepLinux32DebugExecutable - Installs a development image of executable 'grep:linux32:debug:executable'
+installGrepLinux32ReleaseExecutable - Installs a development image of executable 'grep:linux32:release:executable'
+installGrepLinux64DebugExecutable - Installs a development image of executable 'grep:linux64:debug:executable'
+installGrepLinux64ReleaseExecutable - Installs a development image of executable 'grep:linux64:release:executable'
+installGrepMacosDebugExecutable - Installs a development image of executable 'grep:macos:debug:executable'
+installGrepMacosReleaseExecutable - Installs a development image of executable 'grep:macos:release:executable'
+installGrepWin32DebugExecutable - Installs a development image of executable 'grep:win32:debug:executable'
+installGrepWin32ReleaseExecutable - Installs a development image of executable 'grep:win32:release:executable'
+installGrepWin64DebugExecutable - Installs a development image of executable 'grep:win64:debug:executable'
+installGrepWin64ReleaseExecutable - Installs a development image of executable 'grep:win64:release:executable'
+installHmacmd5Linux32DebugExecutable - Installs a development image of executable 'hmacmd5:linux32:debug:executable'
+installHmacmd5Linux32ReleaseExecutable - Installs a development image of executable 'hmacmd5:linux32:release:executable'
+installHmacmd5Linux64DebugExecutable - Installs a development image of executable 'hmacmd5:linux64:debug:executable'
+installHmacmd5Linux64ReleaseExecutable - Installs a development image of executable 'hmacmd5:linux64:release:executable'
+installHmacmd5MacosDebugExecutable - Installs a development image of executable 'hmacmd5:macos:debug:executable'
+installHmacmd5MacosReleaseExecutable - Installs a development image of executable 'hmacmd5:macos:release:executable'
+installHmacmd5Win32DebugExecutable - Installs a development image of executable 'hmacmd5:win32:debug:executable'
+installHmacmd5Win32ReleaseExecutable - Installs a development image of executable 'hmacmd5:win32:release:executable'
+installHmacmd5Win64DebugExecutable - Installs a development image of executable 'hmacmd5:win64:debug:executable'
+installHmacmd5Win64ReleaseExecutable - Installs a development image of executable 'hmacmd5:win64:release:executable'
+installHTTPFormServerLinux32DebugExecutable - Installs a development image of executable 'hTTPFormServer:linux32:debug:executable'
+installHTTPFormServerLinux32ReleaseExecutable - Installs a development image of executable 'hTTPFormServer:linux32:release:executable'
+installHTTPFormServerLinux64DebugExecutable - Installs a development image of executable 'hTTPFormServer:linux64:debug:executable'
+installHTTPFormServerLinux64ReleaseExecutable - Installs a development image of executable 'hTTPFormServer:linux64:release:executable'
+installHTTPFormServerMacosDebugExecutable - Installs a development image of executable 'hTTPFormServer:macos:debug:executable'
+installHTTPFormServerMacosReleaseExecutable - Installs a development image of executable 'hTTPFormServer:macos:release:executable'
+installHTTPFormServerWin32DebugExecutable - Installs a development image of executable 'hTTPFormServer:win32:debug:executable'
+installHTTPFormServerWin32ReleaseExecutable - Installs a development image of executable 'hTTPFormServer:win32:release:executable'
+installHTTPFormServerWin64DebugExecutable - Installs a development image of executable 'hTTPFormServer:win64:debug:executable'
+installHTTPFormServerWin64ReleaseExecutable - Installs a development image of executable 'hTTPFormServer:win64:release:executable'
+installHttpgetLinux32DebugExecutable - Installs a development image of executable 'httpget:linux32:debug:executable'
+installHttpgetLinux32ReleaseExecutable - Installs a development image of executable 'httpget:linux32:release:executable'
+installHttpgetLinux64DebugExecutable - Installs a development image of executable 'httpget:linux64:debug:executable'
+installHttpgetLinux64ReleaseExecutable - Installs a development image of executable 'httpget:linux64:release:executable'
+installHttpgetMacosDebugExecutable - Installs a development image of executable 'httpget:macos:debug:executable'
+installHttpgetMacosReleaseExecutable - Installs a development image of executable 'httpget:macos:release:executable'
+installHttpgetWin32DebugExecutable - Installs a development image of executable 'httpget:win32:debug:executable'
+installHttpgetWin32ReleaseExecutable - Installs a development image of executable 'httpget:win32:release:executable'
+installHttpgetWin64DebugExecutable - Installs a development image of executable 'httpget:win64:debug:executable'
+installHttpgetWin64ReleaseExecutable - Installs a development image of executable 'httpget:win64:release:executable'
+installHTTPLoadTestLinux32DebugExecutable - Installs a development image of executable 'hTTPLoadTest:linux32:debug:executable'
+installHTTPLoadTestLinux32ReleaseExecutable - Installs a development image of executable 'hTTPLoadTest:linux32:release:executable'
+installHTTPLoadTestLinux64DebugExecutable - Installs a development image of executable 'hTTPLoadTest:linux64:debug:executable'
+installHTTPLoadTestLinux64ReleaseExecutable - Installs a development image of executable 'hTTPLoadTest:linux64:release:executable'
+installHTTPLoadTestMacosDebugExecutable - Installs a development image of executable 'hTTPLoadTest:macos:debug:executable'
+installHTTPLoadTestMacosReleaseExecutable - Installs a development image of executable 'hTTPLoadTest:macos:release:executable'
+installHTTPLoadTestWin32DebugExecutable - Installs a development image of executable 'hTTPLoadTest:win32:debug:executable'
+installHTTPLoadTestWin32ReleaseExecutable - Installs a development image of executable 'hTTPLoadTest:win32:release:executable'
+installHTTPLoadTestWin64DebugExecutable - Installs a development image of executable 'hTTPLoadTest:win64:debug:executable'
+installHTTPLoadTestWin64ReleaseExecutable - Installs a development image of executable 'hTTPLoadTest:win64:release:executable'
+installHTTPSTimeServerLinux32DebugExecutable - Installs a development image of executable 'hTTPSTimeServer:linux32:debug:executable'
+installHTTPSTimeServerLinux32ReleaseExecutable - Installs a development image of executable 'hTTPSTimeServer:linux32:release:executable'
+installHTTPSTimeServerLinux64DebugExecutable - Installs a development image of executable 'hTTPSTimeServer:linux64:debug:executable'
+installHTTPSTimeServerLinux64ReleaseExecutable - Installs a development image of executable 'hTTPSTimeServer:linux64:release:executable'
+installHTTPSTimeServerMacosDebugExecutable - Installs a development image of executable 'hTTPSTimeServer:macos:debug:executable'
+installHTTPSTimeServerMacosReleaseExecutable - Installs a development image of executable 'hTTPSTimeServer:macos:release:executable'
+installHTTPSTimeServerWin32DebugExecutable - Installs a development image of executable 'hTTPSTimeServer:win32:debug:executable'
+installHTTPSTimeServerWin32ReleaseExecutable - Installs a development image of executable 'hTTPSTimeServer:win32:release:executable'
+installHTTPSTimeServerWin64DebugExecutable - Installs a development image of executable 'hTTPSTimeServer:win64:debug:executable'
+installHTTPSTimeServerWin64ReleaseExecutable - Installs a development image of executable 'hTTPSTimeServer:win64:release:executable'
+installHTTPTimeServerLinux32DebugExecutable - Installs a development image of executable 'hTTPTimeServer:linux32:debug:executable'
+installHTTPTimeServerLinux32ReleaseExecutable - Installs a development image of executable 'hTTPTimeServer:linux32:release:executable'
+installHTTPTimeServerLinux64DebugExecutable - Installs a development image of executable 'hTTPTimeServer:linux64:debug:executable'
+installHTTPTimeServerLinux64ReleaseExecutable - Installs a development image of executable 'hTTPTimeServer:linux64:release:executable'
+installHTTPTimeServerMacosDebugExecutable - Installs a development image of executable 'hTTPTimeServer:macos:debug:executable'
+installHTTPTimeServerMacosReleaseExecutable - Installs a development image of executable 'hTTPTimeServer:macos:release:executable'
+installHTTPTimeServerWin32DebugExecutable - Installs a development image of executable 'hTTPTimeServer:win32:debug:executable'
+installHTTPTimeServerWin32ReleaseExecutable - Installs a development image of executable 'hTTPTimeServer:win32:release:executable'
+installHTTPTimeServerWin64DebugExecutable - Installs a development image of executable 'hTTPTimeServer:win64:debug:executable'
+installHTTPTimeServerWin64ReleaseExecutable - Installs a development image of executable 'hTTPTimeServer:win64:release:executable'
+installIfconfigLinux32DebugExecutable - Installs a development image of executable 'ifconfig:linux32:debug:executable'
+installIfconfigLinux32ReleaseExecutable - Installs a development image of executable 'ifconfig:linux32:release:executable'
+installIfconfigLinux64DebugExecutable - Installs a development image of executable 'ifconfig:linux64:debug:executable'
+installIfconfigLinux64ReleaseExecutable - Installs a development image of executable 'ifconfig:linux64:release:executable'
+installIfconfigMacosDebugExecutable - Installs a development image of executable 'ifconfig:macos:debug:executable'
+installIfconfigMacosReleaseExecutable - Installs a development image of executable 'ifconfig:macos:release:executable'
+installIfconfigWin32DebugExecutable - Installs a development image of executable 'ifconfig:win32:debug:executable'
+installIfconfigWin32ReleaseExecutable - Installs a development image of executable 'ifconfig:win32:release:executable'
+installIfconfigWin64DebugExecutable - Installs a development image of executable 'ifconfig:win64:debug:executable'
+installIfconfigWin64ReleaseExecutable - Installs a development image of executable 'ifconfig:win64:release:executable'
+installImageLinux32DebugExecutable - Installs a development image of executable 'image:linux32:debug:executable'
+installImageLinux32ReleaseExecutable - Installs a development image of executable 'image:linux32:release:executable'
+installImageLinux64DebugExecutable - Installs a development image of executable 'image:linux64:debug:executable'
+installImageLinux64ReleaseExecutable - Installs a development image of executable 'image:linux64:release:executable'
+installImageMacosDebugExecutable - Installs a development image of executable 'image:macos:debug:executable'
+installImageMacosReleaseExecutable - Installs a development image of executable 'image:macos:release:executable'
+installImageWin32DebugExecutable - Installs a development image of executable 'image:win32:debug:executable'
+installImageWin32ReleaseExecutable - Installs a development image of executable 'image:win32:release:executable'
+installImageWin64DebugExecutable - Installs a development image of executable 'image:win64:debug:executable'
+installImageWin64ReleaseExecutable - Installs a development image of executable 'image:win64:release:executable'
+installInflateLinux32DebugExecutable - Installs a development image of executable 'inflate:linux32:debug:executable'
+installInflateLinux32ReleaseExecutable - Installs a development image of executable 'inflate:linux32:release:executable'
+installInflateLinux64DebugExecutable - Installs a development image of executable 'inflate:linux64:debug:executable'
+installInflateLinux64ReleaseExecutable - Installs a development image of executable 'inflate:linux64:release:executable'
+installInflateMacosDebugExecutable - Installs a development image of executable 'inflate:macos:debug:executable'
+installInflateMacosReleaseExecutable - Installs a development image of executable 'inflate:macos:release:executable'
+installInflateWin32DebugExecutable - Installs a development image of executable 'inflate:win32:debug:executable'
+installInflateWin32ReleaseExecutable - Installs a development image of executable 'inflate:win32:release:executable'
+installInflateWin64DebugExecutable - Installs a development image of executable 'inflate:win64:debug:executable'
+installInflateWin64ReleaseExecutable - Installs a development image of executable 'inflate:win64:release:executable'
+installJSONTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'jSONTestSuite:linux32:debug:cppUnitExe'
+installJSONTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'jSONTestSuite:linux32:release:cppUnitExe'
+installJSONTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'jSONTestSuite:linux64:debug:cppUnitExe'
+installJSONTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'jSONTestSuite:linux64:release:cppUnitExe'
+installJSONTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'jSONTestSuite:macos:debug:cppUnitExe'
+installJSONTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'jSONTestSuite:macos:release:cppUnitExe'
+installJSONTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'jSONTestSuite:win32:debug:cppUnitExe'
+installJSONTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'jSONTestSuite:win32:release:cppUnitExe'
+installJSONTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'jSONTestSuite:win64:debug:cppUnitExe'
+installJSONTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'jSONTestSuite:win64:release:cppUnitExe'
+installLineEndingConverterLinux32DebugExecutable - Installs a development image of executable 'lineEndingConverter:linux32:debug:executable'
+installLineEndingConverterLinux32ReleaseExecutable - Installs a development image of executable 'lineEndingConverter:linux32:release:executable'
+installLineEndingConverterLinux64DebugExecutable - Installs a development image of executable 'lineEndingConverter:linux64:debug:executable'
+installLineEndingConverterLinux64ReleaseExecutable - Installs a development image of executable 'lineEndingConverter:linux64:release:executable'
+installLineEndingConverterMacosDebugExecutable - Installs a development image of executable 'lineEndingConverter:macos:debug:executable'
+installLineEndingConverterMacosReleaseExecutable - Installs a development image of executable 'lineEndingConverter:macos:release:executable'
+installLineEndingConverterWin32DebugExecutable - Installs a development image of executable 'lineEndingConverter:win32:debug:executable'
+installLineEndingConverterWin32ReleaseExecutable - Installs a development image of executable 'lineEndingConverter:win32:release:executable'
+installLineEndingConverterWin64DebugExecutable - Installs a development image of executable 'lineEndingConverter:win64:debug:executable'
+installLineEndingConverterWin64ReleaseExecutable - Installs a development image of executable 'lineEndingConverter:win64:release:executable'
+installLoggerLinux32DebugExecutable - Installs a development image of executable 'logger:linux32:debug:executable'
+installLoggerLinux32ReleaseExecutable - Installs a development image of executable 'logger:linux32:release:executable'
+installLoggerLinux64DebugExecutable - Installs a development image of executable 'logger:linux64:debug:executable'
+installLoggerLinux64ReleaseExecutable - Installs a development image of executable 'logger:linux64:release:executable'
+installLoggerMacosDebugExecutable - Installs a development image of executable 'logger:macos:debug:executable'
+installLoggerMacosReleaseExecutable - Installs a development image of executable 'logger:macos:release:executable'
+installLoggerWin32DebugExecutable - Installs a development image of executable 'logger:win32:debug:executable'
+installLoggerWin32ReleaseExecutable - Installs a development image of executable 'logger:win32:release:executable'
+installLoggerWin64DebugExecutable - Installs a development image of executable 'logger:win64:debug:executable'
+installLoggerWin64ReleaseExecutable - Installs a development image of executable 'logger:win64:release:executable'
+installLogRotationLinux32DebugExecutable - Installs a development image of executable 'logRotation:linux32:debug:executable'
+installLogRotationLinux32ReleaseExecutable - Installs a development image of executable 'logRotation:linux32:release:executable'
+installLogRotationLinux64DebugExecutable - Installs a development image of executable 'logRotation:linux64:debug:executable'
+installLogRotationLinux64ReleaseExecutable - Installs a development image of executable 'logRotation:linux64:release:executable'
+installLogRotationMacosDebugExecutable - Installs a development image of executable 'logRotation:macos:debug:executable'
+installLogRotationMacosReleaseExecutable - Installs a development image of executable 'logRotation:macos:release:executable'
+installLogRotationWin32DebugExecutable - Installs a development image of executable 'logRotation:win32:debug:executable'
+installLogRotationWin32ReleaseExecutable - Installs a development image of executable 'logRotation:win32:release:executable'
+installLogRotationWin64DebugExecutable - Installs a development image of executable 'logRotation:win64:debug:executable'
+installLogRotationWin64ReleaseExecutable - Installs a development image of executable 'logRotation:win64:release:executable'
+installMailLinux32DebugExecutable - Installs a development image of executable 'mail:linux32:debug:executable'
+installMailLinux32ReleaseExecutable - Installs a development image of executable 'mail:linux32:release:executable'
+installMailLinux64DebugExecutable - Installs a development image of executable 'mail:linux64:debug:executable'
+installMailLinux64ReleaseExecutable - Installs a development image of executable 'mail:linux64:release:executable'
+installMailMacosDebugExecutable - Installs a development image of executable 'mail:macos:debug:executable'
+installMailMacosReleaseExecutable - Installs a development image of executable 'mail:macos:release:executable'
+installMailWin32DebugExecutable - Installs a development image of executable 'mail:win32:debug:executable'
+installMailWin32ReleaseExecutable - Installs a development image of executable 'mail:win32:release:executable'
+installMailWin64DebugExecutable - Installs a development image of executable 'mail:win64:debug:executable'
+installMailWin64ReleaseExecutable - Installs a development image of executable 'mail:win64:release:executable'
+installMd5Linux32DebugExecutable - Installs a development image of executable 'md5:linux32:debug:executable'
+installMd5Linux32ReleaseExecutable - Installs a development image of executable 'md5:linux32:release:executable'
+installMd5Linux64DebugExecutable - Installs a development image of executable 'md5:linux64:debug:executable'
+installMd5Linux64ReleaseExecutable - Installs a development image of executable 'md5:linux64:release:executable'
+installMd5MacosDebugExecutable - Installs a development image of executable 'md5:macos:debug:executable'
+installMd5MacosReleaseExecutable - Installs a development image of executable 'md5:macos:release:executable'
+installMd5Win32DebugExecutable - Installs a development image of executable 'md5:win32:debug:executable'
+installMd5Win32ReleaseExecutable - Installs a development image of executable 'md5:win32:release:executable'
+installMd5Win64DebugExecutable - Installs a development image of executable 'md5:win64:debug:executable'
+installMd5Win64ReleaseExecutable - Installs a development image of executable 'md5:win64:release:executable'
+installMongoDBTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'mongoDBTestSuite:linux32:debug:cppUnitExe'
+installMongoDBTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'mongoDBTestSuite:linux32:release:cppUnitExe'
+installMongoDBTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'mongoDBTestSuite:linux64:debug:cppUnitExe'
+installMongoDBTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'mongoDBTestSuite:linux64:release:cppUnitExe'
+installMongoDBTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'mongoDBTestSuite:macos:debug:cppUnitExe'
+installMongoDBTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'mongoDBTestSuite:macos:release:cppUnitExe'
+installMongoDBTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'mongoDBTestSuite:win32:debug:cppUnitExe'
+installMongoDBTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'mongoDBTestSuite:win32:release:cppUnitExe'
+installMongoDBTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'mongoDBTestSuite:win64:debug:cppUnitExe'
+installMongoDBTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'mongoDBTestSuite:win64:release:cppUnitExe'
+installMySQLTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'mySQLTestSuite:linux32:debug:cppUnitExe'
+installMySQLTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'mySQLTestSuite:linux32:release:cppUnitExe'
+installMySQLTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'mySQLTestSuite:linux64:debug:cppUnitExe'
+installMySQLTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'mySQLTestSuite:linux64:release:cppUnitExe'
+installMySQLTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'mySQLTestSuite:macos:debug:cppUnitExe'
+installMySQLTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'mySQLTestSuite:macos:release:cppUnitExe'
+installMySQLTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'mySQLTestSuite:win32:debug:cppUnitExe'
+installMySQLTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'mySQLTestSuite:win32:release:cppUnitExe'
+installMySQLTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'mySQLTestSuite:win64:debug:cppUnitExe'
+installMySQLTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'mySQLTestSuite:win64:release:cppUnitExe'
+installNetSSLTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'netSSLTestSuite:linux32:debug:cppUnitExe'
+installNetSSLTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'netSSLTestSuite:linux32:release:cppUnitExe'
+installNetSSLTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'netSSLTestSuite:linux64:debug:cppUnitExe'
+installNetSSLTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'netSSLTestSuite:linux64:release:cppUnitExe'
+installNetSSLTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'netSSLTestSuite:macos:debug:cppUnitExe'
+installNetSSLTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'netSSLTestSuite:macos:release:cppUnitExe'
+installNetSSLTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'netSSLTestSuite:win32:debug:cppUnitExe'
+installNetSSLTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'netSSLTestSuite:win32:release:cppUnitExe'
+installNetSSLTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'netSSLTestSuite:win64:debug:cppUnitExe'
+installNetSSLTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'netSSLTestSuite:win64:release:cppUnitExe'
+installNetTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'netTestSuite:linux32:debug:cppUnitExe'
+installNetTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'netTestSuite:linux32:release:cppUnitExe'
+installNetTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'netTestSuite:linux64:debug:cppUnitExe'
+installNetTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'netTestSuite:linux64:release:cppUnitExe'
+installNetTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'netTestSuite:macos:debug:cppUnitExe'
+installNetTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'netTestSuite:macos:release:cppUnitExe'
+installNetTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'netTestSuite:win32:debug:cppUnitExe'
+installNetTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'netTestSuite:win32:release:cppUnitExe'
+installNetTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'netTestSuite:win64:debug:cppUnitExe'
+installNetTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'netTestSuite:win64:release:cppUnitExe'
+installNotificationQueueLinux32DebugExecutable - Installs a development image of executable 'notificationQueue:linux32:debug:executable'
+installNotificationQueueLinux32ReleaseExecutable - Installs a development image of executable 'notificationQueue:linux32:release:executable'
+installNotificationQueueLinux64DebugExecutable - Installs a development image of executable 'notificationQueue:linux64:debug:executable'
+installNotificationQueueLinux64ReleaseExecutable - Installs a development image of executable 'notificationQueue:linux64:release:executable'
+installNotificationQueueMacosDebugExecutable - Installs a development image of executable 'notificationQueue:macos:debug:executable'
+installNotificationQueueMacosReleaseExecutable - Installs a development image of executable 'notificationQueue:macos:release:executable'
+installNotificationQueueWin32DebugExecutable - Installs a development image of executable 'notificationQueue:win32:debug:executable'
+installNotificationQueueWin32ReleaseExecutable - Installs a development image of executable 'notificationQueue:win32:release:executable'
+installNotificationQueueWin64DebugExecutable - Installs a development image of executable 'notificationQueue:win64:debug:executable'
+installNotificationQueueWin64ReleaseExecutable - Installs a development image of executable 'notificationQueue:win64:release:executable'
+installODBCTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'oDBCTestSuite:linux32:debug:cppUnitExe'
+installODBCTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'oDBCTestSuite:linux32:release:cppUnitExe'
+installODBCTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'oDBCTestSuite:linux64:debug:cppUnitExe'
+installODBCTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'oDBCTestSuite:linux64:release:cppUnitExe'
+installODBCTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'oDBCTestSuite:macos:debug:cppUnitExe'
+installODBCTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'oDBCTestSuite:macos:release:cppUnitExe'
+installODBCTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'oDBCTestSuite:win32:debug:cppUnitExe'
+installODBCTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'oDBCTestSuite:win32:release:cppUnitExe'
+installODBCTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'oDBCTestSuite:win64:debug:cppUnitExe'
+installODBCTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'oDBCTestSuite:win64:release:cppUnitExe'
+installPingLinux32DebugExecutable - Installs a development image of executable 'ping:linux32:debug:executable'
+installPingLinux32ReleaseExecutable - Installs a development image of executable 'ping:linux32:release:executable'
+installPingLinux64DebugExecutable - Installs a development image of executable 'ping:linux64:debug:executable'
+installPingLinux64ReleaseExecutable - Installs a development image of executable 'ping:linux64:release:executable'
+installPingMacosDebugExecutable - Installs a development image of executable 'ping:macos:debug:executable'
+installPingMacosReleaseExecutable - Installs a development image of executable 'ping:macos:release:executable'
+installPingWin32DebugExecutable - Installs a development image of executable 'ping:win32:debug:executable'
+installPingWin32ReleaseExecutable - Installs a development image of executable 'ping:win32:release:executable'
+installPingWin64DebugExecutable - Installs a development image of executable 'ping:win64:debug:executable'
+installPingWin64ReleaseExecutable - Installs a development image of executable 'ping:win64:release:executable'
+installPkillLinux32DebugExecutable - Installs a development image of executable 'pkill:linux32:debug:executable'
+installPkillLinux32ReleaseExecutable - Installs a development image of executable 'pkill:linux32:release:executable'
+installPkillLinux64DebugExecutable - Installs a development image of executable 'pkill:linux64:debug:executable'
+installPkillLinux64ReleaseExecutable - Installs a development image of executable 'pkill:linux64:release:executable'
+installPkillMacosDebugExecutable - Installs a development image of executable 'pkill:macos:debug:executable'
+installPkillMacosReleaseExecutable - Installs a development image of executable 'pkill:macos:release:executable'
+installPkillWin32DebugExecutable - Installs a development image of executable 'pkill:win32:debug:executable'
+installPkillWin32ReleaseExecutable - Installs a development image of executable 'pkill:win32:release:executable'
+installPkillWin64DebugExecutable - Installs a development image of executable 'pkill:win64:debug:executable'
+installPkillWin64ReleaseExecutable - Installs a development image of executable 'pkill:win64:release:executable'
+installPostgreSQLTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'postgreSQLTestSuite:linux32:debug:cppUnitExe'
+installPostgreSQLTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'postgreSQLTestSuite:linux32:release:cppUnitExe'
+installPostgreSQLTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'postgreSQLTestSuite:linux64:debug:cppUnitExe'
+installPostgreSQLTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'postgreSQLTestSuite:linux64:release:cppUnitExe'
+installPostgreSQLTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'postgreSQLTestSuite:macos:debug:cppUnitExe'
+installPostgreSQLTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'postgreSQLTestSuite:macos:release:cppUnitExe'
+installPostgreSQLTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'postgreSQLTestSuite:win32:debug:cppUnitExe'
+installPostgreSQLTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'postgreSQLTestSuite:win32:release:cppUnitExe'
+installPostgreSQLTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'postgreSQLTestSuite:win64:debug:cppUnitExe'
+installPostgreSQLTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'postgreSQLTestSuite:win64:release:cppUnitExe'
+installPrettyPrintLinux32DebugExecutable - Installs a development image of executable 'prettyPrint:linux32:debug:executable'
+installPrettyPrintLinux32ReleaseExecutable - Installs a development image of executable 'prettyPrint:linux32:release:executable'
+installPrettyPrintLinux64DebugExecutable - Installs a development image of executable 'prettyPrint:linux64:debug:executable'
+installPrettyPrintLinux64ReleaseExecutable - Installs a development image of executable 'prettyPrint:linux64:release:executable'
+installPrettyPrintMacosDebugExecutable - Installs a development image of executable 'prettyPrint:macos:debug:executable'
+installPrettyPrintMacosReleaseExecutable - Installs a development image of executable 'prettyPrint:macos:release:executable'
+installPrettyPrintWin32DebugExecutable - Installs a development image of executable 'prettyPrint:win32:debug:executable'
+installPrettyPrintWin32ReleaseExecutable - Installs a development image of executable 'prettyPrint:win32:release:executable'
+installPrettyPrintWin64DebugExecutable - Installs a development image of executable 'prettyPrint:win64:debug:executable'
+installPrettyPrintWin64ReleaseExecutable - Installs a development image of executable 'prettyPrint:win64:release:executable'
+installRecordSetLinux32DebugExecutable - Installs a development image of executable 'recordSet:linux32:debug:executable'
+installRecordSetLinux32ReleaseExecutable - Installs a development image of executable 'recordSet:linux32:release:executable'
+installRecordSetLinux64DebugExecutable - Installs a development image of executable 'recordSet:linux64:debug:executable'
+installRecordSetLinux64ReleaseExecutable - Installs a development image of executable 'recordSet:linux64:release:executable'
+installRecordSetMacosDebugExecutable - Installs a development image of executable 'recordSet:macos:debug:executable'
+installRecordSetMacosReleaseExecutable - Installs a development image of executable 'recordSet:macos:release:executable'
+installRecordSetWin32DebugExecutable - Installs a development image of executable 'recordSet:win32:debug:executable'
+installRecordSetWin32ReleaseExecutable - Installs a development image of executable 'recordSet:win32:release:executable'
+installRecordSetWin64DebugExecutable - Installs a development image of executable 'recordSet:win64:debug:executable'
+installRecordSetWin64ReleaseExecutable - Installs a development image of executable 'recordSet:win64:release:executable'
+installRedisTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'redisTestSuite:linux32:debug:cppUnitExe'
+installRedisTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'redisTestSuite:linux32:release:cppUnitExe'
+installRedisTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'redisTestSuite:linux64:debug:cppUnitExe'
+installRedisTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'redisTestSuite:linux64:release:cppUnitExe'
+installRedisTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'redisTestSuite:macos:debug:cppUnitExe'
+installRedisTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'redisTestSuite:macos:release:cppUnitExe'
+installRedisTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'redisTestSuite:win32:debug:cppUnitExe'
+installRedisTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'redisTestSuite:win32:release:cppUnitExe'
+installRedisTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'redisTestSuite:win64:debug:cppUnitExe'
+installRedisTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'redisTestSuite:win64:release:cppUnitExe'
+installRowFormatterLinux32DebugExecutable - Installs a development image of executable 'rowFormatter:linux32:debug:executable'
+installRowFormatterLinux32ReleaseExecutable - Installs a development image of executable 'rowFormatter:linux32:release:executable'
+installRowFormatterLinux64DebugExecutable - Installs a development image of executable 'rowFormatter:linux64:debug:executable'
+installRowFormatterLinux64ReleaseExecutable - Installs a development image of executable 'rowFormatter:linux64:release:executable'
+installRowFormatterMacosDebugExecutable - Installs a development image of executable 'rowFormatter:macos:debug:executable'
+installRowFormatterMacosReleaseExecutable - Installs a development image of executable 'rowFormatter:macos:release:executable'
+installRowFormatterWin32DebugExecutable - Installs a development image of executable 'rowFormatter:win32:debug:executable'
+installRowFormatterWin32ReleaseExecutable - Installs a development image of executable 'rowFormatter:win32:release:executable'
+installRowFormatterWin64DebugExecutable - Installs a development image of executable 'rowFormatter:win64:debug:executable'
+installRowFormatterWin64ReleaseExecutable - Installs a development image of executable 'rowFormatter:win64:release:executable'
+installSampleAppLinux32DebugExecutable - Installs a development image of executable 'sampleApp:linux32:debug:executable'
+installSampleAppLinux32ReleaseExecutable - Installs a development image of executable 'sampleApp:linux32:release:executable'
+installSampleAppLinux64DebugExecutable - Installs a development image of executable 'sampleApp:linux64:debug:executable'
+installSampleAppLinux64ReleaseExecutable - Installs a development image of executable 'sampleApp:linux64:release:executable'
+installSampleAppMacosDebugExecutable - Installs a development image of executable 'sampleApp:macos:debug:executable'
+installSampleAppMacosReleaseExecutable - Installs a development image of executable 'sampleApp:macos:release:executable'
+installSampleAppWin32DebugExecutable - Installs a development image of executable 'sampleApp:win32:debug:executable'
+installSampleAppWin32ReleaseExecutable - Installs a development image of executable 'sampleApp:win32:release:executable'
+installSampleAppWin64DebugExecutable - Installs a development image of executable 'sampleApp:win64:debug:executable'
+installSampleAppWin64ReleaseExecutable - Installs a development image of executable 'sampleApp:win64:release:executable'
+installSampleServerLinux32DebugExecutable - Installs a development image of executable 'sampleServer:linux32:debug:executable'
+installSampleServerLinux32ReleaseExecutable - Installs a development image of executable 'sampleServer:linux32:release:executable'
+installSampleServerLinux64DebugExecutable - Installs a development image of executable 'sampleServer:linux64:debug:executable'
+installSampleServerLinux64ReleaseExecutable - Installs a development image of executable 'sampleServer:linux64:release:executable'
+installSampleServerMacosDebugExecutable - Installs a development image of executable 'sampleServer:macos:debug:executable'
+installSampleServerMacosReleaseExecutable - Installs a development image of executable 'sampleServer:macos:release:executable'
+installSampleServerWin32DebugExecutable - Installs a development image of executable 'sampleServer:win32:debug:executable'
+installSampleServerWin32ReleaseExecutable - Installs a development image of executable 'sampleServer:win32:release:executable'
+installSampleServerWin64DebugExecutable - Installs a development image of executable 'sampleServer:win64:debug:executable'
+installSampleServerWin64ReleaseExecutable - Installs a development image of executable 'sampleServer:win64:release:executable'
+installSAXParserLinux32DebugExecutable - Installs a development image of executable 'sAXParser:linux32:debug:executable'
+installSAXParserLinux32ReleaseExecutable - Installs a development image of executable 'sAXParser:linux32:release:executable'
+installSAXParserLinux64DebugExecutable - Installs a development image of executable 'sAXParser:linux64:debug:executable'
+installSAXParserLinux64ReleaseExecutable - Installs a development image of executable 'sAXParser:linux64:release:executable'
+installSAXParserMacosDebugExecutable - Installs a development image of executable 'sAXParser:macos:debug:executable'
+installSAXParserMacosReleaseExecutable - Installs a development image of executable 'sAXParser:macos:release:executable'
+installSAXParserWin32DebugExecutable - Installs a development image of executable 'sAXParser:win32:debug:executable'
+installSAXParserWin32ReleaseExecutable - Installs a development image of executable 'sAXParser:win32:release:executable'
+installSAXParserWin64DebugExecutable - Installs a development image of executable 'sAXParser:win64:debug:executable'
+installSAXParserWin64ReleaseExecutable - Installs a development image of executable 'sAXParser:win64:release:executable'
+installSMTPLoggerLinux32DebugExecutable - Installs a development image of executable 'sMTPLogger:linux32:debug:executable'
+installSMTPLoggerLinux32ReleaseExecutable - Installs a development image of executable 'sMTPLogger:linux32:release:executable'
+installSMTPLoggerLinux64DebugExecutable - Installs a development image of executable 'sMTPLogger:linux64:debug:executable'
+installSMTPLoggerLinux64ReleaseExecutable - Installs a development image of executable 'sMTPLogger:linux64:release:executable'
+installSMTPLoggerMacosDebugExecutable - Installs a development image of executable 'sMTPLogger:macos:debug:executable'
+installSMTPLoggerMacosReleaseExecutable - Installs a development image of executable 'sMTPLogger:macos:release:executable'
+installSMTPLoggerWin32DebugExecutable - Installs a development image of executable 'sMTPLogger:win32:debug:executable'
+installSMTPLoggerWin32ReleaseExecutable - Installs a development image of executable 'sMTPLogger:win32:release:executable'
+installSMTPLoggerWin64DebugExecutable - Installs a development image of executable 'sMTPLogger:win64:debug:executable'
+installSMTPLoggerWin64ReleaseExecutable - Installs a development image of executable 'sMTPLogger:win64:release:executable'
+installSQLiteTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'sQLiteTestSuite:linux32:debug:cppUnitExe'
+installSQLiteTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'sQLiteTestSuite:linux32:release:cppUnitExe'
+installSQLiteTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'sQLiteTestSuite:linux64:debug:cppUnitExe'
+installSQLiteTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'sQLiteTestSuite:linux64:release:cppUnitExe'
+installSQLiteTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'sQLiteTestSuite:macos:debug:cppUnitExe'
+installSQLiteTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'sQLiteTestSuite:macos:release:cppUnitExe'
+installSQLiteTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'sQLiteTestSuite:win32:debug:cppUnitExe'
+installSQLiteTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'sQLiteTestSuite:win32:release:cppUnitExe'
+installSQLiteTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'sQLiteTestSuite:win64:debug:cppUnitExe'
+installSQLiteTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'sQLiteTestSuite:win64:release:cppUnitExe'
+installSQLToMongoLinux32DebugExecutable - Installs a development image of executable 'sQLToMongo:linux32:debug:executable'
+installSQLToMongoLinux32ReleaseExecutable - Installs a development image of executable 'sQLToMongo:linux32:release:executable'
+installSQLToMongoLinux64DebugExecutable - Installs a development image of executable 'sQLToMongo:linux64:debug:executable'
+installSQLToMongoLinux64ReleaseExecutable - Installs a development image of executable 'sQLToMongo:linux64:release:executable'
+installSQLToMongoMacosDebugExecutable - Installs a development image of executable 'sQLToMongo:macos:debug:executable'
+installSQLToMongoMacosReleaseExecutable - Installs a development image of executable 'sQLToMongo:macos:release:executable'
+installSQLToMongoWin32DebugExecutable - Installs a development image of executable 'sQLToMongo:win32:debug:executable'
+installSQLToMongoWin32ReleaseExecutable - Installs a development image of executable 'sQLToMongo:win32:release:executable'
+installSQLToMongoWin64DebugExecutable - Installs a development image of executable 'sQLToMongo:win64:debug:executable'
+installSQLToMongoWin64ReleaseExecutable - Installs a development image of executable 'sQLToMongo:win64:release:executable'
+installStringTokenizerLinux32DebugExecutable - Installs a development image of executable 'stringTokenizer:linux32:debug:executable'
+installStringTokenizerLinux32ReleaseExecutable - Installs a development image of executable 'stringTokenizer:linux32:release:executable'
+installStringTokenizerLinux64DebugExecutable - Installs a development image of executable 'stringTokenizer:linux64:debug:executable'
+installStringTokenizerLinux64ReleaseExecutable - Installs a development image of executable 'stringTokenizer:linux64:release:executable'
+installStringTokenizerMacosDebugExecutable - Installs a development image of executable 'stringTokenizer:macos:debug:executable'
+installStringTokenizerMacosReleaseExecutable - Installs a development image of executable 'stringTokenizer:macos:release:executable'
+installStringTokenizerWin32DebugExecutable - Installs a development image of executable 'stringTokenizer:win32:debug:executable'
+installStringTokenizerWin32ReleaseExecutable - Installs a development image of executable 'stringTokenizer:win32:release:executable'
+installStringTokenizerWin64DebugExecutable - Installs a development image of executable 'stringTokenizer:win64:debug:executable'
+installStringTokenizerWin64ReleaseExecutable - Installs a development image of executable 'stringTokenizer:win64:release:executable'
+installTestAppLinux32DebugExecutable - Installs a development image of executable 'testApp:linux32:debug:executable'
+installTestAppLinux32ReleaseExecutable - Installs a development image of executable 'testApp:linux32:release:executable'
+installTestAppLinux64DebugExecutable - Installs a development image of executable 'testApp:linux64:debug:executable'
+installTestAppLinux64ReleaseExecutable - Installs a development image of executable 'testApp:linux64:release:executable'
+installTestAppMacosDebugExecutable - Installs a development image of executable 'testApp:macos:debug:executable'
+installTestAppMacosReleaseExecutable - Installs a development image of executable 'testApp:macos:release:executable'
+installTestAppWin32DebugExecutable - Installs a development image of executable 'testApp:win32:debug:executable'
+installTestAppWin32ReleaseExecutable - Installs a development image of executable 'testApp:win32:release:executable'
+installTestAppWin64DebugExecutable - Installs a development image of executable 'testApp:win64:debug:executable'
+installTestAppWin64ReleaseExecutable - Installs a development image of executable 'testApp:win64:release:executable'
+installTextConverterLinux32DebugExecutable - Installs a development image of executable 'textConverter:linux32:debug:executable'
+installTextConverterLinux32ReleaseExecutable - Installs a development image of executable 'textConverter:linux32:release:executable'
+installTextConverterLinux64DebugExecutable - Installs a development image of executable 'textConverter:linux64:debug:executable'
+installTextConverterLinux64ReleaseExecutable - Installs a development image of executable 'textConverter:linux64:release:executable'
+installTextConverterMacosDebugExecutable - Installs a development image of executable 'textConverter:macos:debug:executable'
+installTextConverterMacosReleaseExecutable - Installs a development image of executable 'textConverter:macos:release:executable'
+installTextConverterWin32DebugExecutable - Installs a development image of executable 'textConverter:win32:debug:executable'
+installTextConverterWin32ReleaseExecutable - Installs a development image of executable 'textConverter:win32:release:executable'
+installTextConverterWin64DebugExecutable - Installs a development image of executable 'textConverter:win64:debug:executable'
+installTextConverterWin64ReleaseExecutable - Installs a development image of executable 'textConverter:win64:release:executable'
+installTextLinux32DebugExecutable - Installs a development image of executable 'text:linux32:debug:executable'
+installTextLinux32ReleaseExecutable - Installs a development image of executable 'text:linux32:release:executable'
+installTextLinux64DebugExecutable - Installs a development image of executable 'text:linux64:debug:executable'
+installTextLinux64ReleaseExecutable - Installs a development image of executable 'text:linux64:release:executable'
+installTextMacosDebugExecutable - Installs a development image of executable 'text:macos:debug:executable'
+installTextMacosReleaseExecutable - Installs a development image of executable 'text:macos:release:executable'
+installTextWin32DebugExecutable - Installs a development image of executable 'text:win32:debug:executable'
+installTextWin32ReleaseExecutable - Installs a development image of executable 'text:win32:release:executable'
+installTextWin64DebugExecutable - Installs a development image of executable 'text:win64:debug:executable'
+installTextWin64ReleaseExecutable - Installs a development image of executable 'text:win64:release:executable'
+installTimerLinux32DebugExecutable - Installs a development image of executable 'timer:linux32:debug:executable'
+installTimerLinux32ReleaseExecutable - Installs a development image of executable 'timer:linux32:release:executable'
+installTimerLinux64DebugExecutable - Installs a development image of executable 'timer:linux64:debug:executable'
+installTimerLinux64ReleaseExecutable - Installs a development image of executable 'timer:linux64:release:executable'
+installTimerMacosDebugExecutable - Installs a development image of executable 'timer:macos:debug:executable'
+installTimerMacosReleaseExecutable - Installs a development image of executable 'timer:macos:release:executable'
+installTimerWin32DebugExecutable - Installs a development image of executable 'timer:win32:debug:executable'
+installTimerWin32ReleaseExecutable - Installs a development image of executable 'timer:win32:release:executable'
+installTimerWin64DebugExecutable - Installs a development image of executable 'timer:win64:debug:executable'
+installTimerWin64ReleaseExecutable - Installs a development image of executable 'timer:win64:release:executable'
+installTimeServerLinux32DebugExecutable - Installs a development image of executable 'timeServer:linux32:debug:executable'
+installTimeServerLinux32ReleaseExecutable - Installs a development image of executable 'timeServer:linux32:release:executable'
+installTimeServerLinux64DebugExecutable - Installs a development image of executable 'timeServer:linux64:debug:executable'
+installTimeServerLinux64ReleaseExecutable - Installs a development image of executable 'timeServer:linux64:release:executable'
+installTimeServerMacosDebugExecutable - Installs a development image of executable 'timeServer:macos:debug:executable'
+installTimeServerMacosReleaseExecutable - Installs a development image of executable 'timeServer:macos:release:executable'
+installTimeServerWin32DebugExecutable - Installs a development image of executable 'timeServer:win32:debug:executable'
+installTimeServerWin32ReleaseExecutable - Installs a development image of executable 'timeServer:win32:release:executable'
+installTimeServerWin64DebugExecutable - Installs a development image of executable 'timeServer:win64:debug:executable'
+installTimeServerWin64ReleaseExecutable - Installs a development image of executable 'timeServer:win64:release:executable'
+installTupleLinux32DebugExecutable - Installs a development image of executable 'tuple:linux32:debug:executable'
+installTupleLinux32ReleaseExecutable - Installs a development image of executable 'tuple:linux32:release:executable'
+installTupleLinux64DebugExecutable - Installs a development image of executable 'tuple:linux64:debug:executable'
+installTupleLinux64ReleaseExecutable - Installs a development image of executable 'tuple:linux64:release:executable'
+installTupleMacosDebugExecutable - Installs a development image of executable 'tuple:macos:debug:executable'
+installTupleMacosReleaseExecutable - Installs a development image of executable 'tuple:macos:release:executable'
+installTupleWin32DebugExecutable - Installs a development image of executable 'tuple:win32:debug:executable'
+installTupleWin32ReleaseExecutable - Installs a development image of executable 'tuple:win32:release:executable'
+installTupleWin64DebugExecutable - Installs a development image of executable 'tuple:win64:debug:executable'
+installTupleWin64ReleaseExecutable - Installs a development image of executable 'tuple:win64:release:executable'
+installTwitterClientLinux32DebugExecutable - Installs a development image of executable 'twitterClient:linux32:debug:executable'
+installTwitterClientLinux32ReleaseExecutable - Installs a development image of executable 'twitterClient:linux32:release:executable'
+installTwitterClientLinux64DebugExecutable - Installs a development image of executable 'twitterClient:linux64:debug:executable'
+installTwitterClientLinux64ReleaseExecutable - Installs a development image of executable 'twitterClient:linux64:release:executable'
+installTwitterClientMacosDebugExecutable - Installs a development image of executable 'twitterClient:macos:debug:executable'
+installTwitterClientMacosReleaseExecutable - Installs a development image of executable 'twitterClient:macos:release:executable'
+installTwitterClientWin32DebugExecutable - Installs a development image of executable 'twitterClient:win32:debug:executable'
+installTwitterClientWin32ReleaseExecutable - Installs a development image of executable 'twitterClient:win32:release:executable'
+installTwitterClientWin64DebugExecutable - Installs a development image of executable 'twitterClient:win64:debug:executable'
+installTwitterClientWin64ReleaseExecutable - Installs a development image of executable 'twitterClient:win64:release:executable'
+installTypeHandlerLinux32DebugExecutable - Installs a development image of executable 'typeHandler:linux32:debug:executable'
+installTypeHandlerLinux32ReleaseExecutable - Installs a development image of executable 'typeHandler:linux32:release:executable'
+installTypeHandlerLinux64DebugExecutable - Installs a development image of executable 'typeHandler:linux64:debug:executable'
+installTypeHandlerLinux64ReleaseExecutable - Installs a development image of executable 'typeHandler:linux64:release:executable'
+installTypeHandlerMacosDebugExecutable - Installs a development image of executable 'typeHandler:macos:debug:executable'
+installTypeHandlerMacosReleaseExecutable - Installs a development image of executable 'typeHandler:macos:release:executable'
+installTypeHandlerWin32DebugExecutable - Installs a development image of executable 'typeHandler:win32:debug:executable'
+installTypeHandlerWin32ReleaseExecutable - Installs a development image of executable 'typeHandler:win32:release:executable'
+installTypeHandlerWin64DebugExecutable - Installs a development image of executable 'typeHandler:win64:debug:executable'
+installTypeHandlerWin64ReleaseExecutable - Installs a development image of executable 'typeHandler:win64:release:executable'
+installUn7zipLinux32DebugExecutable - Installs a development image of executable 'un7zip:linux32:debug:executable'
+installUn7zipLinux32ReleaseExecutable - Installs a development image of executable 'un7zip:linux32:release:executable'
+installUn7zipLinux64DebugExecutable - Installs a development image of executable 'un7zip:linux64:debug:executable'
+installUn7zipLinux64ReleaseExecutable - Installs a development image of executable 'un7zip:linux64:release:executable'
+installUn7zipMacosDebugExecutable - Installs a development image of executable 'un7zip:macos:debug:executable'
+installUn7zipMacosReleaseExecutable - Installs a development image of executable 'un7zip:macos:release:executable'
+installUn7zipWin32DebugExecutable - Installs a development image of executable 'un7zip:win32:debug:executable'
+installUn7zipWin32ReleaseExecutable - Installs a development image of executable 'un7zip:win32:release:executable'
+installUn7zipWin64DebugExecutable - Installs a development image of executable 'un7zip:win64:debug:executable'
+installUn7zipWin64ReleaseExecutable - Installs a development image of executable 'un7zip:win64:release:executable'
+installUnitsLinux32DebugExecutable - Installs a development image of executable 'units:linux32:debug:executable'
+installUnitsLinux32ReleaseExecutable - Installs a development image of executable 'units:linux32:release:executable'
+installUnitsLinux64DebugExecutable - Installs a development image of executable 'units:linux64:debug:executable'
+installUnitsLinux64ReleaseExecutable - Installs a development image of executable 'units:linux64:release:executable'
+installUnitsMacosDebugExecutable - Installs a development image of executable 'units:macos:debug:executable'
+installUnitsMacosReleaseExecutable - Installs a development image of executable 'units:macos:release:executable'
+installUnitsWin32DebugExecutable - Installs a development image of executable 'units:win32:debug:executable'
+installUnitsWin32ReleaseExecutable - Installs a development image of executable 'units:win32:release:executable'
+installUnitsWin64DebugExecutable - Installs a development image of executable 'units:win64:debug:executable'
+installUnitsWin64ReleaseExecutable - Installs a development image of executable 'units:win64:release:executable'
+installUnzipLinux32DebugExecutable - Installs a development image of executable 'unzip:linux32:debug:executable'
+installUnzipLinux32ReleaseExecutable - Installs a development image of executable 'unzip:linux32:release:executable'
+installUnzipLinux64DebugExecutable - Installs a development image of executable 'unzip:linux64:debug:executable'
+installUnzipLinux64ReleaseExecutable - Installs a development image of executable 'unzip:linux64:release:executable'
+installUnzipMacosDebugExecutable - Installs a development image of executable 'unzip:macos:debug:executable'
+installUnzipMacosReleaseExecutable - Installs a development image of executable 'unzip:macos:release:executable'
+installUnzipWin32DebugExecutable - Installs a development image of executable 'unzip:win32:debug:executable'
+installUnzipWin32ReleaseExecutable - Installs a development image of executable 'unzip:win32:release:executable'
+installUnzipWin64DebugExecutable - Installs a development image of executable 'unzip:win64:debug:executable'
+installUnzipWin64ReleaseExecutable - Installs a development image of executable 'unzip:win64:release:executable'
+installURILinux32DebugExecutable - Installs a development image of executable 'uRI:linux32:debug:executable'
+installURILinux32ReleaseExecutable - Installs a development image of executable 'uRI:linux32:release:executable'
+installURILinux64DebugExecutable - Installs a development image of executable 'uRI:linux64:debug:executable'
+installURILinux64ReleaseExecutable - Installs a development image of executable 'uRI:linux64:release:executable'
+installURIMacosDebugExecutable - Installs a development image of executable 'uRI:macos:debug:executable'
+installURIMacosReleaseExecutable - Installs a development image of executable 'uRI:macos:release:executable'
+installURIWin32DebugExecutable - Installs a development image of executable 'uRI:win32:debug:executable'
+installURIWin32ReleaseExecutable - Installs a development image of executable 'uRI:win32:release:executable'
+installURIWin64DebugExecutable - Installs a development image of executable 'uRI:win64:debug:executable'
+installURIWin64ReleaseExecutable - Installs a development image of executable 'uRI:win64:release:executable'
+installUtilTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'utilTestSuite:linux32:debug:cppUnitExe'
+installUtilTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'utilTestSuite:linux32:release:cppUnitExe'
+installUtilTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'utilTestSuite:linux64:debug:cppUnitExe'
+installUtilTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'utilTestSuite:linux64:release:cppUnitExe'
+installUtilTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'utilTestSuite:macos:debug:cppUnitExe'
+installUtilTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'utilTestSuite:macos:release:cppUnitExe'
+installUtilTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'utilTestSuite:win32:debug:cppUnitExe'
+installUtilTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'utilTestSuite:win32:release:cppUnitExe'
+installUtilTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'utilTestSuite:win64:debug:cppUnitExe'
+installUtilTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'utilTestSuite:win64:release:cppUnitExe'
+installUuidgenLinux32DebugExecutable - Installs a development image of executable 'uuidgen:linux32:debug:executable'
+installUuidgenLinux32ReleaseExecutable - Installs a development image of executable 'uuidgen:linux32:release:executable'
+installUuidgenLinux64DebugExecutable - Installs a development image of executable 'uuidgen:linux64:debug:executable'
+installUuidgenLinux64ReleaseExecutable - Installs a development image of executable 'uuidgen:linux64:release:executable'
+installUuidgenMacosDebugExecutable - Installs a development image of executable 'uuidgen:macos:debug:executable'
+installUuidgenMacosReleaseExecutable - Installs a development image of executable 'uuidgen:macos:release:executable'
+installUuidgenWin32DebugExecutable - Installs a development image of executable 'uuidgen:win32:debug:executable'
+installUuidgenWin32ReleaseExecutable - Installs a development image of executable 'uuidgen:win32:release:executable'
+installUuidgenWin64DebugExecutable - Installs a development image of executable 'uuidgen:win64:debug:executable'
+installUuidgenWin64ReleaseExecutable - Installs a development image of executable 'uuidgen:win64:release:executable'
+installWebNotifierLinux32DebugExecutable - Installs a development image of executable 'webNotifier:linux32:debug:executable'
+installWebNotifierLinux32ReleaseExecutable - Installs a development image of executable 'webNotifier:linux32:release:executable'
+installWebNotifierLinux64DebugExecutable - Installs a development image of executable 'webNotifier:linux64:debug:executable'
+installWebNotifierLinux64ReleaseExecutable - Installs a development image of executable 'webNotifier:linux64:release:executable'
+installWebNotifierMacosDebugExecutable - Installs a development image of executable 'webNotifier:macos:debug:executable'
+installWebNotifierMacosReleaseExecutable - Installs a development image of executable 'webNotifier:macos:release:executable'
+installWebNotifierWin32DebugExecutable - Installs a development image of executable 'webNotifier:win32:debug:executable'
+installWebNotifierWin32ReleaseExecutable - Installs a development image of executable 'webNotifier:win32:release:executable'
+installWebNotifierWin64DebugExecutable - Installs a development image of executable 'webNotifier:win64:debug:executable'
+installWebNotifierWin64ReleaseExecutable - Installs a development image of executable 'webNotifier:win64:release:executable'
+installWebSocketServerLinux32DebugExecutable - Installs a development image of executable 'webSocketServer:linux32:debug:executable'
+installWebSocketServerLinux32ReleaseExecutable - Installs a development image of executable 'webSocketServer:linux32:release:executable'
+installWebSocketServerLinux64DebugExecutable - Installs a development image of executable 'webSocketServer:linux64:debug:executable'
+installWebSocketServerLinux64ReleaseExecutable - Installs a development image of executable 'webSocketServer:linux64:release:executable'
+installWebSocketServerMacosDebugExecutable - Installs a development image of executable 'webSocketServer:macos:debug:executable'
+installWebSocketServerMacosReleaseExecutable - Installs a development image of executable 'webSocketServer:macos:release:executable'
+installWebSocketServerWin32DebugExecutable - Installs a development image of executable 'webSocketServer:win32:debug:executable'
+installWebSocketServerWin32ReleaseExecutable - Installs a development image of executable 'webSocketServer:win32:release:executable'
+installWebSocketServerWin64DebugExecutable - Installs a development image of executable 'webSocketServer:win64:debug:executable'
+installWebSocketServerWin64ReleaseExecutable - Installs a development image of executable 'webSocketServer:win64:release:executable'
+installXMLTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'xMLTestSuite:linux32:debug:cppUnitExe'
+installXMLTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'xMLTestSuite:linux32:release:cppUnitExe'
+installXMLTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'xMLTestSuite:linux64:debug:cppUnitExe'
+installXMLTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'xMLTestSuite:linux64:release:cppUnitExe'
+installXMLTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'xMLTestSuite:macos:debug:cppUnitExe'
+installXMLTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'xMLTestSuite:macos:release:cppUnitExe'
+installXMLTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'xMLTestSuite:win32:debug:cppUnitExe'
+installXMLTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'xMLTestSuite:win32:release:cppUnitExe'
+installXMLTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'xMLTestSuite:win64:debug:cppUnitExe'
+installXMLTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'xMLTestSuite:win64:release:cppUnitExe'
+installZipLinux32DebugExecutable - Installs a development image of executable 'zip:linux32:debug:executable'
+installZipLinux32ReleaseExecutable - Installs a development image of executable 'zip:linux32:release:executable'
+installZipLinux64DebugExecutable - Installs a development image of executable 'zip:linux64:debug:executable'
+installZipLinux64ReleaseExecutable - Installs a development image of executable 'zip:linux64:release:executable'
+installZipMacosDebugExecutable - Installs a development image of executable 'zip:macos:debug:executable'
+installZipMacosReleaseExecutable - Installs a development image of executable 'zip:macos:release:executable'
+installZipTestSuiteLinux32DebugCppUnitExe - Installs a development image of cpp unit exe 'zipTestSuite:linux32:debug:cppUnitExe'
+installZipTestSuiteLinux32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'zipTestSuite:linux32:release:cppUnitExe'
+installZipTestSuiteLinux64DebugCppUnitExe - Installs a development image of cpp unit exe 'zipTestSuite:linux64:debug:cppUnitExe'
+installZipTestSuiteLinux64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'zipTestSuite:linux64:release:cppUnitExe'
+installZipTestSuiteMacosDebugCppUnitExe - Installs a development image of cpp unit exe 'zipTestSuite:macos:debug:cppUnitExe'
+installZipTestSuiteMacosReleaseCppUnitExe - Installs a development image of cpp unit exe 'zipTestSuite:macos:release:cppUnitExe'
+installZipTestSuiteWin32DebugCppUnitExe - Installs a development image of cpp unit exe 'zipTestSuite:win32:debug:cppUnitExe'
+installZipTestSuiteWin32ReleaseCppUnitExe - Installs a development image of cpp unit exe 'zipTestSuite:win32:release:cppUnitExe'
+installZipTestSuiteWin64DebugCppUnitExe - Installs a development image of cpp unit exe 'zipTestSuite:win64:debug:cppUnitExe'
+installZipTestSuiteWin64ReleaseCppUnitExe - Installs a development image of cpp unit exe 'zipTestSuite:win64:release:cppUnitExe'
+installZipWin32DebugExecutable - Installs a development image of executable 'zip:win32:debug:executable'
+installZipWin32ReleaseExecutable - Installs a development image of executable 'zip:win32:release:executable'
+installZipWin64DebugExecutable - Installs a development image of executable 'zip:win64:debug:executable'
+installZipWin64ReleaseExecutable - Installs a development image of executable 'zip:win64:release:executable'
+JSONLinux32DebugSharedLibrary - Assembles shared library 'jSON:linux32:debug:sharedLibrary'.
+JSONLinux32DebugStaticLibrary - Assembles static library 'jSON:linux32:debug:staticLibrary'.
+JSONLinux32ReleaseSharedLibrary - Assembles shared library 'jSON:linux32:release:sharedLibrary'.
+JSONLinux32ReleaseStaticLibrary - Assembles static library 'jSON:linux32:release:staticLibrary'.
+JSONLinux64DebugSharedLibrary - Assembles shared library 'jSON:linux64:debug:sharedLibrary'.
+JSONLinux64DebugStaticLibrary - Assembles static library 'jSON:linux64:debug:staticLibrary'.
+JSONLinux64ReleaseSharedLibrary - Assembles shared library 'jSON:linux64:release:sharedLibrary'.
+JSONLinux64ReleaseStaticLibrary - Assembles static library 'jSON:linux64:release:staticLibrary'.
+JSONMacosDebugSharedLibrary - Assembles shared library 'jSON:macos:debug:sharedLibrary'.
+JSONMacosDebugStaticLibrary - Assembles static library 'jSON:macos:debug:staticLibrary'.
+JSONMacosReleaseSharedLibrary - Assembles shared library 'jSON:macos:release:sharedLibrary'.
+JSONMacosReleaseStaticLibrary - Assembles static library 'jSON:macos:release:staticLibrary'.
+JSONTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'jSONTestSuite:linux32:debug:cppUnitExe'.
+JSONTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'jSONTestSuite:linux32:release:cppUnitExe'.
+JSONTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'jSONTestSuite:linux64:debug:cppUnitExe'.
+JSONTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'jSONTestSuite:linux64:release:cppUnitExe'.
+JSONTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'jSONTestSuite:macos:debug:cppUnitExe'.
+JSONTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'jSONTestSuite:macos:release:cppUnitExe'.
+JSONTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'jSONTestSuite:win32:debug:cppUnitExe'.
+JSONTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'jSONTestSuite:win32:release:cppUnitExe'.
+JSONTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'jSONTestSuite:win64:debug:cppUnitExe'.
+JSONTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'jSONTestSuite:win64:release:cppUnitExe'.
+JSONWin32DebugSemiStaticLibrary - Assembles semi static library 'jSON:win32:debug:semiStaticLibrary'.
+JSONWin32DebugSharedLibrary - Assembles shared library 'jSON:win32:debug:sharedLibrary'.
+JSONWin32DebugStaticLibrary - Assembles static library 'jSON:win32:debug:staticLibrary'.
+JSONWin32ReleaseSemiStaticLibrary - Assembles semi static library 'jSON:win32:release:semiStaticLibrary'.
+JSONWin32ReleaseSharedLibrary - Assembles shared library 'jSON:win32:release:sharedLibrary'.
+JSONWin32ReleaseStaticLibrary - Assembles static library 'jSON:win32:release:staticLibrary'.
+JSONWin64DebugSemiStaticLibrary - Assembles semi static library 'jSON:win64:debug:semiStaticLibrary'.
+JSONWin64DebugSharedLibrary - Assembles shared library 'jSON:win64:debug:sharedLibrary'.
+JSONWin64DebugStaticLibrary - Assembles static library 'jSON:win64:debug:staticLibrary'.
+JSONWin64ReleaseSemiStaticLibrary - Assembles semi static library 'jSON:win64:release:semiStaticLibrary'.
+JSONWin64ReleaseSharedLibrary - Assembles shared library 'jSON:win64:release:sharedLibrary'.
+JSONWin64ReleaseStaticLibrary - Assembles static library 'jSON:win64:release:staticLibrary'.
+LineEndingConverterLinux32DebugExecutable - Assembles executable 'lineEndingConverter:linux32:debug:executable'.
+LineEndingConverterLinux32ReleaseExecutable - Assembles executable 'lineEndingConverter:linux32:release:executable'.
+LineEndingConverterLinux64DebugExecutable - Assembles executable 'lineEndingConverter:linux64:debug:executable'.
+LineEndingConverterLinux64ReleaseExecutable - Assembles executable 'lineEndingConverter:linux64:release:executable'.
+LineEndingConverterMacosDebugExecutable - Assembles executable 'lineEndingConverter:macos:debug:executable'.
+LineEndingConverterMacosReleaseExecutable - Assembles executable 'lineEndingConverter:macos:release:executable'.
+LineEndingConverterWin32DebugExecutable - Assembles executable 'lineEndingConverter:win32:debug:executable'.
+LineEndingConverterWin32ReleaseExecutable - Assembles executable 'lineEndingConverter:win32:release:executable'.
+LineEndingConverterWin64DebugExecutable - Assembles executable 'lineEndingConverter:win64:debug:executable'.
+LineEndingConverterWin64ReleaseExecutable - Assembles executable 'lineEndingConverter:win64:release:executable'.
+LoggerLinux32DebugExecutable - Assembles executable 'logger:linux32:debug:executable'.
+LoggerLinux32ReleaseExecutable - Assembles executable 'logger:linux32:release:executable'.
+LoggerLinux64DebugExecutable - Assembles executable 'logger:linux64:debug:executable'.
+LoggerLinux64ReleaseExecutable - Assembles executable 'logger:linux64:release:executable'.
+LoggerMacosDebugExecutable - Assembles executable 'logger:macos:debug:executable'.
+LoggerMacosReleaseExecutable - Assembles executable 'logger:macos:release:executable'.
+LoggerWin32DebugExecutable - Assembles executable 'logger:win32:debug:executable'.
+LoggerWin32ReleaseExecutable - Assembles executable 'logger:win32:release:executable'.
+LoggerWin64DebugExecutable - Assembles executable 'logger:win64:debug:executable'.
+LoggerWin64ReleaseExecutable - Assembles executable 'logger:win64:release:executable'.
+LogRotationLinux32DebugExecutable - Assembles executable 'logRotation:linux32:debug:executable'.
+LogRotationLinux32ReleaseExecutable - Assembles executable 'logRotation:linux32:release:executable'.
+LogRotationLinux64DebugExecutable - Assembles executable 'logRotation:linux64:debug:executable'.
+LogRotationLinux64ReleaseExecutable - Assembles executable 'logRotation:linux64:release:executable'.
+LogRotationMacosDebugExecutable - Assembles executable 'logRotation:macos:debug:executable'.
+LogRotationMacosReleaseExecutable - Assembles executable 'logRotation:macos:release:executable'.
+LogRotationWin32DebugExecutable - Assembles executable 'logRotation:win32:debug:executable'.
+LogRotationWin32ReleaseExecutable - Assembles executable 'logRotation:win32:release:executable'.
+LogRotationWin64DebugExecutable - Assembles executable 'logRotation:win64:debug:executable'.
+LogRotationWin64ReleaseExecutable - Assembles executable 'logRotation:win64:release:executable'.
+MailLinux32DebugExecutable - Assembles executable 'mail:linux32:debug:executable'.
+MailLinux32ReleaseExecutable - Assembles executable 'mail:linux32:release:executable'.
+MailLinux64DebugExecutable - Assembles executable 'mail:linux64:debug:executable'.
+MailLinux64ReleaseExecutable - Assembles executable 'mail:linux64:release:executable'.
+MailMacosDebugExecutable - Assembles executable 'mail:macos:debug:executable'.
+MailMacosReleaseExecutable - Assembles executable 'mail:macos:release:executable'.
+MailWin32DebugExecutable - Assembles executable 'mail:win32:debug:executable'.
+MailWin32ReleaseExecutable - Assembles executable 'mail:win32:release:executable'.
+MailWin64DebugExecutable - Assembles executable 'mail:win64:debug:executable'.
+MailWin64ReleaseExecutable - Assembles executable 'mail:win64:release:executable'.
+md5Linux32DebugExecutable - Assembles executable 'md5:linux32:debug:executable'.
+md5Linux32ReleaseExecutable - Assembles executable 'md5:linux32:release:executable'.
+md5Linux64DebugExecutable - Assembles executable 'md5:linux64:debug:executable'.
+md5Linux64ReleaseExecutable - Assembles executable 'md5:linux64:release:executable'.
+md5MacosDebugExecutable - Assembles executable 'md5:macos:debug:executable'.
+md5MacosReleaseExecutable - Assembles executable 'md5:macos:release:executable'.
+md5Win32DebugExecutable - Assembles executable 'md5:win32:debug:executable'.
+md5Win32ReleaseExecutable - Assembles executable 'md5:win32:release:executable'.
+md5Win64DebugExecutable - Assembles executable 'md5:win64:debug:executable'.
+md5Win64ReleaseExecutable - Assembles executable 'md5:win64:release:executable'.
+MongoDBLinux32DebugSharedLibrary - Assembles shared library 'mongoDB:linux32:debug:sharedLibrary'.
+MongoDBLinux32DebugStaticLibrary - Assembles static library 'mongoDB:linux32:debug:staticLibrary'.
+MongoDBLinux32ReleaseSharedLibrary - Assembles shared library 'mongoDB:linux32:release:sharedLibrary'.
+MongoDBLinux32ReleaseStaticLibrary - Assembles static library 'mongoDB:linux32:release:staticLibrary'.
+MongoDBLinux64DebugSharedLibrary - Assembles shared library 'mongoDB:linux64:debug:sharedLibrary'.
+MongoDBLinux64DebugStaticLibrary - Assembles static library 'mongoDB:linux64:debug:staticLibrary'.
+MongoDBLinux64ReleaseSharedLibrary - Assembles shared library 'mongoDB:linux64:release:sharedLibrary'.
+MongoDBLinux64ReleaseStaticLibrary - Assembles static library 'mongoDB:linux64:release:staticLibrary'.
+MongoDBMacosDebugSharedLibrary - Assembles shared library 'mongoDB:macos:debug:sharedLibrary'.
+MongoDBMacosDebugStaticLibrary - Assembles static library 'mongoDB:macos:debug:staticLibrary'.
+MongoDBMacosReleaseSharedLibrary - Assembles shared library 'mongoDB:macos:release:sharedLibrary'.
+MongoDBMacosReleaseStaticLibrary - Assembles static library 'mongoDB:macos:release:staticLibrary'.
+MongoDBTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'mongoDBTestSuite:linux32:debug:cppUnitExe'.
+MongoDBTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'mongoDBTestSuite:linux32:release:cppUnitExe'.
+MongoDBTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'mongoDBTestSuite:linux64:debug:cppUnitExe'.
+MongoDBTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'mongoDBTestSuite:linux64:release:cppUnitExe'.
+MongoDBTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'mongoDBTestSuite:macos:debug:cppUnitExe'.
+MongoDBTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'mongoDBTestSuite:macos:release:cppUnitExe'.
+MongoDBTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'mongoDBTestSuite:win32:debug:cppUnitExe'.
+MongoDBTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'mongoDBTestSuite:win32:release:cppUnitExe'.
+MongoDBTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'mongoDBTestSuite:win64:debug:cppUnitExe'.
+MongoDBTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'mongoDBTestSuite:win64:release:cppUnitExe'.
+MongoDBWin32DebugSemiStaticLibrary - Assembles semi static library 'mongoDB:win32:debug:semiStaticLibrary'.
+MongoDBWin32DebugSharedLibrary - Assembles shared library 'mongoDB:win32:debug:sharedLibrary'.
+MongoDBWin32DebugStaticLibrary - Assembles static library 'mongoDB:win32:debug:staticLibrary'.
+MongoDBWin32ReleaseSemiStaticLibrary - Assembles semi static library 'mongoDB:win32:release:semiStaticLibrary'.
+MongoDBWin32ReleaseSharedLibrary - Assembles shared library 'mongoDB:win32:release:sharedLibrary'.
+MongoDBWin32ReleaseStaticLibrary - Assembles static library 'mongoDB:win32:release:staticLibrary'.
+MongoDBWin64DebugSemiStaticLibrary - Assembles semi static library 'mongoDB:win64:debug:semiStaticLibrary'.
+MongoDBWin64DebugSharedLibrary - Assembles shared library 'mongoDB:win64:debug:sharedLibrary'.
+MongoDBWin64DebugStaticLibrary - Assembles static library 'mongoDB:win64:debug:staticLibrary'.
+MongoDBWin64ReleaseSemiStaticLibrary - Assembles semi static library 'mongoDB:win64:release:semiStaticLibrary'.
+MongoDBWin64ReleaseSharedLibrary - Assembles shared library 'mongoDB:win64:release:sharedLibrary'.
+MongoDBWin64ReleaseStaticLibrary - Assembles static library 'mongoDB:win64:release:staticLibrary'.
+MySQLTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'mySQLTestSuite:linux32:debug:cppUnitExe'.
+MySQLTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'mySQLTestSuite:linux32:release:cppUnitExe'.
+MySQLTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'mySQLTestSuite:linux64:debug:cppUnitExe'.
+MySQLTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'mySQLTestSuite:linux64:release:cppUnitExe'.
+MySQLTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'mySQLTestSuite:macos:debug:cppUnitExe'.
+MySQLTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'mySQLTestSuite:macos:release:cppUnitExe'.
+MySQLTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'mySQLTestSuite:win32:debug:cppUnitExe'.
+MySQLTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'mySQLTestSuite:win32:release:cppUnitExe'.
+MySQLTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'mySQLTestSuite:win64:debug:cppUnitExe'.
+MySQLTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'mySQLTestSuite:win64:release:cppUnitExe'.
+NetLinux32DebugSharedLibrary - Assembles shared library 'net:linux32:debug:sharedLibrary'.
+NetLinux32DebugStaticLibrary - Assembles static library 'net:linux32:debug:staticLibrary'.
+NetLinux32ReleaseSharedLibrary - Assembles shared library 'net:linux32:release:sharedLibrary'.
+NetLinux32ReleaseStaticLibrary - Assembles static library 'net:linux32:release:staticLibrary'.
+NetLinux64DebugSharedLibrary - Assembles shared library 'net:linux64:debug:sharedLibrary'.
+NetLinux64DebugStaticLibrary - Assembles static library 'net:linux64:debug:staticLibrary'.
+NetLinux64ReleaseSharedLibrary - Assembles shared library 'net:linux64:release:sharedLibrary'.
+NetLinux64ReleaseStaticLibrary - Assembles static library 'net:linux64:release:staticLibrary'.
+NetMacosDebugSharedLibrary - Assembles shared library 'net:macos:debug:sharedLibrary'.
+NetMacosDebugStaticLibrary - Assembles static library 'net:macos:debug:staticLibrary'.
+NetMacosReleaseSharedLibrary - Assembles shared library 'net:macos:release:sharedLibrary'.
+NetMacosReleaseStaticLibrary - Assembles static library 'net:macos:release:staticLibrary'.
+NetSSLLinux32DebugSharedLibrary - Assembles shared library 'netSSL:linux32:debug:sharedLibrary'.
+NetSSLLinux32DebugStaticLibrary - Assembles static library 'netSSL:linux32:debug:staticLibrary'.
+NetSSLLinux32ReleaseSharedLibrary - Assembles shared library 'netSSL:linux32:release:sharedLibrary'.
+NetSSLLinux32ReleaseStaticLibrary - Assembles static library 'netSSL:linux32:release:staticLibrary'.
+NetSSLLinux64DebugSharedLibrary - Assembles shared library 'netSSL:linux64:debug:sharedLibrary'.
+NetSSLLinux64DebugStaticLibrary - Assembles static library 'netSSL:linux64:debug:staticLibrary'.
+NetSSLLinux64ReleaseSharedLibrary - Assembles shared library 'netSSL:linux64:release:sharedLibrary'.
+NetSSLLinux64ReleaseStaticLibrary - Assembles static library 'netSSL:linux64:release:staticLibrary'.
+NetSSLMacosDebugSharedLibrary - Assembles shared library 'netSSL:macos:debug:sharedLibrary'.
+NetSSLMacosDebugStaticLibrary - Assembles static library 'netSSL:macos:debug:staticLibrary'.
+NetSSLMacosReleaseSharedLibrary - Assembles shared library 'netSSL:macos:release:sharedLibrary'.
+NetSSLMacosReleaseStaticLibrary - Assembles static library 'netSSL:macos:release:staticLibrary'.
+NetSSLTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'netSSLTestSuite:linux32:debug:cppUnitExe'.
+NetSSLTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'netSSLTestSuite:linux32:release:cppUnitExe'.
+NetSSLTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'netSSLTestSuite:linux64:debug:cppUnitExe'.
+NetSSLTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'netSSLTestSuite:linux64:release:cppUnitExe'.
+NetSSLTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'netSSLTestSuite:macos:debug:cppUnitExe'.
+NetSSLTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'netSSLTestSuite:macos:release:cppUnitExe'.
+NetSSLTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'netSSLTestSuite:win32:debug:cppUnitExe'.
+NetSSLTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'netSSLTestSuite:win32:release:cppUnitExe'.
+NetSSLTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'netSSLTestSuite:win64:debug:cppUnitExe'.
+NetSSLTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'netSSLTestSuite:win64:release:cppUnitExe'.
+NetSSLWin32DebugSemiStaticLibrary - Assembles semi static library 'netSSL:win32:debug:semiStaticLibrary'.
+NetSSLWin32DebugSharedLibrary - Assembles shared library 'netSSL:win32:debug:sharedLibrary'.
+NetSSLWin32DebugStaticLibrary - Assembles static library 'netSSL:win32:debug:staticLibrary'.
+NetSSLWin32ReleaseSemiStaticLibrary - Assembles semi static library 'netSSL:win32:release:semiStaticLibrary'.
+NetSSLWin32ReleaseSharedLibrary - Assembles shared library 'netSSL:win32:release:sharedLibrary'.
+NetSSLWin32ReleaseStaticLibrary - Assembles static library 'netSSL:win32:release:staticLibrary'.
+NetSSLWin64DebugSemiStaticLibrary - Assembles semi static library 'netSSL:win64:debug:semiStaticLibrary'.
+NetSSLWin64DebugSharedLibrary - Assembles shared library 'netSSL:win64:debug:sharedLibrary'.
+NetSSLWin64DebugStaticLibrary - Assembles static library 'netSSL:win64:debug:staticLibrary'.
+NetSSLWin64ReleaseSemiStaticLibrary - Assembles semi static library 'netSSL:win64:release:semiStaticLibrary'.
+NetSSLWin64ReleaseSharedLibrary - Assembles shared library 'netSSL:win64:release:sharedLibrary'.
+NetSSLWin64ReleaseStaticLibrary - Assembles static library 'netSSL:win64:release:staticLibrary'.
+NetSSLWinLinux32DebugSharedLibrary - Assembles shared library 'netSSLWin:linux32:debug:sharedLibrary'.
+NetSSLWinLinux32DebugStaticLibrary - Assembles static library 'netSSLWin:linux32:debug:staticLibrary'.
+NetSSLWinLinux32ReleaseSharedLibrary - Assembles shared library 'netSSLWin:linux32:release:sharedLibrary'.
+NetSSLWinLinux32ReleaseStaticLibrary - Assembles static library 'netSSLWin:linux32:release:staticLibrary'.
+NetSSLWinLinux64DebugSharedLibrary - Assembles shared library 'netSSLWin:linux64:debug:sharedLibrary'.
+NetSSLWinLinux64DebugStaticLibrary - Assembles static library 'netSSLWin:linux64:debug:staticLibrary'.
+NetSSLWinLinux64ReleaseSharedLibrary - Assembles shared library 'netSSLWin:linux64:release:sharedLibrary'.
+NetSSLWinLinux64ReleaseStaticLibrary - Assembles static library 'netSSLWin:linux64:release:staticLibrary'.
+NetSSLWinMacosDebugSharedLibrary - Assembles shared library 'netSSLWin:macos:debug:sharedLibrary'.
+NetSSLWinMacosDebugStaticLibrary - Assembles static library 'netSSLWin:macos:debug:staticLibrary'.
+NetSSLWinMacosReleaseSharedLibrary - Assembles shared library 'netSSLWin:macos:release:sharedLibrary'.
+NetSSLWinMacosReleaseStaticLibrary - Assembles static library 'netSSLWin:macos:release:staticLibrary'.
+NetSSLWinWin32DebugSemiStaticLibrary - Assembles semi static library 'netSSLWin:win32:debug:semiStaticLibrary'.
+NetSSLWinWin32DebugSharedLibrary - Assembles shared library 'netSSLWin:win32:debug:sharedLibrary'.
+NetSSLWinWin32DebugStaticLibrary - Assembles static library 'netSSLWin:win32:debug:staticLibrary'.
+NetSSLWinWin32ReleaseSemiStaticLibrary - Assembles semi static library 'netSSLWin:win32:release:semiStaticLibrary'.
+NetSSLWinWin32ReleaseSharedLibrary - Assembles shared library 'netSSLWin:win32:release:sharedLibrary'.
+NetSSLWinWin32ReleaseStaticLibrary - Assembles static library 'netSSLWin:win32:release:staticLibrary'.
+NetSSLWinWin64DebugSemiStaticLibrary - Assembles semi static library 'netSSLWin:win64:debug:semiStaticLibrary'.
+NetSSLWinWin64DebugSharedLibrary - Assembles shared library 'netSSLWin:win64:debug:sharedLibrary'.
+NetSSLWinWin64DebugStaticLibrary - Assembles static library 'netSSLWin:win64:debug:staticLibrary'.
+NetSSLWinWin64ReleaseSemiStaticLibrary - Assembles semi static library 'netSSLWin:win64:release:semiStaticLibrary'.
+NetSSLWinWin64ReleaseSharedLibrary - Assembles shared library 'netSSLWin:win64:release:sharedLibrary'.
+NetSSLWinWin64ReleaseStaticLibrary - Assembles static library 'netSSLWin:win64:release:staticLibrary'.
+NetTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'netTestSuite:linux32:debug:cppUnitExe'.
+NetTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'netTestSuite:linux32:release:cppUnitExe'.
+NetTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'netTestSuite:linux64:debug:cppUnitExe'.
+NetTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'netTestSuite:linux64:release:cppUnitExe'.
+NetTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'netTestSuite:macos:debug:cppUnitExe'.
+NetTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'netTestSuite:macos:release:cppUnitExe'.
+NetTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'netTestSuite:win32:debug:cppUnitExe'.
+NetTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'netTestSuite:win32:release:cppUnitExe'.
+NetTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'netTestSuite:win64:debug:cppUnitExe'.
+NetTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'netTestSuite:win64:release:cppUnitExe'.
+NetWin32DebugSemiStaticLibrary - Assembles semi static library 'net:win32:debug:semiStaticLibrary'.
+NetWin32DebugSharedLibrary - Assembles shared library 'net:win32:debug:sharedLibrary'.
+NetWin32DebugStaticLibrary - Assembles static library 'net:win32:debug:staticLibrary'.
+NetWin32ReleaseSemiStaticLibrary - Assembles semi static library 'net:win32:release:semiStaticLibrary'.
+NetWin32ReleaseSharedLibrary - Assembles shared library 'net:win32:release:sharedLibrary'.
+NetWin32ReleaseStaticLibrary - Assembles static library 'net:win32:release:staticLibrary'.
+NetWin64DebugSemiStaticLibrary - Assembles semi static library 'net:win64:debug:semiStaticLibrary'.
+NetWin64DebugSharedLibrary - Assembles shared library 'net:win64:debug:sharedLibrary'.
+NetWin64DebugStaticLibrary - Assembles static library 'net:win64:debug:staticLibrary'.
+NetWin64ReleaseSemiStaticLibrary - Assembles semi static library 'net:win64:release:semiStaticLibrary'.
+NetWin64ReleaseSharedLibrary - Assembles shared library 'net:win64:release:sharedLibrary'.
+NetWin64ReleaseStaticLibrary - Assembles static library 'net:win64:release:staticLibrary'.
+NotificationQueueLinux32DebugExecutable - Assembles executable 'notificationQueue:linux32:debug:executable'.
+NotificationQueueLinux32ReleaseExecutable - Assembles executable 'notificationQueue:linux32:release:executable'.
+NotificationQueueLinux64DebugExecutable - Assembles executable 'notificationQueue:linux64:debug:executable'.
+NotificationQueueLinux64ReleaseExecutable - Assembles executable 'notificationQueue:linux64:release:executable'.
+NotificationQueueMacosDebugExecutable - Assembles executable 'notificationQueue:macos:debug:executable'.
+NotificationQueueMacosReleaseExecutable - Assembles executable 'notificationQueue:macos:release:executable'.
+NotificationQueueWin32DebugExecutable - Assembles executable 'notificationQueue:win32:debug:executable'.
+NotificationQueueWin32ReleaseExecutable - Assembles executable 'notificationQueue:win32:release:executable'.
+NotificationQueueWin64DebugExecutable - Assembles executable 'notificationQueue:win64:debug:executable'.
+NotificationQueueWin64ReleaseExecutable - Assembles executable 'notificationQueue:win64:release:executable'.
+nugetPack - Creates the NuGet package with the configured spec file.
+nugetRestore - Restores the configured config file or solution directory.
+nugetSpec - Generates the NuGet spec file.
+ODBCTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'oDBCTestSuite:linux32:debug:cppUnitExe'.
+ODBCTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'oDBCTestSuite:linux32:release:cppUnitExe'.
+ODBCTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'oDBCTestSuite:linux64:debug:cppUnitExe'.
+ODBCTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'oDBCTestSuite:linux64:release:cppUnitExe'.
+ODBCTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'oDBCTestSuite:macos:debug:cppUnitExe'.
+ODBCTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'oDBCTestSuite:macos:release:cppUnitExe'.
+ODBCTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'oDBCTestSuite:win32:debug:cppUnitExe'.
+ODBCTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'oDBCTestSuite:win32:release:cppUnitExe'.
+ODBCTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'oDBCTestSuite:win64:debug:cppUnitExe'.
+ODBCTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'oDBCTestSuite:win64:release:cppUnitExe'.
+PDFLinux32DebugSharedLibrary - Assembles shared library 'pDF:linux32:debug:sharedLibrary'.
+PDFLinux32DebugStaticLibrary - Assembles static library 'pDF:linux32:debug:staticLibrary'.
+PDFLinux32ReleaseSharedLibrary - Assembles shared library 'pDF:linux32:release:sharedLibrary'.
+PDFLinux32ReleaseStaticLibrary - Assembles static library 'pDF:linux32:release:staticLibrary'.
+PDFLinux64DebugSharedLibrary - Assembles shared library 'pDF:linux64:debug:sharedLibrary'.
+PDFLinux64DebugStaticLibrary - Assembles static library 'pDF:linux64:debug:staticLibrary'.
+PDFLinux64ReleaseSharedLibrary - Assembles shared library 'pDF:linux64:release:sharedLibrary'.
+PDFLinux64ReleaseStaticLibrary - Assembles static library 'pDF:linux64:release:staticLibrary'.
+PDFMacosDebugSharedLibrary - Assembles shared library 'pDF:macos:debug:sharedLibrary'.
+PDFMacosDebugStaticLibrary - Assembles static library 'pDF:macos:debug:staticLibrary'.
+PDFMacosReleaseSharedLibrary - Assembles shared library 'pDF:macos:release:sharedLibrary'.
+PDFMacosReleaseStaticLibrary - Assembles static library 'pDF:macos:release:staticLibrary'.
+PDFWin32DebugSemiStaticLibrary - Assembles semi static library 'pDF:win32:debug:semiStaticLibrary'.
+PDFWin32DebugSharedLibrary - Assembles shared library 'pDF:win32:debug:sharedLibrary'.
+PDFWin32DebugStaticLibrary - Assembles static library 'pDF:win32:debug:staticLibrary'.
+PDFWin32ReleaseSemiStaticLibrary - Assembles semi static library 'pDF:win32:release:semiStaticLibrary'.
+PDFWin32ReleaseSharedLibrary - Assembles shared library 'pDF:win32:release:sharedLibrary'.
+PDFWin32ReleaseStaticLibrary - Assembles static library 'pDF:win32:release:staticLibrary'.
+PDFWin64DebugSemiStaticLibrary - Assembles semi static library 'pDF:win64:debug:semiStaticLibrary'.
+PDFWin64DebugSharedLibrary - Assembles shared library 'pDF:win64:debug:sharedLibrary'.
+PDFWin64DebugStaticLibrary - Assembles static library 'pDF:win64:debug:staticLibrary'.
+PDFWin64ReleaseSemiStaticLibrary - Assembles semi static library 'pDF:win64:release:semiStaticLibrary'.
+PDFWin64ReleaseSharedLibrary - Assembles shared library 'pDF:win64:release:sharedLibrary'.
+PDFWin64ReleaseStaticLibrary - Assembles static library 'pDF:win64:release:staticLibrary'.
+PingLinux32DebugExecutable - Assembles executable 'ping:linux32:debug:executable'.
+PingLinux32ReleaseExecutable - Assembles executable 'ping:linux32:release:executable'.
+PingLinux64DebugExecutable - Assembles executable 'ping:linux64:debug:executable'.
+PingLinux64ReleaseExecutable - Assembles executable 'ping:linux64:release:executable'.
+PingMacosDebugExecutable - Assembles executable 'ping:macos:debug:executable'.
+PingMacosReleaseExecutable - Assembles executable 'ping:macos:release:executable'.
+PingWin32DebugExecutable - Assembles executable 'ping:win32:debug:executable'.
+PingWin32ReleaseExecutable - Assembles executable 'ping:win32:release:executable'.
+PingWin64DebugExecutable - Assembles executable 'ping:win64:debug:executable'.
+PingWin64ReleaseExecutable - Assembles executable 'ping:win64:release:executable'.
+pkillLinux32DebugExecutable - Assembles executable 'pkill:linux32:debug:executable'.
+pkillLinux32ReleaseExecutable - Assembles executable 'pkill:linux32:release:executable'.
+pkillLinux64DebugExecutable - Assembles executable 'pkill:linux64:debug:executable'.
+pkillLinux64ReleaseExecutable - Assembles executable 'pkill:linux64:release:executable'.
+pkillMacosDebugExecutable - Assembles executable 'pkill:macos:debug:executable'.
+pkillMacosReleaseExecutable - Assembles executable 'pkill:macos:release:executable'.
+pkillWin32DebugExecutable - Assembles executable 'pkill:win32:debug:executable'.
+pkillWin32ReleaseExecutable - Assembles executable 'pkill:win32:release:executable'.
+pkillWin64DebugExecutable - Assembles executable 'pkill:win64:debug:executable'.
+pkillWin64ReleaseExecutable - Assembles executable 'pkill:win64:release:executable'.
+PostgreSQLTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'postgreSQLTestSuite:linux32:debug:cppUnitExe'.
+PostgreSQLTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'postgreSQLTestSuite:linux32:release:cppUnitExe'.
+PostgreSQLTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'postgreSQLTestSuite:linux64:debug:cppUnitExe'.
+PostgreSQLTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'postgreSQLTestSuite:linux64:release:cppUnitExe'.
+PostgreSQLTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'postgreSQLTestSuite:macos:debug:cppUnitExe'.
+PostgreSQLTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'postgreSQLTestSuite:macos:release:cppUnitExe'.
+PostgreSQLTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'postgreSQLTestSuite:win32:debug:cppUnitExe'.
+PostgreSQLTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'postgreSQLTestSuite:win32:release:cppUnitExe'.
+PostgreSQLTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'postgreSQLTestSuite:win64:debug:cppUnitExe'.
+PostgreSQLTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'postgreSQLTestSuite:win64:release:cppUnitExe'.
+PrettyPrintLinux32DebugExecutable - Assembles executable 'prettyPrint:linux32:debug:executable'.
+PrettyPrintLinux32ReleaseExecutable - Assembles executable 'prettyPrint:linux32:release:executable'.
+PrettyPrintLinux64DebugExecutable - Assembles executable 'prettyPrint:linux64:debug:executable'.
+PrettyPrintLinux64ReleaseExecutable - Assembles executable 'prettyPrint:linux64:release:executable'.
+PrettyPrintMacosDebugExecutable - Assembles executable 'prettyPrint:macos:debug:executable'.
+PrettyPrintMacosReleaseExecutable - Assembles executable 'prettyPrint:macos:release:executable'.
+PrettyPrintWin32DebugExecutable - Assembles executable 'prettyPrint:win32:debug:executable'.
+PrettyPrintWin32ReleaseExecutable - Assembles executable 'prettyPrint:win32:release:executable'.
+PrettyPrintWin64DebugExecutable - Assembles executable 'prettyPrint:win64:debug:executable'.
+PrettyPrintWin64ReleaseExecutable - Assembles executable 'prettyPrint:win64:release:executable'.
+RecordSetLinux32DebugExecutable - Assembles executable 'recordSet:linux32:debug:executable'.
+RecordSetLinux32ReleaseExecutable - Assembles executable 'recordSet:linux32:release:executable'.
+RecordSetLinux64DebugExecutable - Assembles executable 'recordSet:linux64:debug:executable'.
+RecordSetLinux64ReleaseExecutable - Assembles executable 'recordSet:linux64:release:executable'.
+RecordSetMacosDebugExecutable - Assembles executable 'recordSet:macos:debug:executable'.
+RecordSetMacosReleaseExecutable - Assembles executable 'recordSet:macos:release:executable'.
+RecordSetWin32DebugExecutable - Assembles executable 'recordSet:win32:debug:executable'.
+RecordSetWin32ReleaseExecutable - Assembles executable 'recordSet:win32:release:executable'.
+RecordSetWin64DebugExecutable - Assembles executable 'recordSet:win64:debug:executable'.
+RecordSetWin64ReleaseExecutable - Assembles executable 'recordSet:win64:release:executable'.
+RedisLinux32DebugSharedLibrary - Assembles shared library 'redis:linux32:debug:sharedLibrary'.
+RedisLinux32DebugStaticLibrary - Assembles static library 'redis:linux32:debug:staticLibrary'.
+RedisLinux32ReleaseSharedLibrary - Assembles shared library 'redis:linux32:release:sharedLibrary'.
+RedisLinux32ReleaseStaticLibrary - Assembles static library 'redis:linux32:release:staticLibrary'.
+RedisLinux64DebugSharedLibrary - Assembles shared library 'redis:linux64:debug:sharedLibrary'.
+RedisLinux64DebugStaticLibrary - Assembles static library 'redis:linux64:debug:staticLibrary'.
+RedisLinux64ReleaseSharedLibrary - Assembles shared library 'redis:linux64:release:sharedLibrary'.
+RedisLinux64ReleaseStaticLibrary - Assembles static library 'redis:linux64:release:staticLibrary'.
+RedisMacosDebugSharedLibrary - Assembles shared library 'redis:macos:debug:sharedLibrary'.
+RedisMacosDebugStaticLibrary - Assembles static library 'redis:macos:debug:staticLibrary'.
+RedisMacosReleaseSharedLibrary - Assembles shared library 'redis:macos:release:sharedLibrary'.
+RedisMacosReleaseStaticLibrary - Assembles static library 'redis:macos:release:staticLibrary'.
+RedisTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'redisTestSuite:linux32:debug:cppUnitExe'.
+RedisTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'redisTestSuite:linux32:release:cppUnitExe'.
+RedisTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'redisTestSuite:linux64:debug:cppUnitExe'.
+RedisTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'redisTestSuite:linux64:release:cppUnitExe'.
+RedisTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'redisTestSuite:macos:debug:cppUnitExe'.
+RedisTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'redisTestSuite:macos:release:cppUnitExe'.
+RedisTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'redisTestSuite:win32:debug:cppUnitExe'.
+RedisTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'redisTestSuite:win32:release:cppUnitExe'.
+RedisTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'redisTestSuite:win64:debug:cppUnitExe'.
+RedisTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'redisTestSuite:win64:release:cppUnitExe'.
+RedisWin32DebugSemiStaticLibrary - Assembles semi static library 'redis:win32:debug:semiStaticLibrary'.
+RedisWin32DebugSharedLibrary - Assembles shared library 'redis:win32:debug:sharedLibrary'.
+RedisWin32DebugStaticLibrary - Assembles static library 'redis:win32:debug:staticLibrary'.
+RedisWin32ReleaseSemiStaticLibrary - Assembles semi static library 'redis:win32:release:semiStaticLibrary'.
+RedisWin32ReleaseSharedLibrary - Assembles shared library 'redis:win32:release:sharedLibrary'.
+RedisWin32ReleaseStaticLibrary - Assembles static library 'redis:win32:release:staticLibrary'.
+RedisWin64DebugSemiStaticLibrary - Assembles semi static library 'redis:win64:debug:semiStaticLibrary'.
+RedisWin64DebugSharedLibrary - Assembles shared library 'redis:win64:debug:sharedLibrary'.
+RedisWin64DebugStaticLibrary - Assembles static library 'redis:win64:debug:staticLibrary'.
+RedisWin64ReleaseSemiStaticLibrary - Assembles semi static library 'redis:win64:release:semiStaticLibrary'.
+RedisWin64ReleaseSharedLibrary - Assembles shared library 'redis:win64:release:sharedLibrary'.
+RedisWin64ReleaseStaticLibrary - Assembles static library 'redis:win64:release:staticLibrary'.
+RowFormatterLinux32DebugExecutable - Assembles executable 'rowFormatter:linux32:debug:executable'.
+RowFormatterLinux32ReleaseExecutable - Assembles executable 'rowFormatter:linux32:release:executable'.
+RowFormatterLinux64DebugExecutable - Assembles executable 'rowFormatter:linux64:debug:executable'.
+RowFormatterLinux64ReleaseExecutable - Assembles executable 'rowFormatter:linux64:release:executable'.
+RowFormatterMacosDebugExecutable - Assembles executable 'rowFormatter:macos:debug:executable'.
+RowFormatterMacosReleaseExecutable - Assembles executable 'rowFormatter:macos:release:executable'.
+RowFormatterWin32DebugExecutable - Assembles executable 'rowFormatter:win32:debug:executable'.
+RowFormatterWin32ReleaseExecutable - Assembles executable 'rowFormatter:win32:release:executable'.
+RowFormatterWin64DebugExecutable - Assembles executable 'rowFormatter:win64:debug:executable'.
+RowFormatterWin64ReleaseExecutable - Assembles executable 'rowFormatter:win64:release:executable'.
+SampleAppLinux32DebugExecutable - Assembles executable 'sampleApp:linux32:debug:executable'.
+SampleAppLinux32ReleaseExecutable - Assembles executable 'sampleApp:linux32:release:executable'.
+SampleAppLinux64DebugExecutable - Assembles executable 'sampleApp:linux64:debug:executable'.
+SampleAppLinux64ReleaseExecutable - Assembles executable 'sampleApp:linux64:release:executable'.
+SampleAppMacosDebugExecutable - Assembles executable 'sampleApp:macos:debug:executable'.
+SampleAppMacosReleaseExecutable - Assembles executable 'sampleApp:macos:release:executable'.
+SampleAppWin32DebugExecutable - Assembles executable 'sampleApp:win32:debug:executable'.
+SampleAppWin32ReleaseExecutable - Assembles executable 'sampleApp:win32:release:executable'.
+SampleAppWin64DebugExecutable - Assembles executable 'sampleApp:win64:debug:executable'.
+SampleAppWin64ReleaseExecutable - Assembles executable 'sampleApp:win64:release:executable'.
+SampleServerLinux32DebugExecutable - Assembles executable 'sampleServer:linux32:debug:executable'.
+SampleServerLinux32ReleaseExecutable - Assembles executable 'sampleServer:linux32:release:executable'.
+SampleServerLinux64DebugExecutable - Assembles executable 'sampleServer:linux64:debug:executable'.
+SampleServerLinux64ReleaseExecutable - Assembles executable 'sampleServer:linux64:release:executable'.
+SampleServerMacosDebugExecutable - Assembles executable 'sampleServer:macos:debug:executable'.
+SampleServerMacosReleaseExecutable - Assembles executable 'sampleServer:macos:release:executable'.
+SampleServerWin32DebugExecutable - Assembles executable 'sampleServer:win32:debug:executable'.
+SampleServerWin32ReleaseExecutable - Assembles executable 'sampleServer:win32:release:executable'.
+SampleServerWin64DebugExecutable - Assembles executable 'sampleServer:win64:debug:executable'.
+SampleServerWin64ReleaseExecutable - Assembles executable 'sampleServer:win64:release:executable'.
+SAXParserLinux32DebugExecutable - Assembles executable 'sAXParser:linux32:debug:executable'.
+SAXParserLinux32ReleaseExecutable - Assembles executable 'sAXParser:linux32:release:executable'.
+SAXParserLinux64DebugExecutable - Assembles executable 'sAXParser:linux64:debug:executable'.
+SAXParserLinux64ReleaseExecutable - Assembles executable 'sAXParser:linux64:release:executable'.
+SAXParserMacosDebugExecutable - Assembles executable 'sAXParser:macos:debug:executable'.
+SAXParserMacosReleaseExecutable - Assembles executable 'sAXParser:macos:release:executable'.
+SAXParserWin32DebugExecutable - Assembles executable 'sAXParser:win32:debug:executable'.
+SAXParserWin32ReleaseExecutable - Assembles executable 'sAXParser:win32:release:executable'.
+SAXParserWin64DebugExecutable - Assembles executable 'sAXParser:win64:debug:executable'.
+SAXParserWin64ReleaseExecutable - Assembles executable 'sAXParser:win64:release:executable'.
+SMTPLoggerLinux32DebugExecutable - Assembles executable 'sMTPLogger:linux32:debug:executable'.
+SMTPLoggerLinux32ReleaseExecutable - Assembles executable 'sMTPLogger:linux32:release:executable'.
+SMTPLoggerLinux64DebugExecutable - Assembles executable 'sMTPLogger:linux64:debug:executable'.
+SMTPLoggerLinux64ReleaseExecutable - Assembles executable 'sMTPLogger:linux64:release:executable'.
+SMTPLoggerMacosDebugExecutable - Assembles executable 'sMTPLogger:macos:debug:executable'.
+SMTPLoggerMacosReleaseExecutable - Assembles executable 'sMTPLogger:macos:release:executable'.
+SMTPLoggerWin32DebugExecutable - Assembles executable 'sMTPLogger:win32:debug:executable'.
+SMTPLoggerWin32ReleaseExecutable - Assembles executable 'sMTPLogger:win32:release:executable'.
+SMTPLoggerWin64DebugExecutable - Assembles executable 'sMTPLogger:win64:debug:executable'.
+SMTPLoggerWin64ReleaseExecutable - Assembles executable 'sMTPLogger:win64:release:executable'.
+SQLiteTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'sQLiteTestSuite:linux32:debug:cppUnitExe'.
+SQLiteTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'sQLiteTestSuite:linux32:release:cppUnitExe'.
+SQLiteTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'sQLiteTestSuite:linux64:debug:cppUnitExe'.
+SQLiteTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'sQLiteTestSuite:linux64:release:cppUnitExe'.
+SQLiteTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'sQLiteTestSuite:macos:debug:cppUnitExe'.
+SQLiteTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'sQLiteTestSuite:macos:release:cppUnitExe'.
+SQLiteTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'sQLiteTestSuite:win32:debug:cppUnitExe'.
+SQLiteTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'sQLiteTestSuite:win32:release:cppUnitExe'.
+SQLiteTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'sQLiteTestSuite:win64:debug:cppUnitExe'.
+SQLiteTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'sQLiteTestSuite:win64:release:cppUnitExe'.
+SQLToMongoLinux32DebugExecutable - Assembles executable 'sQLToMongo:linux32:debug:executable'.
+SQLToMongoLinux32ReleaseExecutable - Assembles executable 'sQLToMongo:linux32:release:executable'.
+SQLToMongoLinux64DebugExecutable - Assembles executable 'sQLToMongo:linux64:debug:executable'.
+SQLToMongoLinux64ReleaseExecutable - Assembles executable 'sQLToMongo:linux64:release:executable'.
+SQLToMongoMacosDebugExecutable - Assembles executable 'sQLToMongo:macos:debug:executable'.
+SQLToMongoMacosReleaseExecutable - Assembles executable 'sQLToMongo:macos:release:executable'.
+SQLToMongoWin32DebugExecutable - Assembles executable 'sQLToMongo:win32:debug:executable'.
+SQLToMongoWin32ReleaseExecutable - Assembles executable 'sQLToMongo:win32:release:executable'.
+SQLToMongoWin64DebugExecutable - Assembles executable 'sQLToMongo:win64:debug:executable'.
+SQLToMongoWin64ReleaseExecutable - Assembles executable 'sQLToMongo:win64:release:executable'.
+StringTokenizerLinux32DebugExecutable - Assembles executable 'stringTokenizer:linux32:debug:executable'.
+StringTokenizerLinux32ReleaseExecutable - Assembles executable 'stringTokenizer:linux32:release:executable'.
+StringTokenizerLinux64DebugExecutable - Assembles executable 'stringTokenizer:linux64:debug:executable'.
+StringTokenizerLinux64ReleaseExecutable - Assembles executable 'stringTokenizer:linux64:release:executable'.
+StringTokenizerMacosDebugExecutable - Assembles executable 'stringTokenizer:macos:debug:executable'.
+StringTokenizerMacosReleaseExecutable - Assembles executable 'stringTokenizer:macos:release:executable'.
+StringTokenizerWin32DebugExecutable - Assembles executable 'stringTokenizer:win32:debug:executable'.
+StringTokenizerWin32ReleaseExecutable - Assembles executable 'stringTokenizer:win32:release:executable'.
+StringTokenizerWin64DebugExecutable - Assembles executable 'stringTokenizer:win64:debug:executable'.
+StringTokenizerWin64ReleaseExecutable - Assembles executable 'stringTokenizer:win64:release:executable'.
+TestAppLinux32DebugExecutable - Assembles executable 'testApp:linux32:debug:executable'.
+TestAppLinux32ReleaseExecutable - Assembles executable 'testApp:linux32:release:executable'.
+TestAppLinux64DebugExecutable - Assembles executable 'testApp:linux64:debug:executable'.
+TestAppLinux64ReleaseExecutable - Assembles executable 'testApp:linux64:release:executable'.
+TestAppMacosDebugExecutable - Assembles executable 'testApp:macos:debug:executable'.
+TestAppMacosReleaseExecutable - Assembles executable 'testApp:macos:release:executable'.
+TestAppWin32DebugExecutable - Assembles executable 'testApp:win32:debug:executable'.
+TestAppWin32ReleaseExecutable - Assembles executable 'testApp:win32:release:executable'.
+TestAppWin64DebugExecutable - Assembles executable 'testApp:win64:debug:executable'.
+TestAppWin64ReleaseExecutable - Assembles executable 'testApp:win64:release:executable'.
+TestLibLinux32DebugSharedLibrary - Assembles shared library 'testLib:linux32:debug:sharedLibrary'.
+TestLibLinux32DebugStaticLibrary - Assembles static library 'testLib:linux32:debug:staticLibrary'.
+TestLibLinux32ReleaseSharedLibrary - Assembles shared library 'testLib:linux32:release:sharedLibrary'.
+TestLibLinux32ReleaseStaticLibrary - Assembles static library 'testLib:linux32:release:staticLibrary'.
+TestLibLinux64DebugSharedLibrary - Assembles shared library 'testLib:linux64:debug:sharedLibrary'.
+TestLibLinux64DebugStaticLibrary - Assembles static library 'testLib:linux64:debug:staticLibrary'.
+TestLibLinux64ReleaseSharedLibrary - Assembles shared library 'testLib:linux64:release:sharedLibrary'.
+TestLibLinux64ReleaseStaticLibrary - Assembles static library 'testLib:linux64:release:staticLibrary'.
+TestLibMacosDebugSharedLibrary - Assembles shared library 'testLib:macos:debug:sharedLibrary'.
+TestLibMacosDebugStaticLibrary - Assembles static library 'testLib:macos:debug:staticLibrary'.
+TestLibMacosReleaseSharedLibrary - Assembles shared library 'testLib:macos:release:sharedLibrary'.
+TestLibMacosReleaseStaticLibrary - Assembles static library 'testLib:macos:release:staticLibrary'.
+TestLibWin32DebugSemiStaticLibrary - Assembles semi static library 'testLib:win32:debug:semiStaticLibrary'.
+TestLibWin32DebugSharedLibrary - Assembles shared library 'testLib:win32:debug:sharedLibrary'.
+TestLibWin32DebugStaticLibrary - Assembles static library 'testLib:win32:debug:staticLibrary'.
+TestLibWin32ReleaseSemiStaticLibrary - Assembles semi static library 'testLib:win32:release:semiStaticLibrary'.
+TestLibWin32ReleaseSharedLibrary - Assembles shared library 'testLib:win32:release:sharedLibrary'.
+TestLibWin32ReleaseStaticLibrary - Assembles static library 'testLib:win32:release:staticLibrary'.
+TestLibWin64DebugSemiStaticLibrary - Assembles semi static library 'testLib:win64:debug:semiStaticLibrary'.
+TestLibWin64DebugSharedLibrary - Assembles shared library 'testLib:win64:debug:sharedLibrary'.
+TestLibWin64DebugStaticLibrary - Assembles static library 'testLib:win64:debug:staticLibrary'.
+TestLibWin64ReleaseSemiStaticLibrary - Assembles semi static library 'testLib:win64:release:semiStaticLibrary'.
+TestLibWin64ReleaseSharedLibrary - Assembles shared library 'testLib:win64:release:sharedLibrary'.
+TestLibWin64ReleaseStaticLibrary - Assembles static library 'testLib:win64:release:staticLibrary'.
+TestSuiteLinux32DebugSharedLibrary - Assembles shared library 'testSuite:linux32:debug:sharedLibrary'.
+TestSuiteLinux32DebugStaticLibrary - Assembles static library 'testSuite:linux32:debug:staticLibrary'.
+TestSuiteLinux32ReleaseSharedLibrary - Assembles shared library 'testSuite:linux32:release:sharedLibrary'.
+TestSuiteLinux32ReleaseStaticLibrary - Assembles static library 'testSuite:linux32:release:staticLibrary'.
+TestSuiteLinux64DebugSharedLibrary - Assembles shared library 'testSuite:linux64:debug:sharedLibrary'.
+TestSuiteLinux64DebugStaticLibrary - Assembles static library 'testSuite:linux64:debug:staticLibrary'.
+TestSuiteLinux64ReleaseSharedLibrary - Assembles shared library 'testSuite:linux64:release:sharedLibrary'.
+TestSuiteLinux64ReleaseStaticLibrary - Assembles static library 'testSuite:linux64:release:staticLibrary'.
+TestSuiteMacosDebugSharedLibrary - Assembles shared library 'testSuite:macos:debug:sharedLibrary'.
+TestSuiteMacosDebugStaticLibrary - Assembles static library 'testSuite:macos:debug:staticLibrary'.
+TestSuiteMacosReleaseSharedLibrary - Assembles shared library 'testSuite:macos:release:sharedLibrary'.
+TestSuiteMacosReleaseStaticLibrary - Assembles static library 'testSuite:macos:release:staticLibrary'.
+TestSuiteWin32DebugSemiStaticLibrary - Assembles semi static library 'testSuite:win32:debug:semiStaticLibrary'.
+TestSuiteWin32DebugSharedLibrary - Assembles shared library 'testSuite:win32:debug:sharedLibrary'.
+TestSuiteWin32DebugStaticLibrary - Assembles static library 'testSuite:win32:debug:staticLibrary'.
+TestSuiteWin32ReleaseSemiStaticLibrary - Assembles semi static library 'testSuite:win32:release:semiStaticLibrary'.
+TestSuiteWin32ReleaseSharedLibrary - Assembles shared library 'testSuite:win32:release:sharedLibrary'.
+TestSuiteWin32ReleaseStaticLibrary - Assembles static library 'testSuite:win32:release:staticLibrary'.
+TestSuiteWin64DebugSemiStaticLibrary - Assembles semi static library 'testSuite:win64:debug:semiStaticLibrary'.
+TestSuiteWin64DebugSharedLibrary - Assembles shared library 'testSuite:win64:debug:sharedLibrary'.
+TestSuiteWin64DebugStaticLibrary - Assembles static library 'testSuite:win64:debug:staticLibrary'.
+TestSuiteWin64ReleaseSemiStaticLibrary - Assembles semi static library 'testSuite:win64:release:semiStaticLibrary'.
+TestSuiteWin64ReleaseSharedLibrary - Assembles shared library 'testSuite:win64:release:sharedLibrary'.
+TestSuiteWin64ReleaseStaticLibrary - Assembles static library 'testSuite:win64:release:staticLibrary'.
+TextConverterLinux32DebugExecutable - Assembles executable 'textConverter:linux32:debug:executable'.
+TextConverterLinux32ReleaseExecutable - Assembles executable 'textConverter:linux32:release:executable'.
+TextConverterLinux64DebugExecutable - Assembles executable 'textConverter:linux64:debug:executable'.
+TextConverterLinux64ReleaseExecutable - Assembles executable 'textConverter:linux64:release:executable'.
+TextConverterMacosDebugExecutable - Assembles executable 'textConverter:macos:debug:executable'.
+TextConverterMacosReleaseExecutable - Assembles executable 'textConverter:macos:release:executable'.
+TextConverterWin32DebugExecutable - Assembles executable 'textConverter:win32:debug:executable'.
+TextConverterWin32ReleaseExecutable - Assembles executable 'textConverter:win32:release:executable'.
+TextConverterWin64DebugExecutable - Assembles executable 'textConverter:win64:debug:executable'.
+TextConverterWin64ReleaseExecutable - Assembles executable 'textConverter:win64:release:executable'.
+TextLinux32DebugExecutable - Assembles executable 'text:linux32:debug:executable'.
+TextLinux32ReleaseExecutable - Assembles executable 'text:linux32:release:executable'.
+TextLinux64DebugExecutable - Assembles executable 'text:linux64:debug:executable'.
+TextLinux64ReleaseExecutable - Assembles executable 'text:linux64:release:executable'.
+TextMacosDebugExecutable - Assembles executable 'text:macos:debug:executable'.
+TextMacosReleaseExecutable - Assembles executable 'text:macos:release:executable'.
+TextWin32DebugExecutable - Assembles executable 'text:win32:debug:executable'.
+TextWin32ReleaseExecutable - Assembles executable 'text:win32:release:executable'.
+TextWin64DebugExecutable - Assembles executable 'text:win64:debug:executable'.
+TextWin64ReleaseExecutable - Assembles executable 'text:win64:release:executable'.
+TimerLinux32DebugExecutable - Assembles executable 'timer:linux32:debug:executable'.
+TimerLinux32ReleaseExecutable - Assembles executable 'timer:linux32:release:executable'.
+TimerLinux64DebugExecutable - Assembles executable 'timer:linux64:debug:executable'.
+TimerLinux64ReleaseExecutable - Assembles executable 'timer:linux64:release:executable'.
+TimerMacosDebugExecutable - Assembles executable 'timer:macos:debug:executable'.
+TimerMacosReleaseExecutable - Assembles executable 'timer:macos:release:executable'.
+TimerWin32DebugExecutable - Assembles executable 'timer:win32:debug:executable'.
+TimerWin32ReleaseExecutable - Assembles executable 'timer:win32:release:executable'.
+TimerWin64DebugExecutable - Assembles executable 'timer:win64:debug:executable'.
+TimerWin64ReleaseExecutable - Assembles executable 'timer:win64:release:executable'.
+TimeServerLinux32DebugExecutable - Assembles executable 'timeServer:linux32:debug:executable'.
+TimeServerLinux32ReleaseExecutable - Assembles executable 'timeServer:linux32:release:executable'.
+TimeServerLinux64DebugExecutable - Assembles executable 'timeServer:linux64:debug:executable'.
+TimeServerLinux64ReleaseExecutable - Assembles executable 'timeServer:linux64:release:executable'.
+TimeServerMacosDebugExecutable - Assembles executable 'timeServer:macos:debug:executable'.
+TimeServerMacosReleaseExecutable - Assembles executable 'timeServer:macos:release:executable'.
+TimeServerWin32DebugExecutable - Assembles executable 'timeServer:win32:debug:executable'.
+TimeServerWin32ReleaseExecutable - Assembles executable 'timeServer:win32:release:executable'.
+TimeServerWin64DebugExecutable - Assembles executable 'timeServer:win64:debug:executable'.
+TimeServerWin64ReleaseExecutable - Assembles executable 'timeServer:win64:release:executable'.
+TupleLinux32DebugExecutable - Assembles executable 'tuple:linux32:debug:executable'.
+TupleLinux32ReleaseExecutable - Assembles executable 'tuple:linux32:release:executable'.
+TupleLinux64DebugExecutable - Assembles executable 'tuple:linux64:debug:executable'.
+TupleLinux64ReleaseExecutable - Assembles executable 'tuple:linux64:release:executable'.
+TupleMacosDebugExecutable - Assembles executable 'tuple:macos:debug:executable'.
+TupleMacosReleaseExecutable - Assembles executable 'tuple:macos:release:executable'.
+TupleWin32DebugExecutable - Assembles executable 'tuple:win32:debug:executable'.
+TupleWin32ReleaseExecutable - Assembles executable 'tuple:win32:release:executable'.
+TupleWin64DebugExecutable - Assembles executable 'tuple:win64:debug:executable'.
+TupleWin64ReleaseExecutable - Assembles executable 'tuple:win64:release:executable'.
+TwitterClientLinux32DebugExecutable - Assembles executable 'twitterClient:linux32:debug:executable'.
+TwitterClientLinux32ReleaseExecutable - Assembles executable 'twitterClient:linux32:release:executable'.
+TwitterClientLinux64DebugExecutable - Assembles executable 'twitterClient:linux64:debug:executable'.
+TwitterClientLinux64ReleaseExecutable - Assembles executable 'twitterClient:linux64:release:executable'.
+TwitterClientMacosDebugExecutable - Assembles executable 'twitterClient:macos:debug:executable'.
+TwitterClientMacosReleaseExecutable - Assembles executable 'twitterClient:macos:release:executable'.
+TwitterClientWin32DebugExecutable - Assembles executable 'twitterClient:win32:debug:executable'.
+TwitterClientWin32ReleaseExecutable - Assembles executable 'twitterClient:win32:release:executable'.
+TwitterClientWin64DebugExecutable - Assembles executable 'twitterClient:win64:debug:executable'.
+TwitterClientWin64ReleaseExecutable - Assembles executable 'twitterClient:win64:release:executable'.
+TypeHandlerLinux32DebugExecutable - Assembles executable 'typeHandler:linux32:debug:executable'.
+TypeHandlerLinux32ReleaseExecutable - Assembles executable 'typeHandler:linux32:release:executable'.
+TypeHandlerLinux64DebugExecutable - Assembles executable 'typeHandler:linux64:debug:executable'.
+TypeHandlerLinux64ReleaseExecutable - Assembles executable 'typeHandler:linux64:release:executable'.
+TypeHandlerMacosDebugExecutable - Assembles executable 'typeHandler:macos:debug:executable'.
+TypeHandlerMacosReleaseExecutable - Assembles executable 'typeHandler:macos:release:executable'.
+TypeHandlerWin32DebugExecutable - Assembles executable 'typeHandler:win32:debug:executable'.
+TypeHandlerWin32ReleaseExecutable - Assembles executable 'typeHandler:win32:release:executable'.
+TypeHandlerWin64DebugExecutable - Assembles executable 'typeHandler:win64:debug:executable'.
+TypeHandlerWin64ReleaseExecutable - Assembles executable 'typeHandler:win64:release:executable'.
+un7zipLinux32DebugExecutable - Assembles executable 'un7zip:linux32:debug:executable'.
+un7zipLinux32ReleaseExecutable - Assembles executable 'un7zip:linux32:release:executable'.
+un7zipLinux64DebugExecutable - Assembles executable 'un7zip:linux64:debug:executable'.
+un7zipLinux64ReleaseExecutable - Assembles executable 'un7zip:linux64:release:executable'.
+un7zipMacosDebugExecutable - Assembles executable 'un7zip:macos:debug:executable'.
+un7zipMacosReleaseExecutable - Assembles executable 'un7zip:macos:release:executable'.
+un7zipWin32DebugExecutable - Assembles executable 'un7zip:win32:debug:executable'.
+un7zipWin32ReleaseExecutable - Assembles executable 'un7zip:win32:release:executable'.
+un7zipWin64DebugExecutable - Assembles executable 'un7zip:win64:debug:executable'.
+un7zipWin64ReleaseExecutable - Assembles executable 'un7zip:win64:release:executable'.
+UnitsLinux32DebugExecutable - Assembles executable 'units:linux32:debug:executable'.
+UnitsLinux32ReleaseExecutable - Assembles executable 'units:linux32:release:executable'.
+UnitsLinux64DebugExecutable - Assembles executable 'units:linux64:debug:executable'.
+UnitsLinux64ReleaseExecutable - Assembles executable 'units:linux64:release:executable'.
+UnitsMacosDebugExecutable - Assembles executable 'units:macos:debug:executable'.
+UnitsMacosReleaseExecutable - Assembles executable 'units:macos:release:executable'.
+UnitsWin32DebugExecutable - Assembles executable 'units:win32:debug:executable'.
+UnitsWin32ReleaseExecutable - Assembles executable 'units:win32:release:executable'.
+UnitsWin64DebugExecutable - Assembles executable 'units:win64:debug:executable'.
+UnitsWin64ReleaseExecutable - Assembles executable 'units:win64:release:executable'.
+unzipLinux32DebugExecutable - Assembles executable 'unzip:linux32:debug:executable'.
+unzipLinux32ReleaseExecutable - Assembles executable 'unzip:linux32:release:executable'.
+unzipLinux64DebugExecutable - Assembles executable 'unzip:linux64:debug:executable'.
+unzipLinux64ReleaseExecutable - Assembles executable 'unzip:linux64:release:executable'.
+unzipMacosDebugExecutable - Assembles executable 'unzip:macos:debug:executable'.
+unzipMacosReleaseExecutable - Assembles executable 'unzip:macos:release:executable'.
+unzipWin32DebugExecutable - Assembles executable 'unzip:win32:debug:executable'.
+unzipWin32ReleaseExecutable - Assembles executable 'unzip:win32:release:executable'.
+unzipWin64DebugExecutable - Assembles executable 'unzip:win64:debug:executable'.
+unzipWin64ReleaseExecutable - Assembles executable 'unzip:win64:release:executable'.
+URILinux32DebugExecutable - Assembles executable 'uRI:linux32:debug:executable'.
+URILinux32ReleaseExecutable - Assembles executable 'uRI:linux32:release:executable'.
+URILinux64DebugExecutable - Assembles executable 'uRI:linux64:debug:executable'.
+URILinux64ReleaseExecutable - Assembles executable 'uRI:linux64:release:executable'.
+URIMacosDebugExecutable - Assembles executable 'uRI:macos:debug:executable'.
+URIMacosReleaseExecutable - Assembles executable 'uRI:macos:release:executable'.
+URIWin32DebugExecutable - Assembles executable 'uRI:win32:debug:executable'.
+URIWin32ReleaseExecutable - Assembles executable 'uRI:win32:release:executable'.
+URIWin64DebugExecutable - Assembles executable 'uRI:win64:debug:executable'.
+URIWin64ReleaseExecutable - Assembles executable 'uRI:win64:release:executable'.
+UtilLinux32DebugSharedLibrary - Assembles shared library 'util:linux32:debug:sharedLibrary'.
+UtilLinux32DebugStaticLibrary - Assembles static library 'util:linux32:debug:staticLibrary'.
+UtilLinux32ReleaseSharedLibrary - Assembles shared library 'util:linux32:release:sharedLibrary'.
+UtilLinux32ReleaseStaticLibrary - Assembles static library 'util:linux32:release:staticLibrary'.
+UtilLinux64DebugSharedLibrary - Assembles shared library 'util:linux64:debug:sharedLibrary'.
+UtilLinux64DebugStaticLibrary - Assembles static library 'util:linux64:debug:staticLibrary'.
+UtilLinux64ReleaseSharedLibrary - Assembles shared library 'util:linux64:release:sharedLibrary'.
+UtilLinux64ReleaseStaticLibrary - Assembles static library 'util:linux64:release:staticLibrary'.
+UtilMacosDebugSharedLibrary - Assembles shared library 'util:macos:debug:sharedLibrary'.
+UtilMacosDebugStaticLibrary - Assembles static library 'util:macos:debug:staticLibrary'.
+UtilMacosReleaseSharedLibrary - Assembles shared library 'util:macos:release:sharedLibrary'.
+UtilMacosReleaseStaticLibrary - Assembles static library 'util:macos:release:staticLibrary'.
+UtilTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'utilTestSuite:linux32:debug:cppUnitExe'.
+UtilTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'utilTestSuite:linux32:release:cppUnitExe'.
+UtilTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'utilTestSuite:linux64:debug:cppUnitExe'.
+UtilTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'utilTestSuite:linux64:release:cppUnitExe'.
+UtilTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'utilTestSuite:macos:debug:cppUnitExe'.
+UtilTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'utilTestSuite:macos:release:cppUnitExe'.
+UtilTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'utilTestSuite:win32:debug:cppUnitExe'.
+UtilTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'utilTestSuite:win32:release:cppUnitExe'.
+UtilTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'utilTestSuite:win64:debug:cppUnitExe'.
+UtilTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'utilTestSuite:win64:release:cppUnitExe'.
+UtilWin32DebugSemiStaticLibrary - Assembles semi static library 'util:win32:debug:semiStaticLibrary'.
+UtilWin32DebugSharedLibrary - Assembles shared library 'util:win32:debug:sharedLibrary'.
+UtilWin32DebugStaticLibrary - Assembles static library 'util:win32:debug:staticLibrary'.
+UtilWin32ReleaseSemiStaticLibrary - Assembles semi static library 'util:win32:release:semiStaticLibrary'.
+UtilWin32ReleaseSharedLibrary - Assembles shared library 'util:win32:release:sharedLibrary'.
+UtilWin32ReleaseStaticLibrary - Assembles static library 'util:win32:release:staticLibrary'.
+UtilWin64DebugSemiStaticLibrary - Assembles semi static library 'util:win64:debug:semiStaticLibrary'.
+UtilWin64DebugSharedLibrary - Assembles shared library 'util:win64:debug:sharedLibrary'.
+UtilWin64DebugStaticLibrary - Assembles static library 'util:win64:debug:staticLibrary'.
+UtilWin64ReleaseSemiStaticLibrary - Assembles semi static library 'util:win64:release:semiStaticLibrary'.
+UtilWin64ReleaseSharedLibrary - Assembles shared library 'util:win64:release:sharedLibrary'.
+UtilWin64ReleaseStaticLibrary - Assembles static library 'util:win64:release:staticLibrary'.
+uuidgenLinux32DebugExecutable - Assembles executable 'uuidgen:linux32:debug:executable'.
+uuidgenLinux32ReleaseExecutable - Assembles executable 'uuidgen:linux32:release:executable'.
+uuidgenLinux64DebugExecutable - Assembles executable 'uuidgen:linux64:debug:executable'.
+uuidgenLinux64ReleaseExecutable - Assembles executable 'uuidgen:linux64:release:executable'.
+uuidgenMacosDebugExecutable - Assembles executable 'uuidgen:macos:debug:executable'.
+uuidgenMacosReleaseExecutable - Assembles executable 'uuidgen:macos:release:executable'.
+uuidgenWin32DebugExecutable - Assembles executable 'uuidgen:win32:debug:executable'.
+uuidgenWin32ReleaseExecutable - Assembles executable 'uuidgen:win32:release:executable'.
+uuidgenWin64DebugExecutable - Assembles executable 'uuidgen:win64:debug:executable'.
+uuidgenWin64ReleaseExecutable - Assembles executable 'uuidgen:win64:release:executable'.
+WebNotifierLinux32DebugExecutable - Assembles executable 'webNotifier:linux32:debug:executable'.
+WebNotifierLinux32ReleaseExecutable - Assembles executable 'webNotifier:linux32:release:executable'.
+WebNotifierLinux64DebugExecutable - Assembles executable 'webNotifier:linux64:debug:executable'.
+WebNotifierLinux64ReleaseExecutable - Assembles executable 'webNotifier:linux64:release:executable'.
+WebNotifierMacosDebugExecutable - Assembles executable 'webNotifier:macos:debug:executable'.
+WebNotifierMacosReleaseExecutable - Assembles executable 'webNotifier:macos:release:executable'.
+WebNotifierWin32DebugExecutable - Assembles executable 'webNotifier:win32:debug:executable'.
+WebNotifierWin32ReleaseExecutable - Assembles executable 'webNotifier:win32:release:executable'.
+WebNotifierWin64DebugExecutable - Assembles executable 'webNotifier:win64:debug:executable'.
+WebNotifierWin64ReleaseExecutable - Assembles executable 'webNotifier:win64:release:executable'.
+WebSocketServerLinux32DebugExecutable - Assembles executable 'webSocketServer:linux32:debug:executable'.
+WebSocketServerLinux32ReleaseExecutable - Assembles executable 'webSocketServer:linux32:release:executable'.
+WebSocketServerLinux64DebugExecutable - Assembles executable 'webSocketServer:linux64:debug:executable'.
+WebSocketServerLinux64ReleaseExecutable - Assembles executable 'webSocketServer:linux64:release:executable'.
+WebSocketServerMacosDebugExecutable - Assembles executable 'webSocketServer:macos:debug:executable'.
+WebSocketServerMacosReleaseExecutable - Assembles executable 'webSocketServer:macos:release:executable'.
+WebSocketServerWin32DebugExecutable - Assembles executable 'webSocketServer:win32:debug:executable'.
+WebSocketServerWin32ReleaseExecutable - Assembles executable 'webSocketServer:win32:release:executable'.
+WebSocketServerWin64DebugExecutable - Assembles executable 'webSocketServer:win64:debug:executable'.
+WebSocketServerWin64ReleaseExecutable - Assembles executable 'webSocketServer:win64:release:executable'.
+XMLLinux32DebugSharedLibrary - Assembles shared library 'xML:linux32:debug:sharedLibrary'.
+XMLLinux32DebugStaticLibrary - Assembles static library 'xML:linux32:debug:staticLibrary'.
+XMLLinux32ReleaseSharedLibrary - Assembles shared library 'xML:linux32:release:sharedLibrary'.
+XMLLinux32ReleaseStaticLibrary - Assembles static library 'xML:linux32:release:staticLibrary'.
+XMLLinux64DebugSharedLibrary - Assembles shared library 'xML:linux64:debug:sharedLibrary'.
+XMLLinux64DebugStaticLibrary - Assembles static library 'xML:linux64:debug:staticLibrary'.
+XMLLinux64ReleaseSharedLibrary - Assembles shared library 'xML:linux64:release:sharedLibrary'.
+XMLLinux64ReleaseStaticLibrary - Assembles static library 'xML:linux64:release:staticLibrary'.
+XMLMacosDebugSharedLibrary - Assembles shared library 'xML:macos:debug:sharedLibrary'.
+XMLMacosDebugStaticLibrary - Assembles static library 'xML:macos:debug:staticLibrary'.
+XMLMacosReleaseSharedLibrary - Assembles shared library 'xML:macos:release:sharedLibrary'.
+XMLMacosReleaseStaticLibrary - Assembles static library 'xML:macos:release:staticLibrary'.
+XMLTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'xMLTestSuite:linux32:debug:cppUnitExe'.
+XMLTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'xMLTestSuite:linux32:release:cppUnitExe'.
+XMLTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'xMLTestSuite:linux64:debug:cppUnitExe'.
+XMLTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'xMLTestSuite:linux64:release:cppUnitExe'.
+XMLTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'xMLTestSuite:macos:debug:cppUnitExe'.
+XMLTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'xMLTestSuite:macos:release:cppUnitExe'.
+XMLTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'xMLTestSuite:win32:debug:cppUnitExe'.
+XMLTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'xMLTestSuite:win32:release:cppUnitExe'.
+XMLTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'xMLTestSuite:win64:debug:cppUnitExe'.
+XMLTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'xMLTestSuite:win64:release:cppUnitExe'.
+XMLWin32DebugSemiStaticLibrary - Assembles semi static library 'xML:win32:debug:semiStaticLibrary'.
+XMLWin32DebugSharedLibrary - Assembles shared library 'xML:win32:debug:sharedLibrary'.
+XMLWin32DebugStaticLibrary - Assembles static library 'xML:win32:debug:staticLibrary'.
+XMLWin32ReleaseSemiStaticLibrary - Assembles semi static library 'xML:win32:release:semiStaticLibrary'.
+XMLWin32ReleaseSharedLibrary - Assembles shared library 'xML:win32:release:sharedLibrary'.
+XMLWin32ReleaseStaticLibrary - Assembles static library 'xML:win32:release:staticLibrary'.
+XMLWin64DebugSemiStaticLibrary - Assembles semi static library 'xML:win64:debug:semiStaticLibrary'.
+XMLWin64DebugSharedLibrary - Assembles shared library 'xML:win64:debug:sharedLibrary'.
+XMLWin64DebugStaticLibrary - Assembles static library 'xML:win64:debug:staticLibrary'.
+XMLWin64ReleaseSemiStaticLibrary - Assembles semi static library 'xML:win64:release:semiStaticLibrary'.
+XMLWin64ReleaseSharedLibrary - Assembles shared library 'xML:win64:release:sharedLibrary'.
+XMLWin64ReleaseStaticLibrary - Assembles static library 'xML:win64:release:staticLibrary'.
+zipLinux32DebugExecutable - Assembles executable 'zip:linux32:debug:executable'.
+ZipLinux32DebugSharedLibrary - Assembles shared library 'zip:linux32:debug:sharedLibrary'.
+ZipLinux32DebugStaticLibrary - Assembles static library 'zip:linux32:debug:staticLibrary'.
+zipLinux32ReleaseExecutable - Assembles executable 'zip:linux32:release:executable'.
+ZipLinux32ReleaseSharedLibrary - Assembles shared library 'zip:linux32:release:sharedLibrary'.
+ZipLinux32ReleaseStaticLibrary - Assembles static library 'zip:linux32:release:staticLibrary'.
+zipLinux64DebugExecutable - Assembles executable 'zip:linux64:debug:executable'.
+ZipLinux64DebugSharedLibrary - Assembles shared library 'zip:linux64:debug:sharedLibrary'.
+ZipLinux64DebugStaticLibrary - Assembles static library 'zip:linux64:debug:staticLibrary'.
+zipLinux64ReleaseExecutable - Assembles executable 'zip:linux64:release:executable'.
+ZipLinux64ReleaseSharedLibrary - Assembles shared library 'zip:linux64:release:sharedLibrary'.
+ZipLinux64ReleaseStaticLibrary - Assembles static library 'zip:linux64:release:staticLibrary'.
+zipMacosDebugExecutable - Assembles executable 'zip:macos:debug:executable'.
+ZipMacosDebugSharedLibrary - Assembles shared library 'zip:macos:debug:sharedLibrary'.
+ZipMacosDebugStaticLibrary - Assembles static library 'zip:macos:debug:staticLibrary'.
+zipMacosReleaseExecutable - Assembles executable 'zip:macos:release:executable'.
+ZipMacosReleaseSharedLibrary - Assembles shared library 'zip:macos:release:sharedLibrary'.
+ZipMacosReleaseStaticLibrary - Assembles static library 'zip:macos:release:staticLibrary'.
+ZipTestSuiteLinux32DebugCppUnitExe - Assembles cpp unit exe 'zipTestSuite:linux32:debug:cppUnitExe'.
+ZipTestSuiteLinux32ReleaseCppUnitExe - Assembles cpp unit exe 'zipTestSuite:linux32:release:cppUnitExe'.
+ZipTestSuiteLinux64DebugCppUnitExe - Assembles cpp unit exe 'zipTestSuite:linux64:debug:cppUnitExe'.
+ZipTestSuiteLinux64ReleaseCppUnitExe - Assembles cpp unit exe 'zipTestSuite:linux64:release:cppUnitExe'.
+ZipTestSuiteMacosDebugCppUnitExe - Assembles cpp unit exe 'zipTestSuite:macos:debug:cppUnitExe'.
+ZipTestSuiteMacosReleaseCppUnitExe - Assembles cpp unit exe 'zipTestSuite:macos:release:cppUnitExe'.
+ZipTestSuiteWin32DebugCppUnitExe - Assembles cpp unit exe 'zipTestSuite:win32:debug:cppUnitExe'.
+ZipTestSuiteWin32ReleaseCppUnitExe - Assembles cpp unit exe 'zipTestSuite:win32:release:cppUnitExe'.
+ZipTestSuiteWin64DebugCppUnitExe - Assembles cpp unit exe 'zipTestSuite:win64:debug:cppUnitExe'.
+ZipTestSuiteWin64ReleaseCppUnitExe - Assembles cpp unit exe 'zipTestSuite:win64:release:cppUnitExe'.
+zipWin32DebugExecutable - Assembles executable 'zip:win32:debug:executable'.
+ZipWin32DebugSemiStaticLibrary - Assembles semi static library 'zip:win32:debug:semiStaticLibrary'.
+ZipWin32DebugSharedLibrary - Assembles shared library 'zip:win32:debug:sharedLibrary'.
+ZipWin32DebugStaticLibrary - Assembles static library 'zip:win32:debug:staticLibrary'.
+zipWin32ReleaseExecutable - Assembles executable 'zip:win32:release:executable'.
+ZipWin32ReleaseSemiStaticLibrary - Assembles semi static library 'zip:win32:release:semiStaticLibrary'.
+ZipWin32ReleaseSharedLibrary - Assembles shared library 'zip:win32:release:sharedLibrary'.
+ZipWin32ReleaseStaticLibrary - Assembles static library 'zip:win32:release:staticLibrary'.
+zipWin64DebugExecutable - Assembles executable 'zip:win64:debug:executable'.
+ZipWin64DebugSemiStaticLibrary - Assembles semi static library 'zip:win64:debug:semiStaticLibrary'.
+ZipWin64DebugSharedLibrary - Assembles shared library 'zip:win64:debug:sharedLibrary'.
+ZipWin64DebugStaticLibrary - Assembles static library 'zip:win64:debug:staticLibrary'.
+zipWin64ReleaseExecutable - Assembles executable 'zip:win64:release:executable'.
+ZipWin64ReleaseSemiStaticLibrary - Assembles semi static library 'zip:win64:release:semiStaticLibrary'.
+ZipWin64ReleaseSharedLibrary - Assembles shared library 'zip:win64:release:sharedLibrary'.
+ZipWin64ReleaseStaticLibrary - Assembles static library 'zip:win64:release:staticLibrary'.
+
+Build Dependents tasks
+----------------------
+assembleDependentsActiveMethod - Assemble dependents of native executable 'ActiveMethod'.
+assembleDependentsActiveMethodLinux32DebugExecutable - Assemble dependents of executable 'activeMethod:linux32:debug:executable'.
+assembleDependentsActiveMethodLinux32ReleaseExecutable - Assemble dependents of executable 'activeMethod:linux32:release:executable'.
+assembleDependentsActiveMethodLinux64DebugExecutable - Assemble dependents of executable 'activeMethod:linux64:debug:executable'.
+assembleDependentsActiveMethodLinux64ReleaseExecutable - Assemble dependents of executable 'activeMethod:linux64:release:executable'.
+assembleDependentsActiveMethodMacosDebugExecutable - Assemble dependents of executable 'activeMethod:macos:debug:executable'.
+assembleDependentsActiveMethodMacosReleaseExecutable - Assemble dependents of executable 'activeMethod:macos:release:executable'.
+assembleDependentsActiveMethodWin32DebugExecutable - Assemble dependents of executable 'activeMethod:win32:debug:executable'.
+assembleDependentsActiveMethodWin32ReleaseExecutable - Assemble dependents of executable 'activeMethod:win32:release:executable'.
+assembleDependentsActiveMethodWin64DebugExecutable - Assemble dependents of executable 'activeMethod:win64:debug:executable'.
+assembleDependentsActiveMethodWin64ReleaseExecutable - Assemble dependents of executable 'activeMethod:win64:release:executable'.
+assembleDependentsActivity - Assemble dependents of native executable 'Activity'.
+assembleDependentsActivityLinux32DebugExecutable - Assemble dependents of executable 'activity:linux32:debug:executable'.
+assembleDependentsActivityLinux32ReleaseExecutable - Assemble dependents of executable 'activity:linux32:release:executable'.
+assembleDependentsActivityLinux64DebugExecutable - Assemble dependents of executable 'activity:linux64:debug:executable'.
+assembleDependentsActivityLinux64ReleaseExecutable - Assemble dependents of executable 'activity:linux64:release:executable'.
+assembleDependentsActivityMacosDebugExecutable - Assemble dependents of executable 'activity:macos:debug:executable'.
+assembleDependentsActivityMacosReleaseExecutable - Assemble dependents of executable 'activity:macos:release:executable'.
+assembleDependentsActivityWin32DebugExecutable - Assemble dependents of executable 'activity:win32:debug:executable'.
+assembleDependentsActivityWin32ReleaseExecutable - Assemble dependents of executable 'activity:win32:release:executable'.
+assembleDependentsActivityWin64DebugExecutable - Assemble dependents of executable 'activity:win64:debug:executable'.
+assembleDependentsActivityWin64ReleaseExecutable - Assemble dependents of executable 'activity:win64:release:executable'.
+assembleDependentsBase64decode - Assemble dependents of native executable 'base64decode'.
+assembleDependentsBase64decodeLinux32DebugExecutable - Assemble dependents of executable 'base64decode:linux32:debug:executable'.
+assembleDependentsBase64decodeLinux32ReleaseExecutable - Assemble dependents of executable 'base64decode:linux32:release:executable'.
+assembleDependentsBase64decodeLinux64DebugExecutable - Assemble dependents of executable 'base64decode:linux64:debug:executable'.
+assembleDependentsBase64decodeLinux64ReleaseExecutable - Assemble dependents of executable 'base64decode:linux64:release:executable'.
+assembleDependentsBase64decodeMacosDebugExecutable - Assemble dependents of executable 'base64decode:macos:debug:executable'.
+assembleDependentsBase64decodeMacosReleaseExecutable - Assemble dependents of executable 'base64decode:macos:release:executable'.
+assembleDependentsBase64decodeWin32DebugExecutable - Assemble dependents of executable 'base64decode:win32:debug:executable'.
+assembleDependentsBase64decodeWin32ReleaseExecutable - Assemble dependents of executable 'base64decode:win32:release:executable'.
+assembleDependentsBase64decodeWin64DebugExecutable - Assemble dependents of executable 'base64decode:win64:debug:executable'.
+assembleDependentsBase64decodeWin64ReleaseExecutable - Assemble dependents of executable 'base64decode:win64:release:executable'.
+assembleDependentsBase64encode - Assemble dependents of native executable 'base64encode'.
+assembleDependentsBase64encodeLinux32DebugExecutable - Assemble dependents of executable 'base64encode:linux32:debug:executable'.
+assembleDependentsBase64encodeLinux32ReleaseExecutable - Assemble dependents of executable 'base64encode:linux32:release:executable'.
+assembleDependentsBase64encodeLinux64DebugExecutable - Assemble dependents of executable 'base64encode:linux64:debug:executable'.
+assembleDependentsBase64encodeLinux64ReleaseExecutable - Assemble dependents of executable 'base64encode:linux64:release:executable'.
+assembleDependentsBase64encodeMacosDebugExecutable - Assemble dependents of executable 'base64encode:macos:debug:executable'.
+assembleDependentsBase64encodeMacosReleaseExecutable - Assemble dependents of executable 'base64encode:macos:release:executable'.
+assembleDependentsBase64encodeWin32DebugExecutable - Assemble dependents of executable 'base64encode:win32:debug:executable'.
+assembleDependentsBase64encodeWin32ReleaseExecutable - Assemble dependents of executable 'base64encode:win32:release:executable'.
+assembleDependentsBase64encodeWin64DebugExecutable - Assemble dependents of executable 'base64encode:win64:debug:executable'.
+assembleDependentsBase64encodeWin64ReleaseExecutable - Assemble dependents of executable 'base64encode:win64:release:executable'.
+assembleDependentsBenchmark - Assemble dependents of native executable 'Benchmark'.
+assembleDependentsBenchmarkLinux32DebugExecutable - Assemble dependents of executable 'benchmark:linux32:debug:executable'.
+assembleDependentsBenchmarkLinux32ReleaseExecutable - Assemble dependents of executable 'benchmark:linux32:release:executable'.
+assembleDependentsBenchmarkLinux64DebugExecutable - Assemble dependents of executable 'benchmark:linux64:debug:executable'.
+assembleDependentsBenchmarkLinux64ReleaseExecutable - Assemble dependents of executable 'benchmark:linux64:release:executable'.
+assembleDependentsBenchmarkMacosDebugExecutable - Assemble dependents of executable 'benchmark:macos:debug:executable'.
+assembleDependentsBenchmarkMacosReleaseExecutable - Assemble dependents of executable 'benchmark:macos:release:executable'.
+assembleDependentsBenchmarkWin32DebugExecutable - Assemble dependents of executable 'benchmark:win32:debug:executable'.
+assembleDependentsBenchmarkWin32ReleaseExecutable - Assemble dependents of executable 'benchmark:win32:release:executable'.
+assembleDependentsBenchmarkWin64DebugExecutable - Assemble dependents of executable 'benchmark:win64:debug:executable'.
+assembleDependentsBenchmarkWin64ReleaseExecutable - Assemble dependents of executable 'benchmark:win64:release:executable'.
+assembleDependentsBinaryReaderWriter - Assemble dependents of native executable 'BinaryReaderWriter'.
+assembleDependentsBinaryReaderWriterLinux32DebugExecutable - Assemble dependents of executable 'binaryReaderWriter:linux32:debug:executable'.
+assembleDependentsBinaryReaderWriterLinux32ReleaseExecutable - Assemble dependents of executable 'binaryReaderWriter:linux32:release:executable'.
+assembleDependentsBinaryReaderWriterLinux64DebugExecutable - Assemble dependents of executable 'binaryReaderWriter:linux64:debug:executable'.
+assembleDependentsBinaryReaderWriterLinux64ReleaseExecutable - Assemble dependents of executable 'binaryReaderWriter:linux64:release:executable'.
+assembleDependentsBinaryReaderWriterMacosDebugExecutable - Assemble dependents of executable 'binaryReaderWriter:macos:debug:executable'.
+assembleDependentsBinaryReaderWriterMacosReleaseExecutable - Assemble dependents of executable 'binaryReaderWriter:macos:release:executable'.
+assembleDependentsBinaryReaderWriterWin32DebugExecutable - Assemble dependents of executable 'binaryReaderWriter:win32:debug:executable'.
+assembleDependentsBinaryReaderWriterWin32ReleaseExecutable - Assemble dependents of executable 'binaryReaderWriter:win32:release:executable'.
+assembleDependentsBinaryReaderWriterWin64DebugExecutable - Assemble dependents of executable 'binaryReaderWriter:win64:debug:executable'.
+assembleDependentsBinaryReaderWriterWin64ReleaseExecutable - Assemble dependents of executable 'binaryReaderWriter:win64:release:executable'.
+assembleDependentsBinding - Assemble dependents of native executable 'Binding'.
+assembleDependentsBindingLinux32DebugExecutable - Assemble dependents of executable 'binding:linux32:debug:executable'.
+assembleDependentsBindingLinux32ReleaseExecutable - Assemble dependents of executable 'binding:linux32:release:executable'.
+assembleDependentsBindingLinux64DebugExecutable - Assemble dependents of executable 'binding:linux64:debug:executable'.
+assembleDependentsBindingLinux64ReleaseExecutable - Assemble dependents of executable 'binding:linux64:release:executable'.
+assembleDependentsBindingMacosDebugExecutable - Assemble dependents of executable 'binding:macos:debug:executable'.
+assembleDependentsBindingMacosReleaseExecutable - Assemble dependents of executable 'binding:macos:release:executable'.
+assembleDependentsBindingWin32DebugExecutable - Assemble dependents of executable 'binding:win32:debug:executable'.
+assembleDependentsBindingWin32ReleaseExecutable - Assemble dependents of executable 'binding:win32:release:executable'.
+assembleDependentsBindingWin64DebugExecutable - Assemble dependents of executable 'binding:win64:debug:executable'.
+assembleDependentsBindingWin64ReleaseExecutable - Assemble dependents of executable 'binding:win64:release:executable'.
+assembleDependentsCppParser - Assemble dependents of native library 'CppParser'.
+assembleDependentsCppParserLinux32DebugSharedLibrary - Assemble dependents of shared library 'cppParser:linux32:debug:sharedLibrary'.
+assembleDependentsCppParserLinux32DebugStaticLibrary - Assemble dependents of static library 'cppParser:linux32:debug:staticLibrary'.
+assembleDependentsCppParserLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'cppParser:linux32:release:sharedLibrary'.
+assembleDependentsCppParserLinux32ReleaseStaticLibrary - Assemble dependents of static library 'cppParser:linux32:release:staticLibrary'.
+assembleDependentsCppParserLinux64DebugSharedLibrary - Assemble dependents of shared library 'cppParser:linux64:debug:sharedLibrary'.
+assembleDependentsCppParserLinux64DebugStaticLibrary - Assemble dependents of static library 'cppParser:linux64:debug:staticLibrary'.
+assembleDependentsCppParserLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'cppParser:linux64:release:sharedLibrary'.
+assembleDependentsCppParserLinux64ReleaseStaticLibrary - Assemble dependents of static library 'cppParser:linux64:release:staticLibrary'.
+assembleDependentsCppParserMacosDebugSharedLibrary - Assemble dependents of shared library 'cppParser:macos:debug:sharedLibrary'.
+assembleDependentsCppParserMacosDebugStaticLibrary - Assemble dependents of static library 'cppParser:macos:debug:staticLibrary'.
+assembleDependentsCppParserMacosReleaseSharedLibrary - Assemble dependents of shared library 'cppParser:macos:release:sharedLibrary'.
+assembleDependentsCppParserMacosReleaseStaticLibrary - Assemble dependents of static library 'cppParser:macos:release:staticLibrary'.
+assembleDependentsCppParserTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'cppParserTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsCppParserTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'cppParserTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsCppParserTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'cppParserTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsCppParserTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'cppParserTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsCppParserTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'cppParserTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsCppParserTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'cppParserTestSuite:macos:release:cppUnitExe'.
+assembleDependentsCppParserTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'cppParserTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsCppParserTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'cppParserTestSuite:win32:release:cppUnitExe'.
+assembleDependentsCppParserTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'cppParserTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsCppParserTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'cppParserTestSuite:win64:release:cppUnitExe'.
+assembleDependentsCppParserWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'cppParser:win32:debug:semiStaticLibrary'.
+assembleDependentsCppParserWin32DebugSharedLibrary - Assemble dependents of shared library 'cppParser:win32:debug:sharedLibrary'.
+assembleDependentsCppParserWin32DebugStaticLibrary - Assemble dependents of static library 'cppParser:win32:debug:staticLibrary'.
+assembleDependentsCppParserWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'cppParser:win32:release:semiStaticLibrary'.
+assembleDependentsCppParserWin32ReleaseSharedLibrary - Assemble dependents of shared library 'cppParser:win32:release:sharedLibrary'.
+assembleDependentsCppParserWin32ReleaseStaticLibrary - Assemble dependents of static library 'cppParser:win32:release:staticLibrary'.
+assembleDependentsCppParserWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'cppParser:win64:debug:semiStaticLibrary'.
+assembleDependentsCppParserWin64DebugSharedLibrary - Assemble dependents of shared library 'cppParser:win64:debug:sharedLibrary'.
+assembleDependentsCppParserWin64DebugStaticLibrary - Assemble dependents of static library 'cppParser:win64:debug:staticLibrary'.
+assembleDependentsCppParserWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'cppParser:win64:release:semiStaticLibrary'.
+assembleDependentsCppParserWin64ReleaseSharedLibrary - Assemble dependents of shared library 'cppParser:win64:release:sharedLibrary'.
+assembleDependentsCppParserWin64ReleaseStaticLibrary - Assemble dependents of static library 'cppParser:win64:release:staticLibrary'.
+assembleDependentsCppUnit - Assemble dependents of native library 'CppUnit'.
+assembleDependentsCppUnitLinux32DebugSharedLibrary - Assemble dependents of shared library 'cppUnit:linux32:debug:sharedLibrary'.
+assembleDependentsCppUnitLinux32DebugStaticLibrary - Assemble dependents of static library 'cppUnit:linux32:debug:staticLibrary'.
+assembleDependentsCppUnitLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'cppUnit:linux32:release:sharedLibrary'.
+assembleDependentsCppUnitLinux32ReleaseStaticLibrary - Assemble dependents of static library 'cppUnit:linux32:release:staticLibrary'.
+assembleDependentsCppUnitLinux64DebugSharedLibrary - Assemble dependents of shared library 'cppUnit:linux64:debug:sharedLibrary'.
+assembleDependentsCppUnitLinux64DebugStaticLibrary - Assemble dependents of static library 'cppUnit:linux64:debug:staticLibrary'.
+assembleDependentsCppUnitLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'cppUnit:linux64:release:sharedLibrary'.
+assembleDependentsCppUnitLinux64ReleaseStaticLibrary - Assemble dependents of static library 'cppUnit:linux64:release:staticLibrary'.
+assembleDependentsCppUnitMacosDebugSharedLibrary - Assemble dependents of shared library 'cppUnit:macos:debug:sharedLibrary'.
+assembleDependentsCppUnitMacosDebugStaticLibrary - Assemble dependents of static library 'cppUnit:macos:debug:staticLibrary'.
+assembleDependentsCppUnitMacosReleaseSharedLibrary - Assemble dependents of shared library 'cppUnit:macos:release:sharedLibrary'.
+assembleDependentsCppUnitMacosReleaseStaticLibrary - Assemble dependents of static library 'cppUnit:macos:release:staticLibrary'.
+assembleDependentsCppUnitWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'cppUnit:win32:debug:semiStaticLibrary'.
+assembleDependentsCppUnitWin32DebugSharedLibrary - Assemble dependents of shared library 'cppUnit:win32:debug:sharedLibrary'.
+assembleDependentsCppUnitWin32DebugStaticLibrary - Assemble dependents of static library 'cppUnit:win32:debug:staticLibrary'.
+assembleDependentsCppUnitWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'cppUnit:win32:release:semiStaticLibrary'.
+assembleDependentsCppUnitWin32ReleaseSharedLibrary - Assemble dependents of shared library 'cppUnit:win32:release:sharedLibrary'.
+assembleDependentsCppUnitWin32ReleaseStaticLibrary - Assemble dependents of static library 'cppUnit:win32:release:staticLibrary'.
+assembleDependentsCppUnitWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'cppUnit:win64:debug:semiStaticLibrary'.
+assembleDependentsCppUnitWin64DebugSharedLibrary - Assemble dependents of shared library 'cppUnit:win64:debug:sharedLibrary'.
+assembleDependentsCppUnitWin64DebugStaticLibrary - Assemble dependents of static library 'cppUnit:win64:debug:staticLibrary'.
+assembleDependentsCppUnitWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'cppUnit:win64:release:semiStaticLibrary'.
+assembleDependentsCppUnitWin64ReleaseSharedLibrary - Assemble dependents of shared library 'cppUnit:win64:release:sharedLibrary'.
+assembleDependentsCppUnitWin64ReleaseStaticLibrary - Assemble dependents of static library 'cppUnit:win64:release:staticLibrary'.
+assembleDependentsCpspc - Assemble dependents of native executable 'cpspc'.
+assembleDependentsCpspcLinux32DebugExecutable - Assemble dependents of executable 'cpspc:linux32:debug:executable'.
+assembleDependentsCpspcLinux32ReleaseExecutable - Assemble dependents of executable 'cpspc:linux32:release:executable'.
+assembleDependentsCpspcLinux64DebugExecutable - Assemble dependents of executable 'cpspc:linux64:debug:executable'.
+assembleDependentsCpspcLinux64ReleaseExecutable - Assemble dependents of executable 'cpspc:linux64:release:executable'.
+assembleDependentsCpspcMacosDebugExecutable - Assemble dependents of executable 'cpspc:macos:debug:executable'.
+assembleDependentsCpspcMacosReleaseExecutable - Assemble dependents of executable 'cpspc:macos:release:executable'.
+assembleDependentsCpspcWin32DebugExecutable - Assemble dependents of executable 'cpspc:win32:debug:executable'.
+assembleDependentsCpspcWin32ReleaseExecutable - Assemble dependents of executable 'cpspc:win32:release:executable'.
+assembleDependentsCpspcWin64DebugExecutable - Assemble dependents of executable 'cpspc:win64:debug:executable'.
+assembleDependentsCpspcWin64ReleaseExecutable - Assemble dependents of executable 'cpspc:win64:release:executable'.
+assembleDependentsCrypto - Assemble dependents of native library 'Crypto'.
+assembleDependentsCryptoLinux32DebugSharedLibrary - Assemble dependents of shared library 'crypto:linux32:debug:sharedLibrary'.
+assembleDependentsCryptoLinux32DebugStaticLibrary - Assemble dependents of static library 'crypto:linux32:debug:staticLibrary'.
+assembleDependentsCryptoLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'crypto:linux32:release:sharedLibrary'.
+assembleDependentsCryptoLinux32ReleaseStaticLibrary - Assemble dependents of static library 'crypto:linux32:release:staticLibrary'.
+assembleDependentsCryptoLinux64DebugSharedLibrary - Assemble dependents of shared library 'crypto:linux64:debug:sharedLibrary'.
+assembleDependentsCryptoLinux64DebugStaticLibrary - Assemble dependents of static library 'crypto:linux64:debug:staticLibrary'.
+assembleDependentsCryptoLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'crypto:linux64:release:sharedLibrary'.
+assembleDependentsCryptoLinux64ReleaseStaticLibrary - Assemble dependents of static library 'crypto:linux64:release:staticLibrary'.
+assembleDependentsCryptoMacosDebugSharedLibrary - Assemble dependents of shared library 'crypto:macos:debug:sharedLibrary'.
+assembleDependentsCryptoMacosDebugStaticLibrary - Assemble dependents of static library 'crypto:macos:debug:staticLibrary'.
+assembleDependentsCryptoMacosReleaseSharedLibrary - Assemble dependents of shared library 'crypto:macos:release:sharedLibrary'.
+assembleDependentsCryptoMacosReleaseStaticLibrary - Assemble dependents of static library 'crypto:macos:release:staticLibrary'.
+assembleDependentsCryptoTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'cryptoTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsCryptoTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'cryptoTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsCryptoTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'cryptoTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsCryptoTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'cryptoTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsCryptoTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'cryptoTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsCryptoTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'cryptoTestSuite:macos:release:cppUnitExe'.
+assembleDependentsCryptoTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'cryptoTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsCryptoTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'cryptoTestSuite:win32:release:cppUnitExe'.
+assembleDependentsCryptoTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'cryptoTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsCryptoTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'cryptoTestSuite:win64:release:cppUnitExe'.
+assembleDependentsCryptoWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'crypto:win32:debug:semiStaticLibrary'.
+assembleDependentsCryptoWin32DebugSharedLibrary - Assemble dependents of shared library 'crypto:win32:debug:sharedLibrary'.
+assembleDependentsCryptoWin32DebugStaticLibrary - Assemble dependents of static library 'crypto:win32:debug:staticLibrary'.
+assembleDependentsCryptoWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'crypto:win32:release:semiStaticLibrary'.
+assembleDependentsCryptoWin32ReleaseSharedLibrary - Assemble dependents of shared library 'crypto:win32:release:sharedLibrary'.
+assembleDependentsCryptoWin32ReleaseStaticLibrary - Assemble dependents of static library 'crypto:win32:release:staticLibrary'.
+assembleDependentsCryptoWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'crypto:win64:debug:semiStaticLibrary'.
+assembleDependentsCryptoWin64DebugSharedLibrary - Assemble dependents of shared library 'crypto:win64:debug:sharedLibrary'.
+assembleDependentsCryptoWin64DebugStaticLibrary - Assemble dependents of static library 'crypto:win64:debug:staticLibrary'.
+assembleDependentsCryptoWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'crypto:win64:release:semiStaticLibrary'.
+assembleDependentsCryptoWin64ReleaseSharedLibrary - Assemble dependents of shared library 'crypto:win64:release:sharedLibrary'.
+assembleDependentsCryptoWin64ReleaseStaticLibrary - Assemble dependents of static library 'crypto:win64:release:staticLibrary'.
+assembleDependentsData - Assemble dependents of native library 'Data'.
+assembleDependentsDataLinux32DebugExecutable - Assemble dependents of executable 'data:linux32:debug:executable'.
+assembleDependentsDataLinux32DebugSharedLibrary - Assemble dependents of shared library 'data:linux32:debug:sharedLibrary'.
+assembleDependentsDataLinux32DebugStaticLibrary - Assemble dependents of static library 'data:linux32:debug:staticLibrary'.
+assembleDependentsDataLinux32ReleaseExecutable - Assemble dependents of executable 'data:linux32:release:executable'.
+assembleDependentsDataLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'data:linux32:release:sharedLibrary'.
+assembleDependentsDataLinux32ReleaseStaticLibrary - Assemble dependents of static library 'data:linux32:release:staticLibrary'.
+assembleDependentsDataLinux64DebugExecutable - Assemble dependents of executable 'data:linux64:debug:executable'.
+assembleDependentsDataLinux64DebugSharedLibrary - Assemble dependents of shared library 'data:linux64:debug:sharedLibrary'.
+assembleDependentsDataLinux64DebugStaticLibrary - Assemble dependents of static library 'data:linux64:debug:staticLibrary'.
+assembleDependentsDataLinux64ReleaseExecutable - Assemble dependents of executable 'data:linux64:release:executable'.
+assembleDependentsDataLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'data:linux64:release:sharedLibrary'.
+assembleDependentsDataLinux64ReleaseStaticLibrary - Assemble dependents of static library 'data:linux64:release:staticLibrary'.
+assembleDependentsDataMacosDebugExecutable - Assemble dependents of executable 'data:macos:debug:executable'.
+assembleDependentsDataMacosDebugSharedLibrary - Assemble dependents of shared library 'data:macos:debug:sharedLibrary'.
+assembleDependentsDataMacosDebugStaticLibrary - Assemble dependents of static library 'data:macos:debug:staticLibrary'.
+assembleDependentsDataMacosReleaseExecutable - Assemble dependents of executable 'data:macos:release:executable'.
+assembleDependentsDataMacosReleaseSharedLibrary - Assemble dependents of shared library 'data:macos:release:sharedLibrary'.
+assembleDependentsDataMacosReleaseStaticLibrary - Assemble dependents of static library 'data:macos:release:staticLibrary'.
+assembleDependentsDataMySQL - Assemble dependents of native library 'DataMySQL'.
+assembleDependentsDataMySQLLinux32DebugSharedLibrary - Assemble dependents of shared library 'dataMySQL:linux32:debug:sharedLibrary'.
+assembleDependentsDataMySQLLinux32DebugStaticLibrary - Assemble dependents of static library 'dataMySQL:linux32:debug:staticLibrary'.
+assembleDependentsDataMySQLLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'dataMySQL:linux32:release:sharedLibrary'.
+assembleDependentsDataMySQLLinux32ReleaseStaticLibrary - Assemble dependents of static library 'dataMySQL:linux32:release:staticLibrary'.
+assembleDependentsDataMySQLLinux64DebugSharedLibrary - Assemble dependents of shared library 'dataMySQL:linux64:debug:sharedLibrary'.
+assembleDependentsDataMySQLLinux64DebugStaticLibrary - Assemble dependents of static library 'dataMySQL:linux64:debug:staticLibrary'.
+assembleDependentsDataMySQLLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'dataMySQL:linux64:release:sharedLibrary'.
+assembleDependentsDataMySQLLinux64ReleaseStaticLibrary - Assemble dependents of static library 'dataMySQL:linux64:release:staticLibrary'.
+assembleDependentsDataMySQLMacosDebugSharedLibrary - Assemble dependents of shared library 'dataMySQL:macos:debug:sharedLibrary'.
+assembleDependentsDataMySQLMacosDebugStaticLibrary - Assemble dependents of static library 'dataMySQL:macos:debug:staticLibrary'.
+assembleDependentsDataMySQLMacosReleaseSharedLibrary - Assemble dependents of shared library 'dataMySQL:macos:release:sharedLibrary'.
+assembleDependentsDataMySQLMacosReleaseStaticLibrary - Assemble dependents of static library 'dataMySQL:macos:release:staticLibrary'.
+assembleDependentsDataMySQLWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'dataMySQL:win32:debug:semiStaticLibrary'.
+assembleDependentsDataMySQLWin32DebugSharedLibrary - Assemble dependents of shared library 'dataMySQL:win32:debug:sharedLibrary'.
+assembleDependentsDataMySQLWin32DebugStaticLibrary - Assemble dependents of static library 'dataMySQL:win32:debug:staticLibrary'.
+assembleDependentsDataMySQLWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'dataMySQL:win32:release:semiStaticLibrary'.
+assembleDependentsDataMySQLWin32ReleaseSharedLibrary - Assemble dependents of shared library 'dataMySQL:win32:release:sharedLibrary'.
+assembleDependentsDataMySQLWin32ReleaseStaticLibrary - Assemble dependents of static library 'dataMySQL:win32:release:staticLibrary'.
+assembleDependentsDataMySQLWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'dataMySQL:win64:debug:semiStaticLibrary'.
+assembleDependentsDataMySQLWin64DebugSharedLibrary - Assemble dependents of shared library 'dataMySQL:win64:debug:sharedLibrary'.
+assembleDependentsDataMySQLWin64DebugStaticLibrary - Assemble dependents of static library 'dataMySQL:win64:debug:staticLibrary'.
+assembleDependentsDataMySQLWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'dataMySQL:win64:release:semiStaticLibrary'.
+assembleDependentsDataMySQLWin64ReleaseSharedLibrary - Assemble dependents of shared library 'dataMySQL:win64:release:sharedLibrary'.
+assembleDependentsDataMySQLWin64ReleaseStaticLibrary - Assemble dependents of static library 'dataMySQL:win64:release:staticLibrary'.
+assembleDependentsDataODBC - Assemble dependents of native library 'DataODBC'.
+assembleDependentsDataODBCLinux32DebugSharedLibrary - Assemble dependents of shared library 'dataODBC:linux32:debug:sharedLibrary'.
+assembleDependentsDataODBCLinux32DebugStaticLibrary - Assemble dependents of static library 'dataODBC:linux32:debug:staticLibrary'.
+assembleDependentsDataODBCLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'dataODBC:linux32:release:sharedLibrary'.
+assembleDependentsDataODBCLinux32ReleaseStaticLibrary - Assemble dependents of static library 'dataODBC:linux32:release:staticLibrary'.
+assembleDependentsDataODBCLinux64DebugSharedLibrary - Assemble dependents of shared library 'dataODBC:linux64:debug:sharedLibrary'.
+assembleDependentsDataODBCLinux64DebugStaticLibrary - Assemble dependents of static library 'dataODBC:linux64:debug:staticLibrary'.
+assembleDependentsDataODBCLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'dataODBC:linux64:release:sharedLibrary'.
+assembleDependentsDataODBCLinux64ReleaseStaticLibrary - Assemble dependents of static library 'dataODBC:linux64:release:staticLibrary'.
+assembleDependentsDataODBCMacosDebugSharedLibrary - Assemble dependents of shared library 'dataODBC:macos:debug:sharedLibrary'.
+assembleDependentsDataODBCMacosDebugStaticLibrary - Assemble dependents of static library 'dataODBC:macos:debug:staticLibrary'.
+assembleDependentsDataODBCMacosReleaseSharedLibrary - Assemble dependents of shared library 'dataODBC:macos:release:sharedLibrary'.
+assembleDependentsDataODBCMacosReleaseStaticLibrary - Assemble dependents of static library 'dataODBC:macos:release:staticLibrary'.
+assembleDependentsDataODBCWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'dataODBC:win32:debug:semiStaticLibrary'.
+assembleDependentsDataODBCWin32DebugSharedLibrary - Assemble dependents of shared library 'dataODBC:win32:debug:sharedLibrary'.
+assembleDependentsDataODBCWin32DebugStaticLibrary - Assemble dependents of static library 'dataODBC:win32:debug:staticLibrary'.
+assembleDependentsDataODBCWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'dataODBC:win32:release:semiStaticLibrary'.
+assembleDependentsDataODBCWin32ReleaseSharedLibrary - Assemble dependents of shared library 'dataODBC:win32:release:sharedLibrary'.
+assembleDependentsDataODBCWin32ReleaseStaticLibrary - Assemble dependents of static library 'dataODBC:win32:release:staticLibrary'.
+assembleDependentsDataODBCWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'dataODBC:win64:debug:semiStaticLibrary'.
+assembleDependentsDataODBCWin64DebugSharedLibrary - Assemble dependents of shared library 'dataODBC:win64:debug:sharedLibrary'.
+assembleDependentsDataODBCWin64DebugStaticLibrary - Assemble dependents of static library 'dataODBC:win64:debug:staticLibrary'.
+assembleDependentsDataODBCWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'dataODBC:win64:release:semiStaticLibrary'.
+assembleDependentsDataODBCWin64ReleaseSharedLibrary - Assemble dependents of shared library 'dataODBC:win64:release:sharedLibrary'.
+assembleDependentsDataODBCWin64ReleaseStaticLibrary - Assemble dependents of static library 'dataODBC:win64:release:staticLibrary'.
+assembleDependentsDataPostgreSQL - Assemble dependents of native library 'DataPostgreSQL'.
+assembleDependentsDataPostgreSQLLinux32DebugSharedLibrary - Assemble dependents of shared library 'dataPostgreSQL:linux32:debug:sharedLibrary'.
+assembleDependentsDataPostgreSQLLinux32DebugStaticLibrary - Assemble dependents of static library 'dataPostgreSQL:linux32:debug:staticLibrary'.
+assembleDependentsDataPostgreSQLLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'dataPostgreSQL:linux32:release:sharedLibrary'.
+assembleDependentsDataPostgreSQLLinux32ReleaseStaticLibrary - Assemble dependents of static library 'dataPostgreSQL:linux32:release:staticLibrary'.
+assembleDependentsDataPostgreSQLLinux64DebugSharedLibrary - Assemble dependents of shared library 'dataPostgreSQL:linux64:debug:sharedLibrary'.
+assembleDependentsDataPostgreSQLLinux64DebugStaticLibrary - Assemble dependents of static library 'dataPostgreSQL:linux64:debug:staticLibrary'.
+assembleDependentsDataPostgreSQLLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'dataPostgreSQL:linux64:release:sharedLibrary'.
+assembleDependentsDataPostgreSQLLinux64ReleaseStaticLibrary - Assemble dependents of static library 'dataPostgreSQL:linux64:release:staticLibrary'.
+assembleDependentsDataPostgreSQLMacosDebugSharedLibrary - Assemble dependents of shared library 'dataPostgreSQL:macos:debug:sharedLibrary'.
+assembleDependentsDataPostgreSQLMacosDebugStaticLibrary - Assemble dependents of static library 'dataPostgreSQL:macos:debug:staticLibrary'.
+assembleDependentsDataPostgreSQLMacosReleaseSharedLibrary - Assemble dependents of shared library 'dataPostgreSQL:macos:release:sharedLibrary'.
+assembleDependentsDataPostgreSQLMacosReleaseStaticLibrary - Assemble dependents of static library 'dataPostgreSQL:macos:release:staticLibrary'.
+assembleDependentsDataPostgreSQLWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'dataPostgreSQL:win32:debug:semiStaticLibrary'.
+assembleDependentsDataPostgreSQLWin32DebugSharedLibrary - Assemble dependents of shared library 'dataPostgreSQL:win32:debug:sharedLibrary'.
+assembleDependentsDataPostgreSQLWin32DebugStaticLibrary - Assemble dependents of static library 'dataPostgreSQL:win32:debug:staticLibrary'.
+assembleDependentsDataPostgreSQLWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'dataPostgreSQL:win32:release:semiStaticLibrary'.
+assembleDependentsDataPostgreSQLWin32ReleaseSharedLibrary - Assemble dependents of shared library 'dataPostgreSQL:win32:release:sharedLibrary'.
+assembleDependentsDataPostgreSQLWin32ReleaseStaticLibrary - Assemble dependents of static library 'dataPostgreSQL:win32:release:staticLibrary'.
+assembleDependentsDataPostgreSQLWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'dataPostgreSQL:win64:debug:semiStaticLibrary'.
+assembleDependentsDataPostgreSQLWin64DebugSharedLibrary - Assemble dependents of shared library 'dataPostgreSQL:win64:debug:sharedLibrary'.
+assembleDependentsDataPostgreSQLWin64DebugStaticLibrary - Assemble dependents of static library 'dataPostgreSQL:win64:debug:staticLibrary'.
+assembleDependentsDataPostgreSQLWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'dataPostgreSQL:win64:release:semiStaticLibrary'.
+assembleDependentsDataPostgreSQLWin64ReleaseSharedLibrary - Assemble dependents of shared library 'dataPostgreSQL:win64:release:sharedLibrary'.
+assembleDependentsDataPostgreSQLWin64ReleaseStaticLibrary - Assemble dependents of static library 'dataPostgreSQL:win64:release:staticLibrary'.
+assembleDependentsDataSQLite - Assemble dependents of native library 'DataSQLite'.
+assembleDependentsDataSQLiteLinux32DebugSharedLibrary - Assemble dependents of shared library 'dataSQLite:linux32:debug:sharedLibrary'.
+assembleDependentsDataSQLiteLinux32DebugStaticLibrary - Assemble dependents of static library 'dataSQLite:linux32:debug:staticLibrary'.
+assembleDependentsDataSQLiteLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'dataSQLite:linux32:release:sharedLibrary'.
+assembleDependentsDataSQLiteLinux32ReleaseStaticLibrary - Assemble dependents of static library 'dataSQLite:linux32:release:staticLibrary'.
+assembleDependentsDataSQLiteLinux64DebugSharedLibrary - Assemble dependents of shared library 'dataSQLite:linux64:debug:sharedLibrary'.
+assembleDependentsDataSQLiteLinux64DebugStaticLibrary - Assemble dependents of static library 'dataSQLite:linux64:debug:staticLibrary'.
+assembleDependentsDataSQLiteLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'dataSQLite:linux64:release:sharedLibrary'.
+assembleDependentsDataSQLiteLinux64ReleaseStaticLibrary - Assemble dependents of static library 'dataSQLite:linux64:release:staticLibrary'.
+assembleDependentsDataSQLiteMacosDebugSharedLibrary - Assemble dependents of shared library 'dataSQLite:macos:debug:sharedLibrary'.
+assembleDependentsDataSQLiteMacosDebugStaticLibrary - Assemble dependents of static library 'dataSQLite:macos:debug:staticLibrary'.
+assembleDependentsDataSQLiteMacosReleaseSharedLibrary - Assemble dependents of shared library 'dataSQLite:macos:release:sharedLibrary'.
+assembleDependentsDataSQLiteMacosReleaseStaticLibrary - Assemble dependents of static library 'dataSQLite:macos:release:staticLibrary'.
+assembleDependentsDataSQLiteWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'dataSQLite:win32:debug:semiStaticLibrary'.
+assembleDependentsDataSQLiteWin32DebugSharedLibrary - Assemble dependents of shared library 'dataSQLite:win32:debug:sharedLibrary'.
+assembleDependentsDataSQLiteWin32DebugStaticLibrary - Assemble dependents of static library 'dataSQLite:win32:debug:staticLibrary'.
+assembleDependentsDataSQLiteWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'dataSQLite:win32:release:semiStaticLibrary'.
+assembleDependentsDataSQLiteWin32ReleaseSharedLibrary - Assemble dependents of shared library 'dataSQLite:win32:release:sharedLibrary'.
+assembleDependentsDataSQLiteWin32ReleaseStaticLibrary - Assemble dependents of static library 'dataSQLite:win32:release:staticLibrary'.
+assembleDependentsDataSQLiteWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'dataSQLite:win64:debug:semiStaticLibrary'.
+assembleDependentsDataSQLiteWin64DebugSharedLibrary - Assemble dependents of shared library 'dataSQLite:win64:debug:sharedLibrary'.
+assembleDependentsDataSQLiteWin64DebugStaticLibrary - Assemble dependents of static library 'dataSQLite:win64:debug:staticLibrary'.
+assembleDependentsDataSQLiteWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'dataSQLite:win64:release:semiStaticLibrary'.
+assembleDependentsDataSQLiteWin64ReleaseSharedLibrary - Assemble dependents of shared library 'dataSQLite:win64:release:sharedLibrary'.
+assembleDependentsDataSQLiteWin64ReleaseStaticLibrary - Assemble dependents of static library 'dataSQLite:win64:release:staticLibrary'.
+assembleDependentsDataTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'dataTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsDataTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'dataTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsDataTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'dataTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsDataTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'dataTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsDataTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'dataTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsDataTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'dataTestSuite:macos:release:cppUnitExe'.
+assembleDependentsDataTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'dataTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsDataTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'dataTestSuite:win32:release:cppUnitExe'.
+assembleDependentsDataTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'dataTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsDataTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'dataTestSuite:win64:release:cppUnitExe'.
+assembleDependentsDataWin32DebugExecutable - Assemble dependents of executable 'data:win32:debug:executable'.
+assembleDependentsDataWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'data:win32:debug:semiStaticLibrary'.
+assembleDependentsDataWin32DebugSharedLibrary - Assemble dependents of shared library 'data:win32:debug:sharedLibrary'.
+assembleDependentsDataWin32DebugStaticLibrary - Assemble dependents of static library 'data:win32:debug:staticLibrary'.
+assembleDependentsDataWin32ReleaseExecutable - Assemble dependents of executable 'data:win32:release:executable'.
+assembleDependentsDataWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'data:win32:release:semiStaticLibrary'.
+assembleDependentsDataWin32ReleaseSharedLibrary - Assemble dependents of shared library 'data:win32:release:sharedLibrary'.
+assembleDependentsDataWin32ReleaseStaticLibrary - Assemble dependents of static library 'data:win32:release:staticLibrary'.
+assembleDependentsDataWin64DebugExecutable - Assemble dependents of executable 'data:win64:debug:executable'.
+assembleDependentsDataWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'data:win64:debug:semiStaticLibrary'.
+assembleDependentsDataWin64DebugSharedLibrary - Assemble dependents of shared library 'data:win64:debug:sharedLibrary'.
+assembleDependentsDataWin64DebugStaticLibrary - Assemble dependents of static library 'data:win64:debug:staticLibrary'.
+assembleDependentsDataWin64ReleaseExecutable - Assemble dependents of executable 'data:win64:release:executable'.
+assembleDependentsDataWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'data:win64:release:semiStaticLibrary'.
+assembleDependentsDataWin64ReleaseSharedLibrary - Assemble dependents of shared library 'data:win64:release:sharedLibrary'.
+assembleDependentsDataWin64ReleaseStaticLibrary - Assemble dependents of static library 'data:win64:release:staticLibrary'.
+assembleDependentsDateTime - Assemble dependents of native executable 'DateTime'.
+assembleDependentsDateTimeLinux32DebugExecutable - Assemble dependents of executable 'dateTime:linux32:debug:executable'.
+assembleDependentsDateTimeLinux32ReleaseExecutable - Assemble dependents of executable 'dateTime:linux32:release:executable'.
+assembleDependentsDateTimeLinux64DebugExecutable - Assemble dependents of executable 'dateTime:linux64:debug:executable'.
+assembleDependentsDateTimeLinux64ReleaseExecutable - Assemble dependents of executable 'dateTime:linux64:release:executable'.
+assembleDependentsDateTimeMacosDebugExecutable - Assemble dependents of executable 'dateTime:macos:debug:executable'.
+assembleDependentsDateTimeMacosReleaseExecutable - Assemble dependents of executable 'dateTime:macos:release:executable'.
+assembleDependentsDateTimeWin32DebugExecutable - Assemble dependents of executable 'dateTime:win32:debug:executable'.
+assembleDependentsDateTimeWin32ReleaseExecutable - Assemble dependents of executable 'dateTime:win32:release:executable'.
+assembleDependentsDateTimeWin64DebugExecutable - Assemble dependents of executable 'dateTime:win64:debug:executable'.
+assembleDependentsDateTimeWin64ReleaseExecutable - Assemble dependents of executable 'dateTime:win64:release:executable'.
+assembleDependentsDeflate - Assemble dependents of native executable 'deflate'.
+assembleDependentsDeflateLinux32DebugExecutable - Assemble dependents of executable 'deflate:linux32:debug:executable'.
+assembleDependentsDeflateLinux32ReleaseExecutable - Assemble dependents of executable 'deflate:linux32:release:executable'.
+assembleDependentsDeflateLinux64DebugExecutable - Assemble dependents of executable 'deflate:linux64:debug:executable'.
+assembleDependentsDeflateLinux64ReleaseExecutable - Assemble dependents of executable 'deflate:linux64:release:executable'.
+assembleDependentsDeflateMacosDebugExecutable - Assemble dependents of executable 'deflate:macos:debug:executable'.
+assembleDependentsDeflateMacosReleaseExecutable - Assemble dependents of executable 'deflate:macos:release:executable'.
+assembleDependentsDeflateWin32DebugExecutable - Assemble dependents of executable 'deflate:win32:debug:executable'.
+assembleDependentsDeflateWin32ReleaseExecutable - Assemble dependents of executable 'deflate:win32:release:executable'.
+assembleDependentsDeflateWin64DebugExecutable - Assemble dependents of executable 'deflate:win64:debug:executable'.
+assembleDependentsDeflateWin64ReleaseExecutable - Assemble dependents of executable 'deflate:win64:release:executable'.
+assembleDependentsDict - Assemble dependents of native executable 'dict'.
+assembleDependentsDictLinux32DebugExecutable - Assemble dependents of executable 'dict:linux32:debug:executable'.
+assembleDependentsDictLinux32ReleaseExecutable - Assemble dependents of executable 'dict:linux32:release:executable'.
+assembleDependentsDictLinux64DebugExecutable - Assemble dependents of executable 'dict:linux64:debug:executable'.
+assembleDependentsDictLinux64ReleaseExecutable - Assemble dependents of executable 'dict:linux64:release:executable'.
+assembleDependentsDictMacosDebugExecutable - Assemble dependents of executable 'dict:macos:debug:executable'.
+assembleDependentsDictMacosReleaseExecutable - Assemble dependents of executable 'dict:macos:release:executable'.
+assembleDependentsDictWin32DebugExecutable - Assemble dependents of executable 'dict:win32:debug:executable'.
+assembleDependentsDictWin32ReleaseExecutable - Assemble dependents of executable 'dict:win32:release:executable'.
+assembleDependentsDictWin64DebugExecutable - Assemble dependents of executable 'dict:win64:debug:executable'.
+assembleDependentsDictWin64ReleaseExecutable - Assemble dependents of executable 'dict:win64:release:executable'.
+assembleDependentsDir - Assemble dependents of native executable 'dir'.
+assembleDependentsDirLinux32DebugExecutable - Assemble dependents of executable 'dir:linux32:debug:executable'.
+assembleDependentsDirLinux32ReleaseExecutable - Assemble dependents of executable 'dir:linux32:release:executable'.
+assembleDependentsDirLinux64DebugExecutable - Assemble dependents of executable 'dir:linux64:debug:executable'.
+assembleDependentsDirLinux64ReleaseExecutable - Assemble dependents of executable 'dir:linux64:release:executable'.
+assembleDependentsDirMacosDebugExecutable - Assemble dependents of executable 'dir:macos:debug:executable'.
+assembleDependentsDirMacosReleaseExecutable - Assemble dependents of executable 'dir:macos:release:executable'.
+assembleDependentsDirWin32DebugExecutable - Assemble dependents of executable 'dir:win32:debug:executable'.
+assembleDependentsDirWin32ReleaseExecutable - Assemble dependents of executable 'dir:win32:release:executable'.
+assembleDependentsDirWin64DebugExecutable - Assemble dependents of executable 'dir:win64:debug:executable'.
+assembleDependentsDirWin64ReleaseExecutable - Assemble dependents of executable 'dir:win64:release:executable'.
+assembleDependentsDOMParser - Assemble dependents of native executable 'DOMParser'.
+assembleDependentsDOMParserLinux32DebugExecutable - Assemble dependents of executable 'dOMParser:linux32:debug:executable'.
+assembleDependentsDOMParserLinux32ReleaseExecutable - Assemble dependents of executable 'dOMParser:linux32:release:executable'.
+assembleDependentsDOMParserLinux64DebugExecutable - Assemble dependents of executable 'dOMParser:linux64:debug:executable'.
+assembleDependentsDOMParserLinux64ReleaseExecutable - Assemble dependents of executable 'dOMParser:linux64:release:executable'.
+assembleDependentsDOMParserMacosDebugExecutable - Assemble dependents of executable 'dOMParser:macos:debug:executable'.
+assembleDependentsDOMParserMacosReleaseExecutable - Assemble dependents of executable 'dOMParser:macos:release:executable'.
+assembleDependentsDOMParserWin32DebugExecutable - Assemble dependents of executable 'dOMParser:win32:debug:executable'.
+assembleDependentsDOMParserWin32ReleaseExecutable - Assemble dependents of executable 'dOMParser:win32:release:executable'.
+assembleDependentsDOMParserWin64DebugExecutable - Assemble dependents of executable 'dOMParser:win64:debug:executable'.
+assembleDependentsDOMParserWin64ReleaseExecutable - Assemble dependents of executable 'dOMParser:win64:release:executable'.
+assembleDependentsDOMWriter - Assemble dependents of native executable 'DOMWriter'.
+assembleDependentsDOMWriterLinux32DebugExecutable - Assemble dependents of executable 'dOMWriter:linux32:debug:executable'.
+assembleDependentsDOMWriterLinux32ReleaseExecutable - Assemble dependents of executable 'dOMWriter:linux32:release:executable'.
+assembleDependentsDOMWriterLinux64DebugExecutable - Assemble dependents of executable 'dOMWriter:linux64:debug:executable'.
+assembleDependentsDOMWriterLinux64ReleaseExecutable - Assemble dependents of executable 'dOMWriter:linux64:release:executable'.
+assembleDependentsDOMWriterMacosDebugExecutable - Assemble dependents of executable 'dOMWriter:macos:debug:executable'.
+assembleDependentsDOMWriterMacosReleaseExecutable - Assemble dependents of executable 'dOMWriter:macos:release:executable'.
+assembleDependentsDOMWriterWin32DebugExecutable - Assemble dependents of executable 'dOMWriter:win32:debug:executable'.
+assembleDependentsDOMWriterWin32ReleaseExecutable - Assemble dependents of executable 'dOMWriter:win32:release:executable'.
+assembleDependentsDOMWriterWin64DebugExecutable - Assemble dependents of executable 'dOMWriter:win64:debug:executable'.
+assembleDependentsDOMWriterWin64ReleaseExecutable - Assemble dependents of executable 'dOMWriter:win64:release:executable'.
+assembleDependentsDownload - Assemble dependents of native executable 'download'.
+assembleDependentsDownloadLinux32DebugExecutable - Assemble dependents of executable 'download:linux32:debug:executable'.
+assembleDependentsDownloadLinux32ReleaseExecutable - Assemble dependents of executable 'download:linux32:release:executable'.
+assembleDependentsDownloadLinux64DebugExecutable - Assemble dependents of executable 'download:linux64:debug:executable'.
+assembleDependentsDownloadLinux64ReleaseExecutable - Assemble dependents of executable 'download:linux64:release:executable'.
+assembleDependentsDownloadMacosDebugExecutable - Assemble dependents of executable 'download:macos:debug:executable'.
+assembleDependentsDownloadMacosReleaseExecutable - Assemble dependents of executable 'download:macos:release:executable'.
+assembleDependentsDownloadWin32DebugExecutable - Assemble dependents of executable 'download:win32:debug:executable'.
+assembleDependentsDownloadWin32ReleaseExecutable - Assemble dependents of executable 'download:win32:release:executable'.
+assembleDependentsDownloadWin64DebugExecutable - Assemble dependents of executable 'download:win64:debug:executable'.
+assembleDependentsDownloadWin64ReleaseExecutable - Assemble dependents of executable 'download:win64:release:executable'.
+assembleDependentsEchoServer - Assemble dependents of native executable 'EchoServer'.
+assembleDependentsEchoServerLinux32DebugExecutable - Assemble dependents of executable 'echoServer:linux32:debug:executable'.
+assembleDependentsEchoServerLinux32ReleaseExecutable - Assemble dependents of executable 'echoServer:linux32:release:executable'.
+assembleDependentsEchoServerLinux64DebugExecutable - Assemble dependents of executable 'echoServer:linux64:debug:executable'.
+assembleDependentsEchoServerLinux64ReleaseExecutable - Assemble dependents of executable 'echoServer:linux64:release:executable'.
+assembleDependentsEchoServerMacosDebugExecutable - Assemble dependents of executable 'echoServer:macos:debug:executable'.
+assembleDependentsEchoServerMacosReleaseExecutable - Assemble dependents of executable 'echoServer:macos:release:executable'.
+assembleDependentsEchoServerWin32DebugExecutable - Assemble dependents of executable 'echoServer:win32:debug:executable'.
+assembleDependentsEchoServerWin32ReleaseExecutable - Assemble dependents of executable 'echoServer:win32:release:executable'.
+assembleDependentsEchoServerWin64DebugExecutable - Assemble dependents of executable 'echoServer:win64:debug:executable'.
+assembleDependentsEchoServerWin64ReleaseExecutable - Assemble dependents of executable 'echoServer:win64:release:executable'.
+assembleDependentsEncodings - Assemble dependents of native library 'Encodings'.
+assembleDependentsEncodingsLinux32DebugSharedLibrary - Assemble dependents of shared library 'encodings:linux32:debug:sharedLibrary'.
+assembleDependentsEncodingsLinux32DebugStaticLibrary - Assemble dependents of static library 'encodings:linux32:debug:staticLibrary'.
+assembleDependentsEncodingsLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'encodings:linux32:release:sharedLibrary'.
+assembleDependentsEncodingsLinux32ReleaseStaticLibrary - Assemble dependents of static library 'encodings:linux32:release:staticLibrary'.
+assembleDependentsEncodingsLinux64DebugSharedLibrary - Assemble dependents of shared library 'encodings:linux64:debug:sharedLibrary'.
+assembleDependentsEncodingsLinux64DebugStaticLibrary - Assemble dependents of static library 'encodings:linux64:debug:staticLibrary'.
+assembleDependentsEncodingsLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'encodings:linux64:release:sharedLibrary'.
+assembleDependentsEncodingsLinux64ReleaseStaticLibrary - Assemble dependents of static library 'encodings:linux64:release:staticLibrary'.
+assembleDependentsEncodingsMacosDebugSharedLibrary - Assemble dependents of shared library 'encodings:macos:debug:sharedLibrary'.
+assembleDependentsEncodingsMacosDebugStaticLibrary - Assemble dependents of static library 'encodings:macos:debug:staticLibrary'.
+assembleDependentsEncodingsMacosReleaseSharedLibrary - Assemble dependents of shared library 'encodings:macos:release:sharedLibrary'.
+assembleDependentsEncodingsMacosReleaseStaticLibrary - Assemble dependents of static library 'encodings:macos:release:staticLibrary'.
+assembleDependentsEncodingsTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'encodingsTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsEncodingsTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'encodingsTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsEncodingsTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'encodingsTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsEncodingsTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'encodingsTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsEncodingsTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'encodingsTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsEncodingsTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'encodingsTestSuite:macos:release:cppUnitExe'.
+assembleDependentsEncodingsTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'encodingsTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsEncodingsTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'encodingsTestSuite:win32:release:cppUnitExe'.
+assembleDependentsEncodingsTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'encodingsTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsEncodingsTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'encodingsTestSuite:win64:release:cppUnitExe'.
+assembleDependentsEncodingsWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'encodings:win32:debug:semiStaticLibrary'.
+assembleDependentsEncodingsWin32DebugSharedLibrary - Assemble dependents of shared library 'encodings:win32:debug:sharedLibrary'.
+assembleDependentsEncodingsWin32DebugStaticLibrary - Assemble dependents of static library 'encodings:win32:debug:staticLibrary'.
+assembleDependentsEncodingsWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'encodings:win32:release:semiStaticLibrary'.
+assembleDependentsEncodingsWin32ReleaseSharedLibrary - Assemble dependents of shared library 'encodings:win32:release:sharedLibrary'.
+assembleDependentsEncodingsWin32ReleaseStaticLibrary - Assemble dependents of static library 'encodings:win32:release:staticLibrary'.
+assembleDependentsEncodingsWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'encodings:win64:debug:semiStaticLibrary'.
+assembleDependentsEncodingsWin64DebugSharedLibrary - Assemble dependents of shared library 'encodings:win64:debug:sharedLibrary'.
+assembleDependentsEncodingsWin64DebugStaticLibrary - Assemble dependents of static library 'encodings:win64:debug:staticLibrary'.
+assembleDependentsEncodingsWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'encodings:win64:release:semiStaticLibrary'.
+assembleDependentsEncodingsWin64ReleaseSharedLibrary - Assemble dependents of shared library 'encodings:win64:release:sharedLibrary'.
+assembleDependentsEncodingsWin64ReleaseStaticLibrary - Assemble dependents of static library 'encodings:win64:release:staticLibrary'.
+assembleDependentsFile2page - Assemble dependents of native executable 'File2page'.
+assembleDependentsFile2pageLinux32DebugExecutable - Assemble dependents of executable 'file2page:linux32:debug:executable'.
+assembleDependentsFile2pageLinux32ReleaseExecutable - Assemble dependents of executable 'file2page:linux32:release:executable'.
+assembleDependentsFile2pageLinux64DebugExecutable - Assemble dependents of executable 'file2page:linux64:debug:executable'.
+assembleDependentsFile2pageLinux64ReleaseExecutable - Assemble dependents of executable 'file2page:linux64:release:executable'.
+assembleDependentsFile2pageMacosDebugExecutable - Assemble dependents of executable 'file2page:macos:debug:executable'.
+assembleDependentsFile2pageMacosReleaseExecutable - Assemble dependents of executable 'file2page:macos:release:executable'.
+assembleDependentsFile2pageWin32DebugExecutable - Assemble dependents of executable 'file2page:win32:debug:executable'.
+assembleDependentsFile2pageWin32ReleaseExecutable - Assemble dependents of executable 'file2page:win32:release:executable'.
+assembleDependentsFile2pageWin64DebugExecutable - Assemble dependents of executable 'file2page:win64:debug:executable'.
+assembleDependentsFile2pageWin64ReleaseExecutable - Assemble dependents of executable 'file2page:win64:release:executable'.
+assembleDependentsFoundation - Assemble dependents of native library 'Foundation'.
+assembleDependentsFoundationLinux32DebugSharedLibrary - Assemble dependents of shared library 'foundation:linux32:debug:sharedLibrary'.
+assembleDependentsFoundationLinux32DebugStaticLibrary - Assemble dependents of static library 'foundation:linux32:debug:staticLibrary'.
+assembleDependentsFoundationLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'foundation:linux32:release:sharedLibrary'.
+assembleDependentsFoundationLinux32ReleaseStaticLibrary - Assemble dependents of static library 'foundation:linux32:release:staticLibrary'.
+assembleDependentsFoundationLinux64DebugSharedLibrary - Assemble dependents of shared library 'foundation:linux64:debug:sharedLibrary'.
+assembleDependentsFoundationLinux64DebugStaticLibrary - Assemble dependents of static library 'foundation:linux64:debug:staticLibrary'.
+assembleDependentsFoundationLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'foundation:linux64:release:sharedLibrary'.
+assembleDependentsFoundationLinux64ReleaseStaticLibrary - Assemble dependents of static library 'foundation:linux64:release:staticLibrary'.
+assembleDependentsFoundationMacosDebugSharedLibrary - Assemble dependents of shared library 'foundation:macos:debug:sharedLibrary'.
+assembleDependentsFoundationMacosDebugStaticLibrary - Assemble dependents of static library 'foundation:macos:debug:staticLibrary'.
+assembleDependentsFoundationMacosReleaseSharedLibrary - Assemble dependents of shared library 'foundation:macos:release:sharedLibrary'.
+assembleDependentsFoundationMacosReleaseStaticLibrary - Assemble dependents of static library 'foundation:macos:release:staticLibrary'.
+assembleDependentsFoundationTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'foundationTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsFoundationTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'foundationTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsFoundationTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'foundationTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsFoundationTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'foundationTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsFoundationTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'foundationTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsFoundationTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'foundationTestSuite:macos:release:cppUnitExe'.
+assembleDependentsFoundationTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'foundationTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsFoundationTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'foundationTestSuite:win32:release:cppUnitExe'.
+assembleDependentsFoundationTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'foundationTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsFoundationTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'foundationTestSuite:win64:release:cppUnitExe'.
+assembleDependentsFoundationWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'foundation:win32:debug:semiStaticLibrary'.
+assembleDependentsFoundationWin32DebugSharedLibrary - Assemble dependents of shared library 'foundation:win32:debug:sharedLibrary'.
+assembleDependentsFoundationWin32DebugStaticLibrary - Assemble dependents of static library 'foundation:win32:debug:staticLibrary'.
+assembleDependentsFoundationWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'foundation:win32:release:semiStaticLibrary'.
+assembleDependentsFoundationWin32ReleaseSharedLibrary - Assemble dependents of shared library 'foundation:win32:release:sharedLibrary'.
+assembleDependentsFoundationWin32ReleaseStaticLibrary - Assemble dependents of static library 'foundation:win32:release:staticLibrary'.
+assembleDependentsFoundationWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'foundation:win64:debug:semiStaticLibrary'.
+assembleDependentsFoundationWin64DebugSharedLibrary - Assemble dependents of shared library 'foundation:win64:debug:sharedLibrary'.
+assembleDependentsFoundationWin64DebugStaticLibrary - Assemble dependents of static library 'foundation:win64:debug:staticLibrary'.
+assembleDependentsFoundationWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'foundation:win64:release:semiStaticLibrary'.
+assembleDependentsFoundationWin64ReleaseSharedLibrary - Assemble dependents of shared library 'foundation:win64:release:sharedLibrary'.
+assembleDependentsFoundationWin64ReleaseStaticLibrary - Assemble dependents of static library 'foundation:win64:release:staticLibrary'.
+assembleDependentsGrep - Assemble dependents of native executable 'grep'.
+assembleDependentsGrepLinux32DebugExecutable - Assemble dependents of executable 'grep:linux32:debug:executable'.
+assembleDependentsGrepLinux32ReleaseExecutable - Assemble dependents of executable 'grep:linux32:release:executable'.
+assembleDependentsGrepLinux64DebugExecutable - Assemble dependents of executable 'grep:linux64:debug:executable'.
+assembleDependentsGrepLinux64ReleaseExecutable - Assemble dependents of executable 'grep:linux64:release:executable'.
+assembleDependentsGrepMacosDebugExecutable - Assemble dependents of executable 'grep:macos:debug:executable'.
+assembleDependentsGrepMacosReleaseExecutable - Assemble dependents of executable 'grep:macos:release:executable'.
+assembleDependentsGrepWin32DebugExecutable - Assemble dependents of executable 'grep:win32:debug:executable'.
+assembleDependentsGrepWin32ReleaseExecutable - Assemble dependents of executable 'grep:win32:release:executable'.
+assembleDependentsGrepWin64DebugExecutable - Assemble dependents of executable 'grep:win64:debug:executable'.
+assembleDependentsGrepWin64ReleaseExecutable - Assemble dependents of executable 'grep:win64:release:executable'.
+assembleDependentsHmacmd5 - Assemble dependents of native executable 'hmacmd5'.
+assembleDependentsHmacmd5Linux32DebugExecutable - Assemble dependents of executable 'hmacmd5:linux32:debug:executable'.
+assembleDependentsHmacmd5Linux32ReleaseExecutable - Assemble dependents of executable 'hmacmd5:linux32:release:executable'.
+assembleDependentsHmacmd5Linux64DebugExecutable - Assemble dependents of executable 'hmacmd5:linux64:debug:executable'.
+assembleDependentsHmacmd5Linux64ReleaseExecutable - Assemble dependents of executable 'hmacmd5:linux64:release:executable'.
+assembleDependentsHmacmd5MacosDebugExecutable - Assemble dependents of executable 'hmacmd5:macos:debug:executable'.
+assembleDependentsHmacmd5MacosReleaseExecutable - Assemble dependents of executable 'hmacmd5:macos:release:executable'.
+assembleDependentsHmacmd5Win32DebugExecutable - Assemble dependents of executable 'hmacmd5:win32:debug:executable'.
+assembleDependentsHmacmd5Win32ReleaseExecutable - Assemble dependents of executable 'hmacmd5:win32:release:executable'.
+assembleDependentsHmacmd5Win64DebugExecutable - Assemble dependents of executable 'hmacmd5:win64:debug:executable'.
+assembleDependentsHmacmd5Win64ReleaseExecutable - Assemble dependents of executable 'hmacmd5:win64:release:executable'.
+assembleDependentsHTTPFormServer - Assemble dependents of native executable 'HTTPFormServer'.
+assembleDependentsHTTPFormServerLinux32DebugExecutable - Assemble dependents of executable 'hTTPFormServer:linux32:debug:executable'.
+assembleDependentsHTTPFormServerLinux32ReleaseExecutable - Assemble dependents of executable 'hTTPFormServer:linux32:release:executable'.
+assembleDependentsHTTPFormServerLinux64DebugExecutable - Assemble dependents of executable 'hTTPFormServer:linux64:debug:executable'.
+assembleDependentsHTTPFormServerLinux64ReleaseExecutable - Assemble dependents of executable 'hTTPFormServer:linux64:release:executable'.
+assembleDependentsHTTPFormServerMacosDebugExecutable - Assemble dependents of executable 'hTTPFormServer:macos:debug:executable'.
+assembleDependentsHTTPFormServerMacosReleaseExecutable - Assemble dependents of executable 'hTTPFormServer:macos:release:executable'.
+assembleDependentsHTTPFormServerWin32DebugExecutable - Assemble dependents of executable 'hTTPFormServer:win32:debug:executable'.
+assembleDependentsHTTPFormServerWin32ReleaseExecutable - Assemble dependents of executable 'hTTPFormServer:win32:release:executable'.
+assembleDependentsHTTPFormServerWin64DebugExecutable - Assemble dependents of executable 'hTTPFormServer:win64:debug:executable'.
+assembleDependentsHTTPFormServerWin64ReleaseExecutable - Assemble dependents of executable 'hTTPFormServer:win64:release:executable'.
+assembleDependentsHttpget - Assemble dependents of native executable 'httpget'.
+assembleDependentsHttpgetLinux32DebugExecutable - Assemble dependents of executable 'httpget:linux32:debug:executable'.
+assembleDependentsHttpgetLinux32ReleaseExecutable - Assemble dependents of executable 'httpget:linux32:release:executable'.
+assembleDependentsHttpgetLinux64DebugExecutable - Assemble dependents of executable 'httpget:linux64:debug:executable'.
+assembleDependentsHttpgetLinux64ReleaseExecutable - Assemble dependents of executable 'httpget:linux64:release:executable'.
+assembleDependentsHttpgetMacosDebugExecutable - Assemble dependents of executable 'httpget:macos:debug:executable'.
+assembleDependentsHttpgetMacosReleaseExecutable - Assemble dependents of executable 'httpget:macos:release:executable'.
+assembleDependentsHttpgetWin32DebugExecutable - Assemble dependents of executable 'httpget:win32:debug:executable'.
+assembleDependentsHttpgetWin32ReleaseExecutable - Assemble dependents of executable 'httpget:win32:release:executable'.
+assembleDependentsHttpgetWin64DebugExecutable - Assemble dependents of executable 'httpget:win64:debug:executable'.
+assembleDependentsHttpgetWin64ReleaseExecutable - Assemble dependents of executable 'httpget:win64:release:executable'.
+assembleDependentsHTTPLoadTest - Assemble dependents of native executable 'HTTPLoadTest'.
+assembleDependentsHTTPLoadTestLinux32DebugExecutable - Assemble dependents of executable 'hTTPLoadTest:linux32:debug:executable'.
+assembleDependentsHTTPLoadTestLinux32ReleaseExecutable - Assemble dependents of executable 'hTTPLoadTest:linux32:release:executable'.
+assembleDependentsHTTPLoadTestLinux64DebugExecutable - Assemble dependents of executable 'hTTPLoadTest:linux64:debug:executable'.
+assembleDependentsHTTPLoadTestLinux64ReleaseExecutable - Assemble dependents of executable 'hTTPLoadTest:linux64:release:executable'.
+assembleDependentsHTTPLoadTestMacosDebugExecutable - Assemble dependents of executable 'hTTPLoadTest:macos:debug:executable'.
+assembleDependentsHTTPLoadTestMacosReleaseExecutable - Assemble dependents of executable 'hTTPLoadTest:macos:release:executable'.
+assembleDependentsHTTPLoadTestWin32DebugExecutable - Assemble dependents of executable 'hTTPLoadTest:win32:debug:executable'.
+assembleDependentsHTTPLoadTestWin32ReleaseExecutable - Assemble dependents of executable 'hTTPLoadTest:win32:release:executable'.
+assembleDependentsHTTPLoadTestWin64DebugExecutable - Assemble dependents of executable 'hTTPLoadTest:win64:debug:executable'.
+assembleDependentsHTTPLoadTestWin64ReleaseExecutable - Assemble dependents of executable 'hTTPLoadTest:win64:release:executable'.
+assembleDependentsHTTPSTimeServer - Assemble dependents of native executable 'HTTPSTimeServer'.
+assembleDependentsHTTPSTimeServerLinux32DebugExecutable - Assemble dependents of executable 'hTTPSTimeServer:linux32:debug:executable'.
+assembleDependentsHTTPSTimeServerLinux32ReleaseExecutable - Assemble dependents of executable 'hTTPSTimeServer:linux32:release:executable'.
+assembleDependentsHTTPSTimeServerLinux64DebugExecutable - Assemble dependents of executable 'hTTPSTimeServer:linux64:debug:executable'.
+assembleDependentsHTTPSTimeServerLinux64ReleaseExecutable - Assemble dependents of executable 'hTTPSTimeServer:linux64:release:executable'.
+assembleDependentsHTTPSTimeServerMacosDebugExecutable - Assemble dependents of executable 'hTTPSTimeServer:macos:debug:executable'.
+assembleDependentsHTTPSTimeServerMacosReleaseExecutable - Assemble dependents of executable 'hTTPSTimeServer:macos:release:executable'.
+assembleDependentsHTTPSTimeServerWin32DebugExecutable - Assemble dependents of executable 'hTTPSTimeServer:win32:debug:executable'.
+assembleDependentsHTTPSTimeServerWin32ReleaseExecutable - Assemble dependents of executable 'hTTPSTimeServer:win32:release:executable'.
+assembleDependentsHTTPSTimeServerWin64DebugExecutable - Assemble dependents of executable 'hTTPSTimeServer:win64:debug:executable'.
+assembleDependentsHTTPSTimeServerWin64ReleaseExecutable - Assemble dependents of executable 'hTTPSTimeServer:win64:release:executable'.
+assembleDependentsHTTPTimeServer - Assemble dependents of native executable 'HTTPTimeServer'.
+assembleDependentsHTTPTimeServerLinux32DebugExecutable - Assemble dependents of executable 'hTTPTimeServer:linux32:debug:executable'.
+assembleDependentsHTTPTimeServerLinux32ReleaseExecutable - Assemble dependents of executable 'hTTPTimeServer:linux32:release:executable'.
+assembleDependentsHTTPTimeServerLinux64DebugExecutable - Assemble dependents of executable 'hTTPTimeServer:linux64:debug:executable'.
+assembleDependentsHTTPTimeServerLinux64ReleaseExecutable - Assemble dependents of executable 'hTTPTimeServer:linux64:release:executable'.
+assembleDependentsHTTPTimeServerMacosDebugExecutable - Assemble dependents of executable 'hTTPTimeServer:macos:debug:executable'.
+assembleDependentsHTTPTimeServerMacosReleaseExecutable - Assemble dependents of executable 'hTTPTimeServer:macos:release:executable'.
+assembleDependentsHTTPTimeServerWin32DebugExecutable - Assemble dependents of executable 'hTTPTimeServer:win32:debug:executable'.
+assembleDependentsHTTPTimeServerWin32ReleaseExecutable - Assemble dependents of executable 'hTTPTimeServer:win32:release:executable'.
+assembleDependentsHTTPTimeServerWin64DebugExecutable - Assemble dependents of executable 'hTTPTimeServer:win64:debug:executable'.
+assembleDependentsHTTPTimeServerWin64ReleaseExecutable - Assemble dependents of executable 'hTTPTimeServer:win64:release:executable'.
+assembleDependentsIfconfig - Assemble dependents of native executable 'ifconfig'.
+assembleDependentsIfconfigLinux32DebugExecutable - Assemble dependents of executable 'ifconfig:linux32:debug:executable'.
+assembleDependentsIfconfigLinux32ReleaseExecutable - Assemble dependents of executable 'ifconfig:linux32:release:executable'.
+assembleDependentsIfconfigLinux64DebugExecutable - Assemble dependents of executable 'ifconfig:linux64:debug:executable'.
+assembleDependentsIfconfigLinux64ReleaseExecutable - Assemble dependents of executable 'ifconfig:linux64:release:executable'.
+assembleDependentsIfconfigMacosDebugExecutable - Assemble dependents of executable 'ifconfig:macos:debug:executable'.
+assembleDependentsIfconfigMacosReleaseExecutable - Assemble dependents of executable 'ifconfig:macos:release:executable'.
+assembleDependentsIfconfigWin32DebugExecutable - Assemble dependents of executable 'ifconfig:win32:debug:executable'.
+assembleDependentsIfconfigWin32ReleaseExecutable - Assemble dependents of executable 'ifconfig:win32:release:executable'.
+assembleDependentsIfconfigWin64DebugExecutable - Assemble dependents of executable 'ifconfig:win64:debug:executable'.
+assembleDependentsIfconfigWin64ReleaseExecutable - Assemble dependents of executable 'ifconfig:win64:release:executable'.
+assembleDependentsImage - Assemble dependents of native executable 'Image'.
+assembleDependentsImageLinux32DebugExecutable - Assemble dependents of executable 'image:linux32:debug:executable'.
+assembleDependentsImageLinux32ReleaseExecutable - Assemble dependents of executable 'image:linux32:release:executable'.
+assembleDependentsImageLinux64DebugExecutable - Assemble dependents of executable 'image:linux64:debug:executable'.
+assembleDependentsImageLinux64ReleaseExecutable - Assemble dependents of executable 'image:linux64:release:executable'.
+assembleDependentsImageMacosDebugExecutable - Assemble dependents of executable 'image:macos:debug:executable'.
+assembleDependentsImageMacosReleaseExecutable - Assemble dependents of executable 'image:macos:release:executable'.
+assembleDependentsImageWin32DebugExecutable - Assemble dependents of executable 'image:win32:debug:executable'.
+assembleDependentsImageWin32ReleaseExecutable - Assemble dependents of executable 'image:win32:release:executable'.
+assembleDependentsImageWin64DebugExecutable - Assemble dependents of executable 'image:win64:debug:executable'.
+assembleDependentsImageWin64ReleaseExecutable - Assemble dependents of executable 'image:win64:release:executable'.
+assembleDependentsInflate - Assemble dependents of native executable 'inflate'.
+assembleDependentsInflateLinux32DebugExecutable - Assemble dependents of executable 'inflate:linux32:debug:executable'.
+assembleDependentsInflateLinux32ReleaseExecutable - Assemble dependents of executable 'inflate:linux32:release:executable'.
+assembleDependentsInflateLinux64DebugExecutable - Assemble dependents of executable 'inflate:linux64:debug:executable'.
+assembleDependentsInflateLinux64ReleaseExecutable - Assemble dependents of executable 'inflate:linux64:release:executable'.
+assembleDependentsInflateMacosDebugExecutable - Assemble dependents of executable 'inflate:macos:debug:executable'.
+assembleDependentsInflateMacosReleaseExecutable - Assemble dependents of executable 'inflate:macos:release:executable'.
+assembleDependentsInflateWin32DebugExecutable - Assemble dependents of executable 'inflate:win32:debug:executable'.
+assembleDependentsInflateWin32ReleaseExecutable - Assemble dependents of executable 'inflate:win32:release:executable'.
+assembleDependentsInflateWin64DebugExecutable - Assemble dependents of executable 'inflate:win64:debug:executable'.
+assembleDependentsInflateWin64ReleaseExecutable - Assemble dependents of executable 'inflate:win64:release:executable'.
+assembleDependentsJSON - Assemble dependents of native library 'JSON'.
+assembleDependentsJSONLinux32DebugSharedLibrary - Assemble dependents of shared library 'jSON:linux32:debug:sharedLibrary'.
+assembleDependentsJSONLinux32DebugStaticLibrary - Assemble dependents of static library 'jSON:linux32:debug:staticLibrary'.
+assembleDependentsJSONLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'jSON:linux32:release:sharedLibrary'.
+assembleDependentsJSONLinux32ReleaseStaticLibrary - Assemble dependents of static library 'jSON:linux32:release:staticLibrary'.
+assembleDependentsJSONLinux64DebugSharedLibrary - Assemble dependents of shared library 'jSON:linux64:debug:sharedLibrary'.
+assembleDependentsJSONLinux64DebugStaticLibrary - Assemble dependents of static library 'jSON:linux64:debug:staticLibrary'.
+assembleDependentsJSONLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'jSON:linux64:release:sharedLibrary'.
+assembleDependentsJSONLinux64ReleaseStaticLibrary - Assemble dependents of static library 'jSON:linux64:release:staticLibrary'.
+assembleDependentsJSONMacosDebugSharedLibrary - Assemble dependents of shared library 'jSON:macos:debug:sharedLibrary'.
+assembleDependentsJSONMacosDebugStaticLibrary - Assemble dependents of static library 'jSON:macos:debug:staticLibrary'.
+assembleDependentsJSONMacosReleaseSharedLibrary - Assemble dependents of shared library 'jSON:macos:release:sharedLibrary'.
+assembleDependentsJSONMacosReleaseStaticLibrary - Assemble dependents of static library 'jSON:macos:release:staticLibrary'.
+assembleDependentsJSONTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'jSONTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsJSONTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'jSONTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsJSONTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'jSONTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsJSONTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'jSONTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsJSONTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'jSONTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsJSONTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'jSONTestSuite:macos:release:cppUnitExe'.
+assembleDependentsJSONTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'jSONTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsJSONTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'jSONTestSuite:win32:release:cppUnitExe'.
+assembleDependentsJSONTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'jSONTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsJSONTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'jSONTestSuite:win64:release:cppUnitExe'.
+assembleDependentsJSONWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'jSON:win32:debug:semiStaticLibrary'.
+assembleDependentsJSONWin32DebugSharedLibrary - Assemble dependents of shared library 'jSON:win32:debug:sharedLibrary'.
+assembleDependentsJSONWin32DebugStaticLibrary - Assemble dependents of static library 'jSON:win32:debug:staticLibrary'.
+assembleDependentsJSONWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'jSON:win32:release:semiStaticLibrary'.
+assembleDependentsJSONWin32ReleaseSharedLibrary - Assemble dependents of shared library 'jSON:win32:release:sharedLibrary'.
+assembleDependentsJSONWin32ReleaseStaticLibrary - Assemble dependents of static library 'jSON:win32:release:staticLibrary'.
+assembleDependentsJSONWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'jSON:win64:debug:semiStaticLibrary'.
+assembleDependentsJSONWin64DebugSharedLibrary - Assemble dependents of shared library 'jSON:win64:debug:sharedLibrary'.
+assembleDependentsJSONWin64DebugStaticLibrary - Assemble dependents of static library 'jSON:win64:debug:staticLibrary'.
+assembleDependentsJSONWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'jSON:win64:release:semiStaticLibrary'.
+assembleDependentsJSONWin64ReleaseSharedLibrary - Assemble dependents of shared library 'jSON:win64:release:sharedLibrary'.
+assembleDependentsJSONWin64ReleaseStaticLibrary - Assemble dependents of static library 'jSON:win64:release:staticLibrary'.
+assembleDependentsLineEndingConverter - Assemble dependents of native executable 'LineEndingConverter'.
+assembleDependentsLineEndingConverterLinux32DebugExecutable - Assemble dependents of executable 'lineEndingConverter:linux32:debug:executable'.
+assembleDependentsLineEndingConverterLinux32ReleaseExecutable - Assemble dependents of executable 'lineEndingConverter:linux32:release:executable'.
+assembleDependentsLineEndingConverterLinux64DebugExecutable - Assemble dependents of executable 'lineEndingConverter:linux64:debug:executable'.
+assembleDependentsLineEndingConverterLinux64ReleaseExecutable - Assemble dependents of executable 'lineEndingConverter:linux64:release:executable'.
+assembleDependentsLineEndingConverterMacosDebugExecutable - Assemble dependents of executable 'lineEndingConverter:macos:debug:executable'.
+assembleDependentsLineEndingConverterMacosReleaseExecutable - Assemble dependents of executable 'lineEndingConverter:macos:release:executable'.
+assembleDependentsLineEndingConverterWin32DebugExecutable - Assemble dependents of executable 'lineEndingConverter:win32:debug:executable'.
+assembleDependentsLineEndingConverterWin32ReleaseExecutable - Assemble dependents of executable 'lineEndingConverter:win32:release:executable'.
+assembleDependentsLineEndingConverterWin64DebugExecutable - Assemble dependents of executable 'lineEndingConverter:win64:debug:executable'.
+assembleDependentsLineEndingConverterWin64ReleaseExecutable - Assemble dependents of executable 'lineEndingConverter:win64:release:executable'.
+assembleDependentsLogger - Assemble dependents of native executable 'Logger'.
+assembleDependentsLoggerLinux32DebugExecutable - Assemble dependents of executable 'logger:linux32:debug:executable'.
+assembleDependentsLoggerLinux32ReleaseExecutable - Assemble dependents of executable 'logger:linux32:release:executable'.
+assembleDependentsLoggerLinux64DebugExecutable - Assemble dependents of executable 'logger:linux64:debug:executable'.
+assembleDependentsLoggerLinux64ReleaseExecutable - Assemble dependents of executable 'logger:linux64:release:executable'.
+assembleDependentsLoggerMacosDebugExecutable - Assemble dependents of executable 'logger:macos:debug:executable'.
+assembleDependentsLoggerMacosReleaseExecutable - Assemble dependents of executable 'logger:macos:release:executable'.
+assembleDependentsLoggerWin32DebugExecutable - Assemble dependents of executable 'logger:win32:debug:executable'.
+assembleDependentsLoggerWin32ReleaseExecutable - Assemble dependents of executable 'logger:win32:release:executable'.
+assembleDependentsLoggerWin64DebugExecutable - Assemble dependents of executable 'logger:win64:debug:executable'.
+assembleDependentsLoggerWin64ReleaseExecutable - Assemble dependents of executable 'logger:win64:release:executable'.
+assembleDependentsLogRotation - Assemble dependents of native executable 'LogRotation'.
+assembleDependentsLogRotationLinux32DebugExecutable - Assemble dependents of executable 'logRotation:linux32:debug:executable'.
+assembleDependentsLogRotationLinux32ReleaseExecutable - Assemble dependents of executable 'logRotation:linux32:release:executable'.
+assembleDependentsLogRotationLinux64DebugExecutable - Assemble dependents of executable 'logRotation:linux64:debug:executable'.
+assembleDependentsLogRotationLinux64ReleaseExecutable - Assemble dependents of executable 'logRotation:linux64:release:executable'.
+assembleDependentsLogRotationMacosDebugExecutable - Assemble dependents of executable 'logRotation:macos:debug:executable'.
+assembleDependentsLogRotationMacosReleaseExecutable - Assemble dependents of executable 'logRotation:macos:release:executable'.
+assembleDependentsLogRotationWin32DebugExecutable - Assemble dependents of executable 'logRotation:win32:debug:executable'.
+assembleDependentsLogRotationWin32ReleaseExecutable - Assemble dependents of executable 'logRotation:win32:release:executable'.
+assembleDependentsLogRotationWin64DebugExecutable - Assemble dependents of executable 'logRotation:win64:debug:executable'.
+assembleDependentsLogRotationWin64ReleaseExecutable - Assemble dependents of executable 'logRotation:win64:release:executable'.
+assembleDependentsMail - Assemble dependents of native executable 'Mail'.
+assembleDependentsMailLinux32DebugExecutable - Assemble dependents of executable 'mail:linux32:debug:executable'.
+assembleDependentsMailLinux32ReleaseExecutable - Assemble dependents of executable 'mail:linux32:release:executable'.
+assembleDependentsMailLinux64DebugExecutable - Assemble dependents of executable 'mail:linux64:debug:executable'.
+assembleDependentsMailLinux64ReleaseExecutable - Assemble dependents of executable 'mail:linux64:release:executable'.
+assembleDependentsMailMacosDebugExecutable - Assemble dependents of executable 'mail:macos:debug:executable'.
+assembleDependentsMailMacosReleaseExecutable - Assemble dependents of executable 'mail:macos:release:executable'.
+assembleDependentsMailWin32DebugExecutable - Assemble dependents of executable 'mail:win32:debug:executable'.
+assembleDependentsMailWin32ReleaseExecutable - Assemble dependents of executable 'mail:win32:release:executable'.
+assembleDependentsMailWin64DebugExecutable - Assemble dependents of executable 'mail:win64:debug:executable'.
+assembleDependentsMailWin64ReleaseExecutable - Assemble dependents of executable 'mail:win64:release:executable'.
+assembleDependentsMd5 - Assemble dependents of native executable 'md5'.
+assembleDependentsMd5Linux32DebugExecutable - Assemble dependents of executable 'md5:linux32:debug:executable'.
+assembleDependentsMd5Linux32ReleaseExecutable - Assemble dependents of executable 'md5:linux32:release:executable'.
+assembleDependentsMd5Linux64DebugExecutable - Assemble dependents of executable 'md5:linux64:debug:executable'.
+assembleDependentsMd5Linux64ReleaseExecutable - Assemble dependents of executable 'md5:linux64:release:executable'.
+assembleDependentsMd5MacosDebugExecutable - Assemble dependents of executable 'md5:macos:debug:executable'.
+assembleDependentsMd5MacosReleaseExecutable - Assemble dependents of executable 'md5:macos:release:executable'.
+assembleDependentsMd5Win32DebugExecutable - Assemble dependents of executable 'md5:win32:debug:executable'.
+assembleDependentsMd5Win32ReleaseExecutable - Assemble dependents of executable 'md5:win32:release:executable'.
+assembleDependentsMd5Win64DebugExecutable - Assemble dependents of executable 'md5:win64:debug:executable'.
+assembleDependentsMd5Win64ReleaseExecutable - Assemble dependents of executable 'md5:win64:release:executable'.
+assembleDependentsMongoDB - Assemble dependents of native library 'MongoDB'.
+assembleDependentsMongoDBLinux32DebugSharedLibrary - Assemble dependents of shared library 'mongoDB:linux32:debug:sharedLibrary'.
+assembleDependentsMongoDBLinux32DebugStaticLibrary - Assemble dependents of static library 'mongoDB:linux32:debug:staticLibrary'.
+assembleDependentsMongoDBLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'mongoDB:linux32:release:sharedLibrary'.
+assembleDependentsMongoDBLinux32ReleaseStaticLibrary - Assemble dependents of static library 'mongoDB:linux32:release:staticLibrary'.
+assembleDependentsMongoDBLinux64DebugSharedLibrary - Assemble dependents of shared library 'mongoDB:linux64:debug:sharedLibrary'.
+assembleDependentsMongoDBLinux64DebugStaticLibrary - Assemble dependents of static library 'mongoDB:linux64:debug:staticLibrary'.
+assembleDependentsMongoDBLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'mongoDB:linux64:release:sharedLibrary'.
+assembleDependentsMongoDBLinux64ReleaseStaticLibrary - Assemble dependents of static library 'mongoDB:linux64:release:staticLibrary'.
+assembleDependentsMongoDBMacosDebugSharedLibrary - Assemble dependents of shared library 'mongoDB:macos:debug:sharedLibrary'.
+assembleDependentsMongoDBMacosDebugStaticLibrary - Assemble dependents of static library 'mongoDB:macos:debug:staticLibrary'.
+assembleDependentsMongoDBMacosReleaseSharedLibrary - Assemble dependents of shared library 'mongoDB:macos:release:sharedLibrary'.
+assembleDependentsMongoDBMacosReleaseStaticLibrary - Assemble dependents of static library 'mongoDB:macos:release:staticLibrary'.
+assembleDependentsMongoDBTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'mongoDBTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsMongoDBTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'mongoDBTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsMongoDBTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'mongoDBTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsMongoDBTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'mongoDBTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsMongoDBTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'mongoDBTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsMongoDBTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'mongoDBTestSuite:macos:release:cppUnitExe'.
+assembleDependentsMongoDBTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'mongoDBTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsMongoDBTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'mongoDBTestSuite:win32:release:cppUnitExe'.
+assembleDependentsMongoDBTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'mongoDBTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsMongoDBTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'mongoDBTestSuite:win64:release:cppUnitExe'.
+assembleDependentsMongoDBWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'mongoDB:win32:debug:semiStaticLibrary'.
+assembleDependentsMongoDBWin32DebugSharedLibrary - Assemble dependents of shared library 'mongoDB:win32:debug:sharedLibrary'.
+assembleDependentsMongoDBWin32DebugStaticLibrary - Assemble dependents of static library 'mongoDB:win32:debug:staticLibrary'.
+assembleDependentsMongoDBWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'mongoDB:win32:release:semiStaticLibrary'.
+assembleDependentsMongoDBWin32ReleaseSharedLibrary - Assemble dependents of shared library 'mongoDB:win32:release:sharedLibrary'.
+assembleDependentsMongoDBWin32ReleaseStaticLibrary - Assemble dependents of static library 'mongoDB:win32:release:staticLibrary'.
+assembleDependentsMongoDBWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'mongoDB:win64:debug:semiStaticLibrary'.
+assembleDependentsMongoDBWin64DebugSharedLibrary - Assemble dependents of shared library 'mongoDB:win64:debug:sharedLibrary'.
+assembleDependentsMongoDBWin64DebugStaticLibrary - Assemble dependents of static library 'mongoDB:win64:debug:staticLibrary'.
+assembleDependentsMongoDBWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'mongoDB:win64:release:semiStaticLibrary'.
+assembleDependentsMongoDBWin64ReleaseSharedLibrary - Assemble dependents of shared library 'mongoDB:win64:release:sharedLibrary'.
+assembleDependentsMongoDBWin64ReleaseStaticLibrary - Assemble dependents of static library 'mongoDB:win64:release:staticLibrary'.
+assembleDependentsMySQLTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'mySQLTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsMySQLTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'mySQLTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsMySQLTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'mySQLTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsMySQLTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'mySQLTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsMySQLTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'mySQLTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsMySQLTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'mySQLTestSuite:macos:release:cppUnitExe'.
+assembleDependentsMySQLTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'mySQLTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsMySQLTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'mySQLTestSuite:win32:release:cppUnitExe'.
+assembleDependentsMySQLTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'mySQLTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsMySQLTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'mySQLTestSuite:win64:release:cppUnitExe'.
+assembleDependentsNet - Assemble dependents of native library 'Net'.
+assembleDependentsNetLinux32DebugSharedLibrary - Assemble dependents of shared library 'net:linux32:debug:sharedLibrary'.
+assembleDependentsNetLinux32DebugStaticLibrary - Assemble dependents of static library 'net:linux32:debug:staticLibrary'.
+assembleDependentsNetLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'net:linux32:release:sharedLibrary'.
+assembleDependentsNetLinux32ReleaseStaticLibrary - Assemble dependents of static library 'net:linux32:release:staticLibrary'.
+assembleDependentsNetLinux64DebugSharedLibrary - Assemble dependents of shared library 'net:linux64:debug:sharedLibrary'.
+assembleDependentsNetLinux64DebugStaticLibrary - Assemble dependents of static library 'net:linux64:debug:staticLibrary'.
+assembleDependentsNetLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'net:linux64:release:sharedLibrary'.
+assembleDependentsNetLinux64ReleaseStaticLibrary - Assemble dependents of static library 'net:linux64:release:staticLibrary'.
+assembleDependentsNetMacosDebugSharedLibrary - Assemble dependents of shared library 'net:macos:debug:sharedLibrary'.
+assembleDependentsNetMacosDebugStaticLibrary - Assemble dependents of static library 'net:macos:debug:staticLibrary'.
+assembleDependentsNetMacosReleaseSharedLibrary - Assemble dependents of shared library 'net:macos:release:sharedLibrary'.
+assembleDependentsNetMacosReleaseStaticLibrary - Assemble dependents of static library 'net:macos:release:staticLibrary'.
+assembleDependentsNetSSL - Assemble dependents of native library 'NetSSL'.
+assembleDependentsNetSSLLinux32DebugSharedLibrary - Assemble dependents of shared library 'netSSL:linux32:debug:sharedLibrary'.
+assembleDependentsNetSSLLinux32DebugStaticLibrary - Assemble dependents of static library 'netSSL:linux32:debug:staticLibrary'.
+assembleDependentsNetSSLLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'netSSL:linux32:release:sharedLibrary'.
+assembleDependentsNetSSLLinux32ReleaseStaticLibrary - Assemble dependents of static library 'netSSL:linux32:release:staticLibrary'.
+assembleDependentsNetSSLLinux64DebugSharedLibrary - Assemble dependents of shared library 'netSSL:linux64:debug:sharedLibrary'.
+assembleDependentsNetSSLLinux64DebugStaticLibrary - Assemble dependents of static library 'netSSL:linux64:debug:staticLibrary'.
+assembleDependentsNetSSLLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'netSSL:linux64:release:sharedLibrary'.
+assembleDependentsNetSSLLinux64ReleaseStaticLibrary - Assemble dependents of static library 'netSSL:linux64:release:staticLibrary'.
+assembleDependentsNetSSLMacosDebugSharedLibrary - Assemble dependents of shared library 'netSSL:macos:debug:sharedLibrary'.
+assembleDependentsNetSSLMacosDebugStaticLibrary - Assemble dependents of static library 'netSSL:macos:debug:staticLibrary'.
+assembleDependentsNetSSLMacosReleaseSharedLibrary - Assemble dependents of shared library 'netSSL:macos:release:sharedLibrary'.
+assembleDependentsNetSSLMacosReleaseStaticLibrary - Assemble dependents of static library 'netSSL:macos:release:staticLibrary'.
+assembleDependentsNetSSLTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'netSSLTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsNetSSLTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'netSSLTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsNetSSLTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'netSSLTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsNetSSLTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'netSSLTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsNetSSLTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'netSSLTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsNetSSLTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'netSSLTestSuite:macos:release:cppUnitExe'.
+assembleDependentsNetSSLTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'netSSLTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsNetSSLTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'netSSLTestSuite:win32:release:cppUnitExe'.
+assembleDependentsNetSSLTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'netSSLTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsNetSSLTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'netSSLTestSuite:win64:release:cppUnitExe'.
+assembleDependentsNetSSLWin - Assemble dependents of native library 'NetSSLWin'.
+assembleDependentsNetSSLWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'netSSL:win32:debug:semiStaticLibrary'.
+assembleDependentsNetSSLWin32DebugSharedLibrary - Assemble dependents of shared library 'netSSL:win32:debug:sharedLibrary'.
+assembleDependentsNetSSLWin32DebugStaticLibrary - Assemble dependents of static library 'netSSL:win32:debug:staticLibrary'.
+assembleDependentsNetSSLWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'netSSL:win32:release:semiStaticLibrary'.
+assembleDependentsNetSSLWin32ReleaseSharedLibrary - Assemble dependents of shared library 'netSSL:win32:release:sharedLibrary'.
+assembleDependentsNetSSLWin32ReleaseStaticLibrary - Assemble dependents of static library 'netSSL:win32:release:staticLibrary'.
+assembleDependentsNetSSLWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'netSSL:win64:debug:semiStaticLibrary'.
+assembleDependentsNetSSLWin64DebugSharedLibrary - Assemble dependents of shared library 'netSSL:win64:debug:sharedLibrary'.
+assembleDependentsNetSSLWin64DebugStaticLibrary - Assemble dependents of static library 'netSSL:win64:debug:staticLibrary'.
+assembleDependentsNetSSLWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'netSSL:win64:release:semiStaticLibrary'.
+assembleDependentsNetSSLWin64ReleaseSharedLibrary - Assemble dependents of shared library 'netSSL:win64:release:sharedLibrary'.
+assembleDependentsNetSSLWin64ReleaseStaticLibrary - Assemble dependents of static library 'netSSL:win64:release:staticLibrary'.
+assembleDependentsNetSSLWinLinux32DebugSharedLibrary - Assemble dependents of shared library 'netSSLWin:linux32:debug:sharedLibrary'.
+assembleDependentsNetSSLWinLinux32DebugStaticLibrary - Assemble dependents of static library 'netSSLWin:linux32:debug:staticLibrary'.
+assembleDependentsNetSSLWinLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'netSSLWin:linux32:release:sharedLibrary'.
+assembleDependentsNetSSLWinLinux32ReleaseStaticLibrary - Assemble dependents of static library 'netSSLWin:linux32:release:staticLibrary'.
+assembleDependentsNetSSLWinLinux64DebugSharedLibrary - Assemble dependents of shared library 'netSSLWin:linux64:debug:sharedLibrary'.
+assembleDependentsNetSSLWinLinux64DebugStaticLibrary - Assemble dependents of static library 'netSSLWin:linux64:debug:staticLibrary'.
+assembleDependentsNetSSLWinLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'netSSLWin:linux64:release:sharedLibrary'.
+assembleDependentsNetSSLWinLinux64ReleaseStaticLibrary - Assemble dependents of static library 'netSSLWin:linux64:release:staticLibrary'.
+assembleDependentsNetSSLWinMacosDebugSharedLibrary - Assemble dependents of shared library 'netSSLWin:macos:debug:sharedLibrary'.
+assembleDependentsNetSSLWinMacosDebugStaticLibrary - Assemble dependents of static library 'netSSLWin:macos:debug:staticLibrary'.
+assembleDependentsNetSSLWinMacosReleaseSharedLibrary - Assemble dependents of shared library 'netSSLWin:macos:release:sharedLibrary'.
+assembleDependentsNetSSLWinMacosReleaseStaticLibrary - Assemble dependents of static library 'netSSLWin:macos:release:staticLibrary'.
+assembleDependentsNetSSLWinWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'netSSLWin:win32:debug:semiStaticLibrary'.
+assembleDependentsNetSSLWinWin32DebugSharedLibrary - Assemble dependents of shared library 'netSSLWin:win32:debug:sharedLibrary'.
+assembleDependentsNetSSLWinWin32DebugStaticLibrary - Assemble dependents of static library 'netSSLWin:win32:debug:staticLibrary'.
+assembleDependentsNetSSLWinWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'netSSLWin:win32:release:semiStaticLibrary'.
+assembleDependentsNetSSLWinWin32ReleaseSharedLibrary - Assemble dependents of shared library 'netSSLWin:win32:release:sharedLibrary'.
+assembleDependentsNetSSLWinWin32ReleaseStaticLibrary - Assemble dependents of static library 'netSSLWin:win32:release:staticLibrary'.
+assembleDependentsNetSSLWinWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'netSSLWin:win64:debug:semiStaticLibrary'.
+assembleDependentsNetSSLWinWin64DebugSharedLibrary - Assemble dependents of shared library 'netSSLWin:win64:debug:sharedLibrary'.
+assembleDependentsNetSSLWinWin64DebugStaticLibrary - Assemble dependents of static library 'netSSLWin:win64:debug:staticLibrary'.
+assembleDependentsNetSSLWinWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'netSSLWin:win64:release:semiStaticLibrary'.
+assembleDependentsNetSSLWinWin64ReleaseSharedLibrary - Assemble dependents of shared library 'netSSLWin:win64:release:sharedLibrary'.
+assembleDependentsNetSSLWinWin64ReleaseStaticLibrary - Assemble dependents of static library 'netSSLWin:win64:release:staticLibrary'.
+assembleDependentsNetTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'netTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsNetTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'netTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsNetTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'netTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsNetTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'netTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsNetTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'netTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsNetTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'netTestSuite:macos:release:cppUnitExe'.
+assembleDependentsNetTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'netTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsNetTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'netTestSuite:win32:release:cppUnitExe'.
+assembleDependentsNetTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'netTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsNetTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'netTestSuite:win64:release:cppUnitExe'.
+assembleDependentsNetWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'net:win32:debug:semiStaticLibrary'.
+assembleDependentsNetWin32DebugSharedLibrary - Assemble dependents of shared library 'net:win32:debug:sharedLibrary'.
+assembleDependentsNetWin32DebugStaticLibrary - Assemble dependents of static library 'net:win32:debug:staticLibrary'.
+assembleDependentsNetWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'net:win32:release:semiStaticLibrary'.
+assembleDependentsNetWin32ReleaseSharedLibrary - Assemble dependents of shared library 'net:win32:release:sharedLibrary'.
+assembleDependentsNetWin32ReleaseStaticLibrary - Assemble dependents of static library 'net:win32:release:staticLibrary'.
+assembleDependentsNetWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'net:win64:debug:semiStaticLibrary'.
+assembleDependentsNetWin64DebugSharedLibrary - Assemble dependents of shared library 'net:win64:debug:sharedLibrary'.
+assembleDependentsNetWin64DebugStaticLibrary - Assemble dependents of static library 'net:win64:debug:staticLibrary'.
+assembleDependentsNetWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'net:win64:release:semiStaticLibrary'.
+assembleDependentsNetWin64ReleaseSharedLibrary - Assemble dependents of shared library 'net:win64:release:sharedLibrary'.
+assembleDependentsNetWin64ReleaseStaticLibrary - Assemble dependents of static library 'net:win64:release:staticLibrary'.
+assembleDependentsNotificationQueue - Assemble dependents of native executable 'NotificationQueue'.
+assembleDependentsNotificationQueueLinux32DebugExecutable - Assemble dependents of executable 'notificationQueue:linux32:debug:executable'.
+assembleDependentsNotificationQueueLinux32ReleaseExecutable - Assemble dependents of executable 'notificationQueue:linux32:release:executable'.
+assembleDependentsNotificationQueueLinux64DebugExecutable - Assemble dependents of executable 'notificationQueue:linux64:debug:executable'.
+assembleDependentsNotificationQueueLinux64ReleaseExecutable - Assemble dependents of executable 'notificationQueue:linux64:release:executable'.
+assembleDependentsNotificationQueueMacosDebugExecutable - Assemble dependents of executable 'notificationQueue:macos:debug:executable'.
+assembleDependentsNotificationQueueMacosReleaseExecutable - Assemble dependents of executable 'notificationQueue:macos:release:executable'.
+assembleDependentsNotificationQueueWin32DebugExecutable - Assemble dependents of executable 'notificationQueue:win32:debug:executable'.
+assembleDependentsNotificationQueueWin32ReleaseExecutable - Assemble dependents of executable 'notificationQueue:win32:release:executable'.
+assembleDependentsNotificationQueueWin64DebugExecutable - Assemble dependents of executable 'notificationQueue:win64:debug:executable'.
+assembleDependentsNotificationQueueWin64ReleaseExecutable - Assemble dependents of executable 'notificationQueue:win64:release:executable'.
+assembleDependentsODBCTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'oDBCTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsODBCTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'oDBCTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsODBCTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'oDBCTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsODBCTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'oDBCTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsODBCTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'oDBCTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsODBCTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'oDBCTestSuite:macos:release:cppUnitExe'.
+assembleDependentsODBCTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'oDBCTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsODBCTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'oDBCTestSuite:win32:release:cppUnitExe'.
+assembleDependentsODBCTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'oDBCTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsODBCTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'oDBCTestSuite:win64:release:cppUnitExe'.
+assembleDependentsPDF - Assemble dependents of native library 'PDF'.
+assembleDependentsPDFLinux32DebugSharedLibrary - Assemble dependents of shared library 'pDF:linux32:debug:sharedLibrary'.
+assembleDependentsPDFLinux32DebugStaticLibrary - Assemble dependents of static library 'pDF:linux32:debug:staticLibrary'.
+assembleDependentsPDFLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'pDF:linux32:release:sharedLibrary'.
+assembleDependentsPDFLinux32ReleaseStaticLibrary - Assemble dependents of static library 'pDF:linux32:release:staticLibrary'.
+assembleDependentsPDFLinux64DebugSharedLibrary - Assemble dependents of shared library 'pDF:linux64:debug:sharedLibrary'.
+assembleDependentsPDFLinux64DebugStaticLibrary - Assemble dependents of static library 'pDF:linux64:debug:staticLibrary'.
+assembleDependentsPDFLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'pDF:linux64:release:sharedLibrary'.
+assembleDependentsPDFLinux64ReleaseStaticLibrary - Assemble dependents of static library 'pDF:linux64:release:staticLibrary'.
+assembleDependentsPDFMacosDebugSharedLibrary - Assemble dependents of shared library 'pDF:macos:debug:sharedLibrary'.
+assembleDependentsPDFMacosDebugStaticLibrary - Assemble dependents of static library 'pDF:macos:debug:staticLibrary'.
+assembleDependentsPDFMacosReleaseSharedLibrary - Assemble dependents of shared library 'pDF:macos:release:sharedLibrary'.
+assembleDependentsPDFMacosReleaseStaticLibrary - Assemble dependents of static library 'pDF:macos:release:staticLibrary'.
+assembleDependentsPDFWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'pDF:win32:debug:semiStaticLibrary'.
+assembleDependentsPDFWin32DebugSharedLibrary - Assemble dependents of shared library 'pDF:win32:debug:sharedLibrary'.
+assembleDependentsPDFWin32DebugStaticLibrary - Assemble dependents of static library 'pDF:win32:debug:staticLibrary'.
+assembleDependentsPDFWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'pDF:win32:release:semiStaticLibrary'.
+assembleDependentsPDFWin32ReleaseSharedLibrary - Assemble dependents of shared library 'pDF:win32:release:sharedLibrary'.
+assembleDependentsPDFWin32ReleaseStaticLibrary - Assemble dependents of static library 'pDF:win32:release:staticLibrary'.
+assembleDependentsPDFWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'pDF:win64:debug:semiStaticLibrary'.
+assembleDependentsPDFWin64DebugSharedLibrary - Assemble dependents of shared library 'pDF:win64:debug:sharedLibrary'.
+assembleDependentsPDFWin64DebugStaticLibrary - Assemble dependents of static library 'pDF:win64:debug:staticLibrary'.
+assembleDependentsPDFWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'pDF:win64:release:semiStaticLibrary'.
+assembleDependentsPDFWin64ReleaseSharedLibrary - Assemble dependents of shared library 'pDF:win64:release:sharedLibrary'.
+assembleDependentsPDFWin64ReleaseStaticLibrary - Assemble dependents of static library 'pDF:win64:release:staticLibrary'.
+assembleDependentsPing - Assemble dependents of native executable 'Ping'.
+assembleDependentsPingLinux32DebugExecutable - Assemble dependents of executable 'ping:linux32:debug:executable'.
+assembleDependentsPingLinux32ReleaseExecutable - Assemble dependents of executable 'ping:linux32:release:executable'.
+assembleDependentsPingLinux64DebugExecutable - Assemble dependents of executable 'ping:linux64:debug:executable'.
+assembleDependentsPingLinux64ReleaseExecutable - Assemble dependents of executable 'ping:linux64:release:executable'.
+assembleDependentsPingMacosDebugExecutable - Assemble dependents of executable 'ping:macos:debug:executable'.
+assembleDependentsPingMacosReleaseExecutable - Assemble dependents of executable 'ping:macos:release:executable'.
+assembleDependentsPingWin32DebugExecutable - Assemble dependents of executable 'ping:win32:debug:executable'.
+assembleDependentsPingWin32ReleaseExecutable - Assemble dependents of executable 'ping:win32:release:executable'.
+assembleDependentsPingWin64DebugExecutable - Assemble dependents of executable 'ping:win64:debug:executable'.
+assembleDependentsPingWin64ReleaseExecutable - Assemble dependents of executable 'ping:win64:release:executable'.
+assembleDependentsPkill - Assemble dependents of native executable 'pkill'.
+assembleDependentsPkillLinux32DebugExecutable - Assemble dependents of executable 'pkill:linux32:debug:executable'.
+assembleDependentsPkillLinux32ReleaseExecutable - Assemble dependents of executable 'pkill:linux32:release:executable'.
+assembleDependentsPkillLinux64DebugExecutable - Assemble dependents of executable 'pkill:linux64:debug:executable'.
+assembleDependentsPkillLinux64ReleaseExecutable - Assemble dependents of executable 'pkill:linux64:release:executable'.
+assembleDependentsPkillMacosDebugExecutable - Assemble dependents of executable 'pkill:macos:debug:executable'.
+assembleDependentsPkillMacosReleaseExecutable - Assemble dependents of executable 'pkill:macos:release:executable'.
+assembleDependentsPkillWin32DebugExecutable - Assemble dependents of executable 'pkill:win32:debug:executable'.
+assembleDependentsPkillWin32ReleaseExecutable - Assemble dependents of executable 'pkill:win32:release:executable'.
+assembleDependentsPkillWin64DebugExecutable - Assemble dependents of executable 'pkill:win64:debug:executable'.
+assembleDependentsPkillWin64ReleaseExecutable - Assemble dependents of executable 'pkill:win64:release:executable'.
+assembleDependentsPostgreSQLTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'postgreSQLTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsPostgreSQLTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'postgreSQLTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsPostgreSQLTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'postgreSQLTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsPostgreSQLTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'postgreSQLTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsPostgreSQLTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'postgreSQLTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsPostgreSQLTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'postgreSQLTestSuite:macos:release:cppUnitExe'.
+assembleDependentsPostgreSQLTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'postgreSQLTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsPostgreSQLTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'postgreSQLTestSuite:win32:release:cppUnitExe'.
+assembleDependentsPostgreSQLTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'postgreSQLTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsPostgreSQLTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'postgreSQLTestSuite:win64:release:cppUnitExe'.
+assembleDependentsPrettyPrint - Assemble dependents of native executable 'PrettyPrint'.
+assembleDependentsPrettyPrintLinux32DebugExecutable - Assemble dependents of executable 'prettyPrint:linux32:debug:executable'.
+assembleDependentsPrettyPrintLinux32ReleaseExecutable - Assemble dependents of executable 'prettyPrint:linux32:release:executable'.
+assembleDependentsPrettyPrintLinux64DebugExecutable - Assemble dependents of executable 'prettyPrint:linux64:debug:executable'.
+assembleDependentsPrettyPrintLinux64ReleaseExecutable - Assemble dependents of executable 'prettyPrint:linux64:release:executable'.
+assembleDependentsPrettyPrintMacosDebugExecutable - Assemble dependents of executable 'prettyPrint:macos:debug:executable'.
+assembleDependentsPrettyPrintMacosReleaseExecutable - Assemble dependents of executable 'prettyPrint:macos:release:executable'.
+assembleDependentsPrettyPrintWin32DebugExecutable - Assemble dependents of executable 'prettyPrint:win32:debug:executable'.
+assembleDependentsPrettyPrintWin32ReleaseExecutable - Assemble dependents of executable 'prettyPrint:win32:release:executable'.
+assembleDependentsPrettyPrintWin64DebugExecutable - Assemble dependents of executable 'prettyPrint:win64:debug:executable'.
+assembleDependentsPrettyPrintWin64ReleaseExecutable - Assemble dependents of executable 'prettyPrint:win64:release:executable'.
+assembleDependentsRecordSet - Assemble dependents of native executable 'RecordSet'.
+assembleDependentsRecordSetLinux32DebugExecutable - Assemble dependents of executable 'recordSet:linux32:debug:executable'.
+assembleDependentsRecordSetLinux32ReleaseExecutable - Assemble dependents of executable 'recordSet:linux32:release:executable'.
+assembleDependentsRecordSetLinux64DebugExecutable - Assemble dependents of executable 'recordSet:linux64:debug:executable'.
+assembleDependentsRecordSetLinux64ReleaseExecutable - Assemble dependents of executable 'recordSet:linux64:release:executable'.
+assembleDependentsRecordSetMacosDebugExecutable - Assemble dependents of executable 'recordSet:macos:debug:executable'.
+assembleDependentsRecordSetMacosReleaseExecutable - Assemble dependents of executable 'recordSet:macos:release:executable'.
+assembleDependentsRecordSetWin32DebugExecutable - Assemble dependents of executable 'recordSet:win32:debug:executable'.
+assembleDependentsRecordSetWin32ReleaseExecutable - Assemble dependents of executable 'recordSet:win32:release:executable'.
+assembleDependentsRecordSetWin64DebugExecutable - Assemble dependents of executable 'recordSet:win64:debug:executable'.
+assembleDependentsRecordSetWin64ReleaseExecutable - Assemble dependents of executable 'recordSet:win64:release:executable'.
+assembleDependentsRedis - Assemble dependents of native library 'Redis'.
+assembleDependentsRedisLinux32DebugSharedLibrary - Assemble dependents of shared library 'redis:linux32:debug:sharedLibrary'.
+assembleDependentsRedisLinux32DebugStaticLibrary - Assemble dependents of static library 'redis:linux32:debug:staticLibrary'.
+assembleDependentsRedisLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'redis:linux32:release:sharedLibrary'.
+assembleDependentsRedisLinux32ReleaseStaticLibrary - Assemble dependents of static library 'redis:linux32:release:staticLibrary'.
+assembleDependentsRedisLinux64DebugSharedLibrary - Assemble dependents of shared library 'redis:linux64:debug:sharedLibrary'.
+assembleDependentsRedisLinux64DebugStaticLibrary - Assemble dependents of static library 'redis:linux64:debug:staticLibrary'.
+assembleDependentsRedisLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'redis:linux64:release:sharedLibrary'.
+assembleDependentsRedisLinux64ReleaseStaticLibrary - Assemble dependents of static library 'redis:linux64:release:staticLibrary'.
+assembleDependentsRedisMacosDebugSharedLibrary - Assemble dependents of shared library 'redis:macos:debug:sharedLibrary'.
+assembleDependentsRedisMacosDebugStaticLibrary - Assemble dependents of static library 'redis:macos:debug:staticLibrary'.
+assembleDependentsRedisMacosReleaseSharedLibrary - Assemble dependents of shared library 'redis:macos:release:sharedLibrary'.
+assembleDependentsRedisMacosReleaseStaticLibrary - Assemble dependents of static library 'redis:macos:release:staticLibrary'.
+assembleDependentsRedisTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'redisTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsRedisTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'redisTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsRedisTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'redisTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsRedisTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'redisTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsRedisTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'redisTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsRedisTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'redisTestSuite:macos:release:cppUnitExe'.
+assembleDependentsRedisTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'redisTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsRedisTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'redisTestSuite:win32:release:cppUnitExe'.
+assembleDependentsRedisTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'redisTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsRedisTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'redisTestSuite:win64:release:cppUnitExe'.
+assembleDependentsRedisWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'redis:win32:debug:semiStaticLibrary'.
+assembleDependentsRedisWin32DebugSharedLibrary - Assemble dependents of shared library 'redis:win32:debug:sharedLibrary'.
+assembleDependentsRedisWin32DebugStaticLibrary - Assemble dependents of static library 'redis:win32:debug:staticLibrary'.
+assembleDependentsRedisWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'redis:win32:release:semiStaticLibrary'.
+assembleDependentsRedisWin32ReleaseSharedLibrary - Assemble dependents of shared library 'redis:win32:release:sharedLibrary'.
+assembleDependentsRedisWin32ReleaseStaticLibrary - Assemble dependents of static library 'redis:win32:release:staticLibrary'.
+assembleDependentsRedisWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'redis:win64:debug:semiStaticLibrary'.
+assembleDependentsRedisWin64DebugSharedLibrary - Assemble dependents of shared library 'redis:win64:debug:sharedLibrary'.
+assembleDependentsRedisWin64DebugStaticLibrary - Assemble dependents of static library 'redis:win64:debug:staticLibrary'.
+assembleDependentsRedisWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'redis:win64:release:semiStaticLibrary'.
+assembleDependentsRedisWin64ReleaseSharedLibrary - Assemble dependents of shared library 'redis:win64:release:sharedLibrary'.
+assembleDependentsRedisWin64ReleaseStaticLibrary - Assemble dependents of static library 'redis:win64:release:staticLibrary'.
+assembleDependentsRowFormatter - Assemble dependents of native executable 'RowFormatter'.
+assembleDependentsRowFormatterLinux32DebugExecutable - Assemble dependents of executable 'rowFormatter:linux32:debug:executable'.
+assembleDependentsRowFormatterLinux32ReleaseExecutable - Assemble dependents of executable 'rowFormatter:linux32:release:executable'.
+assembleDependentsRowFormatterLinux64DebugExecutable - Assemble dependents of executable 'rowFormatter:linux64:debug:executable'.
+assembleDependentsRowFormatterLinux64ReleaseExecutable - Assemble dependents of executable 'rowFormatter:linux64:release:executable'.
+assembleDependentsRowFormatterMacosDebugExecutable - Assemble dependents of executable 'rowFormatter:macos:debug:executable'.
+assembleDependentsRowFormatterMacosReleaseExecutable - Assemble dependents of executable 'rowFormatter:macos:release:executable'.
+assembleDependentsRowFormatterWin32DebugExecutable - Assemble dependents of executable 'rowFormatter:win32:debug:executable'.
+assembleDependentsRowFormatterWin32ReleaseExecutable - Assemble dependents of executable 'rowFormatter:win32:release:executable'.
+assembleDependentsRowFormatterWin64DebugExecutable - Assemble dependents of executable 'rowFormatter:win64:debug:executable'.
+assembleDependentsRowFormatterWin64ReleaseExecutable - Assemble dependents of executable 'rowFormatter:win64:release:executable'.
+assembleDependentsSampleApp - Assemble dependents of native executable 'SampleApp'.
+assembleDependentsSampleAppLinux32DebugExecutable - Assemble dependents of executable 'sampleApp:linux32:debug:executable'.
+assembleDependentsSampleAppLinux32ReleaseExecutable - Assemble dependents of executable 'sampleApp:linux32:release:executable'.
+assembleDependentsSampleAppLinux64DebugExecutable - Assemble dependents of executable 'sampleApp:linux64:debug:executable'.
+assembleDependentsSampleAppLinux64ReleaseExecutable - Assemble dependents of executable 'sampleApp:linux64:release:executable'.
+assembleDependentsSampleAppMacosDebugExecutable - Assemble dependents of executable 'sampleApp:macos:debug:executable'.
+assembleDependentsSampleAppMacosReleaseExecutable - Assemble dependents of executable 'sampleApp:macos:release:executable'.
+assembleDependentsSampleAppWin32DebugExecutable - Assemble dependents of executable 'sampleApp:win32:debug:executable'.
+assembleDependentsSampleAppWin32ReleaseExecutable - Assemble dependents of executable 'sampleApp:win32:release:executable'.
+assembleDependentsSampleAppWin64DebugExecutable - Assemble dependents of executable 'sampleApp:win64:debug:executable'.
+assembleDependentsSampleAppWin64ReleaseExecutable - Assemble dependents of executable 'sampleApp:win64:release:executable'.
+assembleDependentsSampleServer - Assemble dependents of native executable 'SampleServer'.
+assembleDependentsSampleServerLinux32DebugExecutable - Assemble dependents of executable 'sampleServer:linux32:debug:executable'.
+assembleDependentsSampleServerLinux32ReleaseExecutable - Assemble dependents of executable 'sampleServer:linux32:release:executable'.
+assembleDependentsSampleServerLinux64DebugExecutable - Assemble dependents of executable 'sampleServer:linux64:debug:executable'.
+assembleDependentsSampleServerLinux64ReleaseExecutable - Assemble dependents of executable 'sampleServer:linux64:release:executable'.
+assembleDependentsSampleServerMacosDebugExecutable - Assemble dependents of executable 'sampleServer:macos:debug:executable'.
+assembleDependentsSampleServerMacosReleaseExecutable - Assemble dependents of executable 'sampleServer:macos:release:executable'.
+assembleDependentsSampleServerWin32DebugExecutable - Assemble dependents of executable 'sampleServer:win32:debug:executable'.
+assembleDependentsSampleServerWin32ReleaseExecutable - Assemble dependents of executable 'sampleServer:win32:release:executable'.
+assembleDependentsSampleServerWin64DebugExecutable - Assemble dependents of executable 'sampleServer:win64:debug:executable'.
+assembleDependentsSampleServerWin64ReleaseExecutable - Assemble dependents of executable 'sampleServer:win64:release:executable'.
+assembleDependentsSAXParser - Assemble dependents of native executable 'SAXParser'.
+assembleDependentsSAXParserLinux32DebugExecutable - Assemble dependents of executable 'sAXParser:linux32:debug:executable'.
+assembleDependentsSAXParserLinux32ReleaseExecutable - Assemble dependents of executable 'sAXParser:linux32:release:executable'.
+assembleDependentsSAXParserLinux64DebugExecutable - Assemble dependents of executable 'sAXParser:linux64:debug:executable'.
+assembleDependentsSAXParserLinux64ReleaseExecutable - Assemble dependents of executable 'sAXParser:linux64:release:executable'.
+assembleDependentsSAXParserMacosDebugExecutable - Assemble dependents of executable 'sAXParser:macos:debug:executable'.
+assembleDependentsSAXParserMacosReleaseExecutable - Assemble dependents of executable 'sAXParser:macos:release:executable'.
+assembleDependentsSAXParserWin32DebugExecutable - Assemble dependents of executable 'sAXParser:win32:debug:executable'.
+assembleDependentsSAXParserWin32ReleaseExecutable - Assemble dependents of executable 'sAXParser:win32:release:executable'.
+assembleDependentsSAXParserWin64DebugExecutable - Assemble dependents of executable 'sAXParser:win64:debug:executable'.
+assembleDependentsSAXParserWin64ReleaseExecutable - Assemble dependents of executable 'sAXParser:win64:release:executable'.
+assembleDependentsSMTPLogger - Assemble dependents of native executable 'SMTPLogger'.
+assembleDependentsSMTPLoggerLinux32DebugExecutable - Assemble dependents of executable 'sMTPLogger:linux32:debug:executable'.
+assembleDependentsSMTPLoggerLinux32ReleaseExecutable - Assemble dependents of executable 'sMTPLogger:linux32:release:executable'.
+assembleDependentsSMTPLoggerLinux64DebugExecutable - Assemble dependents of executable 'sMTPLogger:linux64:debug:executable'.
+assembleDependentsSMTPLoggerLinux64ReleaseExecutable - Assemble dependents of executable 'sMTPLogger:linux64:release:executable'.
+assembleDependentsSMTPLoggerMacosDebugExecutable - Assemble dependents of executable 'sMTPLogger:macos:debug:executable'.
+assembleDependentsSMTPLoggerMacosReleaseExecutable - Assemble dependents of executable 'sMTPLogger:macos:release:executable'.
+assembleDependentsSMTPLoggerWin32DebugExecutable - Assemble dependents of executable 'sMTPLogger:win32:debug:executable'.
+assembleDependentsSMTPLoggerWin32ReleaseExecutable - Assemble dependents of executable 'sMTPLogger:win32:release:executable'.
+assembleDependentsSMTPLoggerWin64DebugExecutable - Assemble dependents of executable 'sMTPLogger:win64:debug:executable'.
+assembleDependentsSMTPLoggerWin64ReleaseExecutable - Assemble dependents of executable 'sMTPLogger:win64:release:executable'.
+assembleDependentsSQLiteTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'sQLiteTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsSQLiteTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'sQLiteTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsSQLiteTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'sQLiteTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsSQLiteTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'sQLiteTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsSQLiteTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'sQLiteTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsSQLiteTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'sQLiteTestSuite:macos:release:cppUnitExe'.
+assembleDependentsSQLiteTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'sQLiteTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsSQLiteTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'sQLiteTestSuite:win32:release:cppUnitExe'.
+assembleDependentsSQLiteTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'sQLiteTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsSQLiteTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'sQLiteTestSuite:win64:release:cppUnitExe'.
+assembleDependentsSQLToMongo - Assemble dependents of native executable 'SQLToMongo'.
+assembleDependentsSQLToMongoLinux32DebugExecutable - Assemble dependents of executable 'sQLToMongo:linux32:debug:executable'.
+assembleDependentsSQLToMongoLinux32ReleaseExecutable - Assemble dependents of executable 'sQLToMongo:linux32:release:executable'.
+assembleDependentsSQLToMongoLinux64DebugExecutable - Assemble dependents of executable 'sQLToMongo:linux64:debug:executable'.
+assembleDependentsSQLToMongoLinux64ReleaseExecutable - Assemble dependents of executable 'sQLToMongo:linux64:release:executable'.
+assembleDependentsSQLToMongoMacosDebugExecutable - Assemble dependents of executable 'sQLToMongo:macos:debug:executable'.
+assembleDependentsSQLToMongoMacosReleaseExecutable - Assemble dependents of executable 'sQLToMongo:macos:release:executable'.
+assembleDependentsSQLToMongoWin32DebugExecutable - Assemble dependents of executable 'sQLToMongo:win32:debug:executable'.
+assembleDependentsSQLToMongoWin32ReleaseExecutable - Assemble dependents of executable 'sQLToMongo:win32:release:executable'.
+assembleDependentsSQLToMongoWin64DebugExecutable - Assemble dependents of executable 'sQLToMongo:win64:debug:executable'.
+assembleDependentsSQLToMongoWin64ReleaseExecutable - Assemble dependents of executable 'sQLToMongo:win64:release:executable'.
+assembleDependentsStringTokenizer - Assemble dependents of native executable 'StringTokenizer'.
+assembleDependentsStringTokenizerLinux32DebugExecutable - Assemble dependents of executable 'stringTokenizer:linux32:debug:executable'.
+assembleDependentsStringTokenizerLinux32ReleaseExecutable - Assemble dependents of executable 'stringTokenizer:linux32:release:executable'.
+assembleDependentsStringTokenizerLinux64DebugExecutable - Assemble dependents of executable 'stringTokenizer:linux64:debug:executable'.
+assembleDependentsStringTokenizerLinux64ReleaseExecutable - Assemble dependents of executable 'stringTokenizer:linux64:release:executable'.
+assembleDependentsStringTokenizerMacosDebugExecutable - Assemble dependents of executable 'stringTokenizer:macos:debug:executable'.
+assembleDependentsStringTokenizerMacosReleaseExecutable - Assemble dependents of executable 'stringTokenizer:macos:release:executable'.
+assembleDependentsStringTokenizerWin32DebugExecutable - Assemble dependents of executable 'stringTokenizer:win32:debug:executable'.
+assembleDependentsStringTokenizerWin32ReleaseExecutable - Assemble dependents of executable 'stringTokenizer:win32:release:executable'.
+assembleDependentsStringTokenizerWin64DebugExecutable - Assemble dependents of executable 'stringTokenizer:win64:debug:executable'.
+assembleDependentsStringTokenizerWin64ReleaseExecutable - Assemble dependents of executable 'stringTokenizer:win64:release:executable'.
+assembleDependentsTestApp - Assemble dependents of native executable 'TestApp'.
+assembleDependentsTestAppLinux32DebugExecutable - Assemble dependents of executable 'testApp:linux32:debug:executable'.
+assembleDependentsTestAppLinux32ReleaseExecutable - Assemble dependents of executable 'testApp:linux32:release:executable'.
+assembleDependentsTestAppLinux64DebugExecutable - Assemble dependents of executable 'testApp:linux64:debug:executable'.
+assembleDependentsTestAppLinux64ReleaseExecutable - Assemble dependents of executable 'testApp:linux64:release:executable'.
+assembleDependentsTestAppMacosDebugExecutable - Assemble dependents of executable 'testApp:macos:debug:executable'.
+assembleDependentsTestAppMacosReleaseExecutable - Assemble dependents of executable 'testApp:macos:release:executable'.
+assembleDependentsTestAppWin32DebugExecutable - Assemble dependents of executable 'testApp:win32:debug:executable'.
+assembleDependentsTestAppWin32ReleaseExecutable - Assemble dependents of executable 'testApp:win32:release:executable'.
+assembleDependentsTestAppWin64DebugExecutable - Assemble dependents of executable 'testApp:win64:debug:executable'.
+assembleDependentsTestAppWin64ReleaseExecutable - Assemble dependents of executable 'testApp:win64:release:executable'.
+assembleDependentsTestLib - Assemble dependents of native library 'TestLib'.
+assembleDependentsTestLibLinux32DebugSharedLibrary - Assemble dependents of shared library 'testLib:linux32:debug:sharedLibrary'.
+assembleDependentsTestLibLinux32DebugStaticLibrary - Assemble dependents of static library 'testLib:linux32:debug:staticLibrary'.
+assembleDependentsTestLibLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'testLib:linux32:release:sharedLibrary'.
+assembleDependentsTestLibLinux32ReleaseStaticLibrary - Assemble dependents of static library 'testLib:linux32:release:staticLibrary'.
+assembleDependentsTestLibLinux64DebugSharedLibrary - Assemble dependents of shared library 'testLib:linux64:debug:sharedLibrary'.
+assembleDependentsTestLibLinux64DebugStaticLibrary - Assemble dependents of static library 'testLib:linux64:debug:staticLibrary'.
+assembleDependentsTestLibLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'testLib:linux64:release:sharedLibrary'.
+assembleDependentsTestLibLinux64ReleaseStaticLibrary - Assemble dependents of static library 'testLib:linux64:release:staticLibrary'.
+assembleDependentsTestLibMacosDebugSharedLibrary - Assemble dependents of shared library 'testLib:macos:debug:sharedLibrary'.
+assembleDependentsTestLibMacosDebugStaticLibrary - Assemble dependents of static library 'testLib:macos:debug:staticLibrary'.
+assembleDependentsTestLibMacosReleaseSharedLibrary - Assemble dependents of shared library 'testLib:macos:release:sharedLibrary'.
+assembleDependentsTestLibMacosReleaseStaticLibrary - Assemble dependents of static library 'testLib:macos:release:staticLibrary'.
+assembleDependentsTestLibWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'testLib:win32:debug:semiStaticLibrary'.
+assembleDependentsTestLibWin32DebugSharedLibrary - Assemble dependents of shared library 'testLib:win32:debug:sharedLibrary'.
+assembleDependentsTestLibWin32DebugStaticLibrary - Assemble dependents of static library 'testLib:win32:debug:staticLibrary'.
+assembleDependentsTestLibWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'testLib:win32:release:semiStaticLibrary'.
+assembleDependentsTestLibWin32ReleaseSharedLibrary - Assemble dependents of shared library 'testLib:win32:release:sharedLibrary'.
+assembleDependentsTestLibWin32ReleaseStaticLibrary - Assemble dependents of static library 'testLib:win32:release:staticLibrary'.
+assembleDependentsTestLibWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'testLib:win64:debug:semiStaticLibrary'.
+assembleDependentsTestLibWin64DebugSharedLibrary - Assemble dependents of shared library 'testLib:win64:debug:sharedLibrary'.
+assembleDependentsTestLibWin64DebugStaticLibrary - Assemble dependents of static library 'testLib:win64:debug:staticLibrary'.
+assembleDependentsTestLibWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'testLib:win64:release:semiStaticLibrary'.
+assembleDependentsTestLibWin64ReleaseSharedLibrary - Assemble dependents of shared library 'testLib:win64:release:sharedLibrary'.
+assembleDependentsTestLibWin64ReleaseStaticLibrary - Assemble dependents of static library 'testLib:win64:release:staticLibrary'.
+assembleDependentsTestSuite - Assemble dependents of native library 'TestSuite'.
+assembleDependentsTestSuiteLinux32DebugSharedLibrary - Assemble dependents of shared library 'testSuite:linux32:debug:sharedLibrary'.
+assembleDependentsTestSuiteLinux32DebugStaticLibrary - Assemble dependents of static library 'testSuite:linux32:debug:staticLibrary'.
+assembleDependentsTestSuiteLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'testSuite:linux32:release:sharedLibrary'.
+assembleDependentsTestSuiteLinux32ReleaseStaticLibrary - Assemble dependents of static library 'testSuite:linux32:release:staticLibrary'.
+assembleDependentsTestSuiteLinux64DebugSharedLibrary - Assemble dependents of shared library 'testSuite:linux64:debug:sharedLibrary'.
+assembleDependentsTestSuiteLinux64DebugStaticLibrary - Assemble dependents of static library 'testSuite:linux64:debug:staticLibrary'.
+assembleDependentsTestSuiteLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'testSuite:linux64:release:sharedLibrary'.
+assembleDependentsTestSuiteLinux64ReleaseStaticLibrary - Assemble dependents of static library 'testSuite:linux64:release:staticLibrary'.
+assembleDependentsTestSuiteMacosDebugSharedLibrary - Assemble dependents of shared library 'testSuite:macos:debug:sharedLibrary'.
+assembleDependentsTestSuiteMacosDebugStaticLibrary - Assemble dependents of static library 'testSuite:macos:debug:staticLibrary'.
+assembleDependentsTestSuiteMacosReleaseSharedLibrary - Assemble dependents of shared library 'testSuite:macos:release:sharedLibrary'.
+assembleDependentsTestSuiteMacosReleaseStaticLibrary - Assemble dependents of static library 'testSuite:macos:release:staticLibrary'.
+assembleDependentsTestSuiteWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'testSuite:win32:debug:semiStaticLibrary'.
+assembleDependentsTestSuiteWin32DebugSharedLibrary - Assemble dependents of shared library 'testSuite:win32:debug:sharedLibrary'.
+assembleDependentsTestSuiteWin32DebugStaticLibrary - Assemble dependents of static library 'testSuite:win32:debug:staticLibrary'.
+assembleDependentsTestSuiteWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'testSuite:win32:release:semiStaticLibrary'.
+assembleDependentsTestSuiteWin32ReleaseSharedLibrary - Assemble dependents of shared library 'testSuite:win32:release:sharedLibrary'.
+assembleDependentsTestSuiteWin32ReleaseStaticLibrary - Assemble dependents of static library 'testSuite:win32:release:staticLibrary'.
+assembleDependentsTestSuiteWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'testSuite:win64:debug:semiStaticLibrary'.
+assembleDependentsTestSuiteWin64DebugSharedLibrary - Assemble dependents of shared library 'testSuite:win64:debug:sharedLibrary'.
+assembleDependentsTestSuiteWin64DebugStaticLibrary - Assemble dependents of static library 'testSuite:win64:debug:staticLibrary'.
+assembleDependentsTestSuiteWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'testSuite:win64:release:semiStaticLibrary'.
+assembleDependentsTestSuiteWin64ReleaseSharedLibrary - Assemble dependents of shared library 'testSuite:win64:release:sharedLibrary'.
+assembleDependentsTestSuiteWin64ReleaseStaticLibrary - Assemble dependents of static library 'testSuite:win64:release:staticLibrary'.
+assembleDependentsText - Assemble dependents of native executable 'Text'.
+assembleDependentsTextConverter - Assemble dependents of native executable 'TextConverter'.
+assembleDependentsTextConverterLinux32DebugExecutable - Assemble dependents of executable 'textConverter:linux32:debug:executable'.
+assembleDependentsTextConverterLinux32ReleaseExecutable - Assemble dependents of executable 'textConverter:linux32:release:executable'.
+assembleDependentsTextConverterLinux64DebugExecutable - Assemble dependents of executable 'textConverter:linux64:debug:executable'.
+assembleDependentsTextConverterLinux64ReleaseExecutable - Assemble dependents of executable 'textConverter:linux64:release:executable'.
+assembleDependentsTextConverterMacosDebugExecutable - Assemble dependents of executable 'textConverter:macos:debug:executable'.
+assembleDependentsTextConverterMacosReleaseExecutable - Assemble dependents of executable 'textConverter:macos:release:executable'.
+assembleDependentsTextConverterWin32DebugExecutable - Assemble dependents of executable 'textConverter:win32:debug:executable'.
+assembleDependentsTextConverterWin32ReleaseExecutable - Assemble dependents of executable 'textConverter:win32:release:executable'.
+assembleDependentsTextConverterWin64DebugExecutable - Assemble dependents of executable 'textConverter:win64:debug:executable'.
+assembleDependentsTextConverterWin64ReleaseExecutable - Assemble dependents of executable 'textConverter:win64:release:executable'.
+assembleDependentsTextLinux32DebugExecutable - Assemble dependents of executable 'text:linux32:debug:executable'.
+assembleDependentsTextLinux32ReleaseExecutable - Assemble dependents of executable 'text:linux32:release:executable'.
+assembleDependentsTextLinux64DebugExecutable - Assemble dependents of executable 'text:linux64:debug:executable'.
+assembleDependentsTextLinux64ReleaseExecutable - Assemble dependents of executable 'text:linux64:release:executable'.
+assembleDependentsTextMacosDebugExecutable - Assemble dependents of executable 'text:macos:debug:executable'.
+assembleDependentsTextMacosReleaseExecutable - Assemble dependents of executable 'text:macos:release:executable'.
+assembleDependentsTextWin32DebugExecutable - Assemble dependents of executable 'text:win32:debug:executable'.
+assembleDependentsTextWin32ReleaseExecutable - Assemble dependents of executable 'text:win32:release:executable'.
+assembleDependentsTextWin64DebugExecutable - Assemble dependents of executable 'text:win64:debug:executable'.
+assembleDependentsTextWin64ReleaseExecutable - Assemble dependents of executable 'text:win64:release:executable'.
+assembleDependentsTimer - Assemble dependents of native executable 'Timer'.
+assembleDependentsTimerLinux32DebugExecutable - Assemble dependents of executable 'timer:linux32:debug:executable'.
+assembleDependentsTimerLinux32ReleaseExecutable - Assemble dependents of executable 'timer:linux32:release:executable'.
+assembleDependentsTimerLinux64DebugExecutable - Assemble dependents of executable 'timer:linux64:debug:executable'.
+assembleDependentsTimerLinux64ReleaseExecutable - Assemble dependents of executable 'timer:linux64:release:executable'.
+assembleDependentsTimerMacosDebugExecutable - Assemble dependents of executable 'timer:macos:debug:executable'.
+assembleDependentsTimerMacosReleaseExecutable - Assemble dependents of executable 'timer:macos:release:executable'.
+assembleDependentsTimerWin32DebugExecutable - Assemble dependents of executable 'timer:win32:debug:executable'.
+assembleDependentsTimerWin32ReleaseExecutable - Assemble dependents of executable 'timer:win32:release:executable'.
+assembleDependentsTimerWin64DebugExecutable - Assemble dependents of executable 'timer:win64:debug:executable'.
+assembleDependentsTimerWin64ReleaseExecutable - Assemble dependents of executable 'timer:win64:release:executable'.
+assembleDependentsTimeServer - Assemble dependents of native executable 'TimeServer'.
+assembleDependentsTimeServerLinux32DebugExecutable - Assemble dependents of executable 'timeServer:linux32:debug:executable'.
+assembleDependentsTimeServerLinux32ReleaseExecutable - Assemble dependents of executable 'timeServer:linux32:release:executable'.
+assembleDependentsTimeServerLinux64DebugExecutable - Assemble dependents of executable 'timeServer:linux64:debug:executable'.
+assembleDependentsTimeServerLinux64ReleaseExecutable - Assemble dependents of executable 'timeServer:linux64:release:executable'.
+assembleDependentsTimeServerMacosDebugExecutable - Assemble dependents of executable 'timeServer:macos:debug:executable'.
+assembleDependentsTimeServerMacosReleaseExecutable - Assemble dependents of executable 'timeServer:macos:release:executable'.
+assembleDependentsTimeServerWin32DebugExecutable - Assemble dependents of executable 'timeServer:win32:debug:executable'.
+assembleDependentsTimeServerWin32ReleaseExecutable - Assemble dependents of executable 'timeServer:win32:release:executable'.
+assembleDependentsTimeServerWin64DebugExecutable - Assemble dependents of executable 'timeServer:win64:debug:executable'.
+assembleDependentsTimeServerWin64ReleaseExecutable - Assemble dependents of executable 'timeServer:win64:release:executable'.
+assembleDependentsTuple - Assemble dependents of native executable 'Tuple'.
+assembleDependentsTupleLinux32DebugExecutable - Assemble dependents of executable 'tuple:linux32:debug:executable'.
+assembleDependentsTupleLinux32ReleaseExecutable - Assemble dependents of executable 'tuple:linux32:release:executable'.
+assembleDependentsTupleLinux64DebugExecutable - Assemble dependents of executable 'tuple:linux64:debug:executable'.
+assembleDependentsTupleLinux64ReleaseExecutable - Assemble dependents of executable 'tuple:linux64:release:executable'.
+assembleDependentsTupleMacosDebugExecutable - Assemble dependents of executable 'tuple:macos:debug:executable'.
+assembleDependentsTupleMacosReleaseExecutable - Assemble dependents of executable 'tuple:macos:release:executable'.
+assembleDependentsTupleWin32DebugExecutable - Assemble dependents of executable 'tuple:win32:debug:executable'.
+assembleDependentsTupleWin32ReleaseExecutable - Assemble dependents of executable 'tuple:win32:release:executable'.
+assembleDependentsTupleWin64DebugExecutable - Assemble dependents of executable 'tuple:win64:debug:executable'.
+assembleDependentsTupleWin64ReleaseExecutable - Assemble dependents of executable 'tuple:win64:release:executable'.
+assembleDependentsTwitterClient - Assemble dependents of native executable 'TwitterClient'.
+assembleDependentsTwitterClientLinux32DebugExecutable - Assemble dependents of executable 'twitterClient:linux32:debug:executable'.
+assembleDependentsTwitterClientLinux32ReleaseExecutable - Assemble dependents of executable 'twitterClient:linux32:release:executable'.
+assembleDependentsTwitterClientLinux64DebugExecutable - Assemble dependents of executable 'twitterClient:linux64:debug:executable'.
+assembleDependentsTwitterClientLinux64ReleaseExecutable - Assemble dependents of executable 'twitterClient:linux64:release:executable'.
+assembleDependentsTwitterClientMacosDebugExecutable - Assemble dependents of executable 'twitterClient:macos:debug:executable'.
+assembleDependentsTwitterClientMacosReleaseExecutable - Assemble dependents of executable 'twitterClient:macos:release:executable'.
+assembleDependentsTwitterClientWin32DebugExecutable - Assemble dependents of executable 'twitterClient:win32:debug:executable'.
+assembleDependentsTwitterClientWin32ReleaseExecutable - Assemble dependents of executable 'twitterClient:win32:release:executable'.
+assembleDependentsTwitterClientWin64DebugExecutable - Assemble dependents of executable 'twitterClient:win64:debug:executable'.
+assembleDependentsTwitterClientWin64ReleaseExecutable - Assemble dependents of executable 'twitterClient:win64:release:executable'.
+assembleDependentsTypeHandler - Assemble dependents of native executable 'TypeHandler'.
+assembleDependentsTypeHandlerLinux32DebugExecutable - Assemble dependents of executable 'typeHandler:linux32:debug:executable'.
+assembleDependentsTypeHandlerLinux32ReleaseExecutable - Assemble dependents of executable 'typeHandler:linux32:release:executable'.
+assembleDependentsTypeHandlerLinux64DebugExecutable - Assemble dependents of executable 'typeHandler:linux64:debug:executable'.
+assembleDependentsTypeHandlerLinux64ReleaseExecutable - Assemble dependents of executable 'typeHandler:linux64:release:executable'.
+assembleDependentsTypeHandlerMacosDebugExecutable - Assemble dependents of executable 'typeHandler:macos:debug:executable'.
+assembleDependentsTypeHandlerMacosReleaseExecutable - Assemble dependents of executable 'typeHandler:macos:release:executable'.
+assembleDependentsTypeHandlerWin32DebugExecutable - Assemble dependents of executable 'typeHandler:win32:debug:executable'.
+assembleDependentsTypeHandlerWin32ReleaseExecutable - Assemble dependents of executable 'typeHandler:win32:release:executable'.
+assembleDependentsTypeHandlerWin64DebugExecutable - Assemble dependents of executable 'typeHandler:win64:debug:executable'.
+assembleDependentsTypeHandlerWin64ReleaseExecutable - Assemble dependents of executable 'typeHandler:win64:release:executable'.
+assembleDependentsUn7zip - Assemble dependents of native executable 'un7zip'.
+assembleDependentsUn7zipLinux32DebugExecutable - Assemble dependents of executable 'un7zip:linux32:debug:executable'.
+assembleDependentsUn7zipLinux32ReleaseExecutable - Assemble dependents of executable 'un7zip:linux32:release:executable'.
+assembleDependentsUn7zipLinux64DebugExecutable - Assemble dependents of executable 'un7zip:linux64:debug:executable'.
+assembleDependentsUn7zipLinux64ReleaseExecutable - Assemble dependents of executable 'un7zip:linux64:release:executable'.
+assembleDependentsUn7zipMacosDebugExecutable - Assemble dependents of executable 'un7zip:macos:debug:executable'.
+assembleDependentsUn7zipMacosReleaseExecutable - Assemble dependents of executable 'un7zip:macos:release:executable'.
+assembleDependentsUn7zipWin32DebugExecutable - Assemble dependents of executable 'un7zip:win32:debug:executable'.
+assembleDependentsUn7zipWin32ReleaseExecutable - Assemble dependents of executable 'un7zip:win32:release:executable'.
+assembleDependentsUn7zipWin64DebugExecutable - Assemble dependents of executable 'un7zip:win64:debug:executable'.
+assembleDependentsUn7zipWin64ReleaseExecutable - Assemble dependents of executable 'un7zip:win64:release:executable'.
+assembleDependentsUnits - Assemble dependents of native executable 'Units'.
+assembleDependentsUnitsLinux32DebugExecutable - Assemble dependents of executable 'units:linux32:debug:executable'.
+assembleDependentsUnitsLinux32ReleaseExecutable - Assemble dependents of executable 'units:linux32:release:executable'.
+assembleDependentsUnitsLinux64DebugExecutable - Assemble dependents of executable 'units:linux64:debug:executable'.
+assembleDependentsUnitsLinux64ReleaseExecutable - Assemble dependents of executable 'units:linux64:release:executable'.
+assembleDependentsUnitsMacosDebugExecutable - Assemble dependents of executable 'units:macos:debug:executable'.
+assembleDependentsUnitsMacosReleaseExecutable - Assemble dependents of executable 'units:macos:release:executable'.
+assembleDependentsUnitsWin32DebugExecutable - Assemble dependents of executable 'units:win32:debug:executable'.
+assembleDependentsUnitsWin32ReleaseExecutable - Assemble dependents of executable 'units:win32:release:executable'.
+assembleDependentsUnitsWin64DebugExecutable - Assemble dependents of executable 'units:win64:debug:executable'.
+assembleDependentsUnitsWin64ReleaseExecutable - Assemble dependents of executable 'units:win64:release:executable'.
+assembleDependentsUnzip - Assemble dependents of native executable 'unzip'.
+assembleDependentsUnzipLinux32DebugExecutable - Assemble dependents of executable 'unzip:linux32:debug:executable'.
+assembleDependentsUnzipLinux32ReleaseExecutable - Assemble dependents of executable 'unzip:linux32:release:executable'.
+assembleDependentsUnzipLinux64DebugExecutable - Assemble dependents of executable 'unzip:linux64:debug:executable'.
+assembleDependentsUnzipLinux64ReleaseExecutable - Assemble dependents of executable 'unzip:linux64:release:executable'.
+assembleDependentsUnzipMacosDebugExecutable - Assemble dependents of executable 'unzip:macos:debug:executable'.
+assembleDependentsUnzipMacosReleaseExecutable - Assemble dependents of executable 'unzip:macos:release:executable'.
+assembleDependentsUnzipWin32DebugExecutable - Assemble dependents of executable 'unzip:win32:debug:executable'.
+assembleDependentsUnzipWin32ReleaseExecutable - Assemble dependents of executable 'unzip:win32:release:executable'.
+assembleDependentsUnzipWin64DebugExecutable - Assemble dependents of executable 'unzip:win64:debug:executable'.
+assembleDependentsUnzipWin64ReleaseExecutable - Assemble dependents of executable 'unzip:win64:release:executable'.
+assembleDependentsURI - Assemble dependents of native executable 'URI'.
+assembleDependentsURILinux32DebugExecutable - Assemble dependents of executable 'uRI:linux32:debug:executable'.
+assembleDependentsURILinux32ReleaseExecutable - Assemble dependents of executable 'uRI:linux32:release:executable'.
+assembleDependentsURILinux64DebugExecutable - Assemble dependents of executable 'uRI:linux64:debug:executable'.
+assembleDependentsURILinux64ReleaseExecutable - Assemble dependents of executable 'uRI:linux64:release:executable'.
+assembleDependentsURIMacosDebugExecutable - Assemble dependents of executable 'uRI:macos:debug:executable'.
+assembleDependentsURIMacosReleaseExecutable - Assemble dependents of executable 'uRI:macos:release:executable'.
+assembleDependentsURIWin32DebugExecutable - Assemble dependents of executable 'uRI:win32:debug:executable'.
+assembleDependentsURIWin32ReleaseExecutable - Assemble dependents of executable 'uRI:win32:release:executable'.
+assembleDependentsURIWin64DebugExecutable - Assemble dependents of executable 'uRI:win64:debug:executable'.
+assembleDependentsURIWin64ReleaseExecutable - Assemble dependents of executable 'uRI:win64:release:executable'.
+assembleDependentsUtil - Assemble dependents of native library 'Util'.
+assembleDependentsUtilLinux32DebugSharedLibrary - Assemble dependents of shared library 'util:linux32:debug:sharedLibrary'.
+assembleDependentsUtilLinux32DebugStaticLibrary - Assemble dependents of static library 'util:linux32:debug:staticLibrary'.
+assembleDependentsUtilLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'util:linux32:release:sharedLibrary'.
+assembleDependentsUtilLinux32ReleaseStaticLibrary - Assemble dependents of static library 'util:linux32:release:staticLibrary'.
+assembleDependentsUtilLinux64DebugSharedLibrary - Assemble dependents of shared library 'util:linux64:debug:sharedLibrary'.
+assembleDependentsUtilLinux64DebugStaticLibrary - Assemble dependents of static library 'util:linux64:debug:staticLibrary'.
+assembleDependentsUtilLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'util:linux64:release:sharedLibrary'.
+assembleDependentsUtilLinux64ReleaseStaticLibrary - Assemble dependents of static library 'util:linux64:release:staticLibrary'.
+assembleDependentsUtilMacosDebugSharedLibrary - Assemble dependents of shared library 'util:macos:debug:sharedLibrary'.
+assembleDependentsUtilMacosDebugStaticLibrary - Assemble dependents of static library 'util:macos:debug:staticLibrary'.
+assembleDependentsUtilMacosReleaseSharedLibrary - Assemble dependents of shared library 'util:macos:release:sharedLibrary'.
+assembleDependentsUtilMacosReleaseStaticLibrary - Assemble dependents of static library 'util:macos:release:staticLibrary'.
+assembleDependentsUtilTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'utilTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsUtilTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'utilTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsUtilTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'utilTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsUtilTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'utilTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsUtilTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'utilTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsUtilTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'utilTestSuite:macos:release:cppUnitExe'.
+assembleDependentsUtilTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'utilTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsUtilTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'utilTestSuite:win32:release:cppUnitExe'.
+assembleDependentsUtilTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'utilTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsUtilTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'utilTestSuite:win64:release:cppUnitExe'.
+assembleDependentsUtilWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'util:win32:debug:semiStaticLibrary'.
+assembleDependentsUtilWin32DebugSharedLibrary - Assemble dependents of shared library 'util:win32:debug:sharedLibrary'.
+assembleDependentsUtilWin32DebugStaticLibrary - Assemble dependents of static library 'util:win32:debug:staticLibrary'.
+assembleDependentsUtilWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'util:win32:release:semiStaticLibrary'.
+assembleDependentsUtilWin32ReleaseSharedLibrary - Assemble dependents of shared library 'util:win32:release:sharedLibrary'.
+assembleDependentsUtilWin32ReleaseStaticLibrary - Assemble dependents of static library 'util:win32:release:staticLibrary'.
+assembleDependentsUtilWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'util:win64:debug:semiStaticLibrary'.
+assembleDependentsUtilWin64DebugSharedLibrary - Assemble dependents of shared library 'util:win64:debug:sharedLibrary'.
+assembleDependentsUtilWin64DebugStaticLibrary - Assemble dependents of static library 'util:win64:debug:staticLibrary'.
+assembleDependentsUtilWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'util:win64:release:semiStaticLibrary'.
+assembleDependentsUtilWin64ReleaseSharedLibrary - Assemble dependents of shared library 'util:win64:release:sharedLibrary'.
+assembleDependentsUtilWin64ReleaseStaticLibrary - Assemble dependents of static library 'util:win64:release:staticLibrary'.
+assembleDependentsUuidgen - Assemble dependents of native executable 'uuidgen'.
+assembleDependentsUuidgenLinux32DebugExecutable - Assemble dependents of executable 'uuidgen:linux32:debug:executable'.
+assembleDependentsUuidgenLinux32ReleaseExecutable - Assemble dependents of executable 'uuidgen:linux32:release:executable'.
+assembleDependentsUuidgenLinux64DebugExecutable - Assemble dependents of executable 'uuidgen:linux64:debug:executable'.
+assembleDependentsUuidgenLinux64ReleaseExecutable - Assemble dependents of executable 'uuidgen:linux64:release:executable'.
+assembleDependentsUuidgenMacosDebugExecutable - Assemble dependents of executable 'uuidgen:macos:debug:executable'.
+assembleDependentsUuidgenMacosReleaseExecutable - Assemble dependents of executable 'uuidgen:macos:release:executable'.
+assembleDependentsUuidgenWin32DebugExecutable - Assemble dependents of executable 'uuidgen:win32:debug:executable'.
+assembleDependentsUuidgenWin32ReleaseExecutable - Assemble dependents of executable 'uuidgen:win32:release:executable'.
+assembleDependentsUuidgenWin64DebugExecutable - Assemble dependents of executable 'uuidgen:win64:debug:executable'.
+assembleDependentsUuidgenWin64ReleaseExecutable - Assemble dependents of executable 'uuidgen:win64:release:executable'.
+assembleDependentsWebNotifier - Assemble dependents of native executable 'WebNotifier'.
+assembleDependentsWebNotifierLinux32DebugExecutable - Assemble dependents of executable 'webNotifier:linux32:debug:executable'.
+assembleDependentsWebNotifierLinux32ReleaseExecutable - Assemble dependents of executable 'webNotifier:linux32:release:executable'.
+assembleDependentsWebNotifierLinux64DebugExecutable - Assemble dependents of executable 'webNotifier:linux64:debug:executable'.
+assembleDependentsWebNotifierLinux64ReleaseExecutable - Assemble dependents of executable 'webNotifier:linux64:release:executable'.
+assembleDependentsWebNotifierMacosDebugExecutable - Assemble dependents of executable 'webNotifier:macos:debug:executable'.
+assembleDependentsWebNotifierMacosReleaseExecutable - Assemble dependents of executable 'webNotifier:macos:release:executable'.
+assembleDependentsWebNotifierWin32DebugExecutable - Assemble dependents of executable 'webNotifier:win32:debug:executable'.
+assembleDependentsWebNotifierWin32ReleaseExecutable - Assemble dependents of executable 'webNotifier:win32:release:executable'.
+assembleDependentsWebNotifierWin64DebugExecutable - Assemble dependents of executable 'webNotifier:win64:debug:executable'.
+assembleDependentsWebNotifierWin64ReleaseExecutable - Assemble dependents of executable 'webNotifier:win64:release:executable'.
+assembleDependentsWebSocketServer - Assemble dependents of native executable 'WebSocketServer'.
+assembleDependentsWebSocketServerLinux32DebugExecutable - Assemble dependents of executable 'webSocketServer:linux32:debug:executable'.
+assembleDependentsWebSocketServerLinux32ReleaseExecutable - Assemble dependents of executable 'webSocketServer:linux32:release:executable'.
+assembleDependentsWebSocketServerLinux64DebugExecutable - Assemble dependents of executable 'webSocketServer:linux64:debug:executable'.
+assembleDependentsWebSocketServerLinux64ReleaseExecutable - Assemble dependents of executable 'webSocketServer:linux64:release:executable'.
+assembleDependentsWebSocketServerMacosDebugExecutable - Assemble dependents of executable 'webSocketServer:macos:debug:executable'.
+assembleDependentsWebSocketServerMacosReleaseExecutable - Assemble dependents of executable 'webSocketServer:macos:release:executable'.
+assembleDependentsWebSocketServerWin32DebugExecutable - Assemble dependents of executable 'webSocketServer:win32:debug:executable'.
+assembleDependentsWebSocketServerWin32ReleaseExecutable - Assemble dependents of executable 'webSocketServer:win32:release:executable'.
+assembleDependentsWebSocketServerWin64DebugExecutable - Assemble dependents of executable 'webSocketServer:win64:debug:executable'.
+assembleDependentsWebSocketServerWin64ReleaseExecutable - Assemble dependents of executable 'webSocketServer:win64:release:executable'.
+assembleDependentsXML - Assemble dependents of native library 'XML'.
+assembleDependentsXMLLinux32DebugSharedLibrary - Assemble dependents of shared library 'xML:linux32:debug:sharedLibrary'.
+assembleDependentsXMLLinux32DebugStaticLibrary - Assemble dependents of static library 'xML:linux32:debug:staticLibrary'.
+assembleDependentsXMLLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'xML:linux32:release:sharedLibrary'.
+assembleDependentsXMLLinux32ReleaseStaticLibrary - Assemble dependents of static library 'xML:linux32:release:staticLibrary'.
+assembleDependentsXMLLinux64DebugSharedLibrary - Assemble dependents of shared library 'xML:linux64:debug:sharedLibrary'.
+assembleDependentsXMLLinux64DebugStaticLibrary - Assemble dependents of static library 'xML:linux64:debug:staticLibrary'.
+assembleDependentsXMLLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'xML:linux64:release:sharedLibrary'.
+assembleDependentsXMLLinux64ReleaseStaticLibrary - Assemble dependents of static library 'xML:linux64:release:staticLibrary'.
+assembleDependentsXMLMacosDebugSharedLibrary - Assemble dependents of shared library 'xML:macos:debug:sharedLibrary'.
+assembleDependentsXMLMacosDebugStaticLibrary - Assemble dependents of static library 'xML:macos:debug:staticLibrary'.
+assembleDependentsXMLMacosReleaseSharedLibrary - Assemble dependents of shared library 'xML:macos:release:sharedLibrary'.
+assembleDependentsXMLMacosReleaseStaticLibrary - Assemble dependents of static library 'xML:macos:release:staticLibrary'.
+assembleDependentsXMLTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'xMLTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsXMLTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'xMLTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsXMLTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'xMLTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsXMLTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'xMLTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsXMLTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'xMLTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsXMLTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'xMLTestSuite:macos:release:cppUnitExe'.
+assembleDependentsXMLTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'xMLTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsXMLTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'xMLTestSuite:win32:release:cppUnitExe'.
+assembleDependentsXMLTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'xMLTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsXMLTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'xMLTestSuite:win64:release:cppUnitExe'.
+assembleDependentsXMLWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'xML:win32:debug:semiStaticLibrary'.
+assembleDependentsXMLWin32DebugSharedLibrary - Assemble dependents of shared library 'xML:win32:debug:sharedLibrary'.
+assembleDependentsXMLWin32DebugStaticLibrary - Assemble dependents of static library 'xML:win32:debug:staticLibrary'.
+assembleDependentsXMLWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'xML:win32:release:semiStaticLibrary'.
+assembleDependentsXMLWin32ReleaseSharedLibrary - Assemble dependents of shared library 'xML:win32:release:sharedLibrary'.
+assembleDependentsXMLWin32ReleaseStaticLibrary - Assemble dependents of static library 'xML:win32:release:staticLibrary'.
+assembleDependentsXMLWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'xML:win64:debug:semiStaticLibrary'.
+assembleDependentsXMLWin64DebugSharedLibrary - Assemble dependents of shared library 'xML:win64:debug:sharedLibrary'.
+assembleDependentsXMLWin64DebugStaticLibrary - Assemble dependents of static library 'xML:win64:debug:staticLibrary'.
+assembleDependentsXMLWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'xML:win64:release:semiStaticLibrary'.
+assembleDependentsXMLWin64ReleaseSharedLibrary - Assemble dependents of shared library 'xML:win64:release:sharedLibrary'.
+assembleDependentsXMLWin64ReleaseStaticLibrary - Assemble dependents of static library 'xML:win64:release:staticLibrary'.
+assembleDependentsZip - Assemble dependents of native library 'Zip'.
+assembleDependentsZipLinux32DebugExecutable - Assemble dependents of executable 'zip:linux32:debug:executable'.
+assembleDependentsZipLinux32DebugSharedLibrary - Assemble dependents of shared library 'zip:linux32:debug:sharedLibrary'.
+assembleDependentsZipLinux32DebugStaticLibrary - Assemble dependents of static library 'zip:linux32:debug:staticLibrary'.
+assembleDependentsZipLinux32ReleaseExecutable - Assemble dependents of executable 'zip:linux32:release:executable'.
+assembleDependentsZipLinux32ReleaseSharedLibrary - Assemble dependents of shared library 'zip:linux32:release:sharedLibrary'.
+assembleDependentsZipLinux32ReleaseStaticLibrary - Assemble dependents of static library 'zip:linux32:release:staticLibrary'.
+assembleDependentsZipLinux64DebugExecutable - Assemble dependents of executable 'zip:linux64:debug:executable'.
+assembleDependentsZipLinux64DebugSharedLibrary - Assemble dependents of shared library 'zip:linux64:debug:sharedLibrary'.
+assembleDependentsZipLinux64DebugStaticLibrary - Assemble dependents of static library 'zip:linux64:debug:staticLibrary'.
+assembleDependentsZipLinux64ReleaseExecutable - Assemble dependents of executable 'zip:linux64:release:executable'.
+assembleDependentsZipLinux64ReleaseSharedLibrary - Assemble dependents of shared library 'zip:linux64:release:sharedLibrary'.
+assembleDependentsZipLinux64ReleaseStaticLibrary - Assemble dependents of static library 'zip:linux64:release:staticLibrary'.
+assembleDependentsZipMacosDebugExecutable - Assemble dependents of executable 'zip:macos:debug:executable'.
+assembleDependentsZipMacosDebugSharedLibrary - Assemble dependents of shared library 'zip:macos:debug:sharedLibrary'.
+assembleDependentsZipMacosDebugStaticLibrary - Assemble dependents of static library 'zip:macos:debug:staticLibrary'.
+assembleDependentsZipMacosReleaseExecutable - Assemble dependents of executable 'zip:macos:release:executable'.
+assembleDependentsZipMacosReleaseSharedLibrary - Assemble dependents of shared library 'zip:macos:release:sharedLibrary'.
+assembleDependentsZipMacosReleaseStaticLibrary - Assemble dependents of static library 'zip:macos:release:staticLibrary'.
+assembleDependentsZipTestSuiteLinux32DebugCppUnitExe - Assemble dependents of cpp unit exe 'zipTestSuite:linux32:debug:cppUnitExe'.
+assembleDependentsZipTestSuiteLinux32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'zipTestSuite:linux32:release:cppUnitExe'.
+assembleDependentsZipTestSuiteLinux64DebugCppUnitExe - Assemble dependents of cpp unit exe 'zipTestSuite:linux64:debug:cppUnitExe'.
+assembleDependentsZipTestSuiteLinux64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'zipTestSuite:linux64:release:cppUnitExe'.
+assembleDependentsZipTestSuiteMacosDebugCppUnitExe - Assemble dependents of cpp unit exe 'zipTestSuite:macos:debug:cppUnitExe'.
+assembleDependentsZipTestSuiteMacosReleaseCppUnitExe - Assemble dependents of cpp unit exe 'zipTestSuite:macos:release:cppUnitExe'.
+assembleDependentsZipTestSuiteWin32DebugCppUnitExe - Assemble dependents of cpp unit exe 'zipTestSuite:win32:debug:cppUnitExe'.
+assembleDependentsZipTestSuiteWin32ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'zipTestSuite:win32:release:cppUnitExe'.
+assembleDependentsZipTestSuiteWin64DebugCppUnitExe - Assemble dependents of cpp unit exe 'zipTestSuite:win64:debug:cppUnitExe'.
+assembleDependentsZipTestSuiteWin64ReleaseCppUnitExe - Assemble dependents of cpp unit exe 'zipTestSuite:win64:release:cppUnitExe'.
+assembleDependentsZipWin32DebugExecutable - Assemble dependents of executable 'zip:win32:debug:executable'.
+assembleDependentsZipWin32DebugSemiStaticLibrary - Assemble dependents of semi static library 'zip:win32:debug:semiStaticLibrary'.
+assembleDependentsZipWin32DebugSharedLibrary - Assemble dependents of shared library 'zip:win32:debug:sharedLibrary'.
+assembleDependentsZipWin32DebugStaticLibrary - Assemble dependents of static library 'zip:win32:debug:staticLibrary'.
+assembleDependentsZipWin32ReleaseExecutable - Assemble dependents of executable 'zip:win32:release:executable'.
+assembleDependentsZipWin32ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'zip:win32:release:semiStaticLibrary'.
+assembleDependentsZipWin32ReleaseSharedLibrary - Assemble dependents of shared library 'zip:win32:release:sharedLibrary'.
+assembleDependentsZipWin32ReleaseStaticLibrary - Assemble dependents of static library 'zip:win32:release:staticLibrary'.
+assembleDependentsZipWin64DebugExecutable - Assemble dependents of executable 'zip:win64:debug:executable'.
+assembleDependentsZipWin64DebugSemiStaticLibrary - Assemble dependents of semi static library 'zip:win64:debug:semiStaticLibrary'.
+assembleDependentsZipWin64DebugSharedLibrary - Assemble dependents of shared library 'zip:win64:debug:sharedLibrary'.
+assembleDependentsZipWin64DebugStaticLibrary - Assemble dependents of static library 'zip:win64:debug:staticLibrary'.
+assembleDependentsZipWin64ReleaseExecutable - Assemble dependents of executable 'zip:win64:release:executable'.
+assembleDependentsZipWin64ReleaseSemiStaticLibrary - Assemble dependents of semi static library 'zip:win64:release:semiStaticLibrary'.
+assembleDependentsZipWin64ReleaseSharedLibrary - Assemble dependents of shared library 'zip:win64:release:sharedLibrary'.
+assembleDependentsZipWin64ReleaseStaticLibrary - Assemble dependents of static library 'zip:win64:release:staticLibrary'.
+buildDependentsActiveMethod - Build dependents of native executable 'ActiveMethod'.
+buildDependentsActiveMethodLinux32DebugExecutable - Build dependents of executable 'activeMethod:linux32:debug:executable'.
+buildDependentsActiveMethodLinux32ReleaseExecutable - Build dependents of executable 'activeMethod:linux32:release:executable'.
+buildDependentsActiveMethodLinux64DebugExecutable - Build dependents of executable 'activeMethod:linux64:debug:executable'.
+buildDependentsActiveMethodLinux64ReleaseExecutable - Build dependents of executable 'activeMethod:linux64:release:executable'.
+buildDependentsActiveMethodMacosDebugExecutable - Build dependents of executable 'activeMethod:macos:debug:executable'.
+buildDependentsActiveMethodMacosReleaseExecutable - Build dependents of executable 'activeMethod:macos:release:executable'.
+buildDependentsActiveMethodWin32DebugExecutable - Build dependents of executable 'activeMethod:win32:debug:executable'.
+buildDependentsActiveMethodWin32ReleaseExecutable - Build dependents of executable 'activeMethod:win32:release:executable'.
+buildDependentsActiveMethodWin64DebugExecutable - Build dependents of executable 'activeMethod:win64:debug:executable'.
+buildDependentsActiveMethodWin64ReleaseExecutable - Build dependents of executable 'activeMethod:win64:release:executable'.
+buildDependentsActivity - Build dependents of native executable 'Activity'.
+buildDependentsActivityLinux32DebugExecutable - Build dependents of executable 'activity:linux32:debug:executable'.
+buildDependentsActivityLinux32ReleaseExecutable - Build dependents of executable 'activity:linux32:release:executable'.
+buildDependentsActivityLinux64DebugExecutable - Build dependents of executable 'activity:linux64:debug:executable'.
+buildDependentsActivityLinux64ReleaseExecutable - Build dependents of executable 'activity:linux64:release:executable'.
+buildDependentsActivityMacosDebugExecutable - Build dependents of executable 'activity:macos:debug:executable'.
+buildDependentsActivityMacosReleaseExecutable - Build dependents of executable 'activity:macos:release:executable'.
+buildDependentsActivityWin32DebugExecutable - Build dependents of executable 'activity:win32:debug:executable'.
+buildDependentsActivityWin32ReleaseExecutable - Build dependents of executable 'activity:win32:release:executable'.
+buildDependentsActivityWin64DebugExecutable - Build dependents of executable 'activity:win64:debug:executable'.
+buildDependentsActivityWin64ReleaseExecutable - Build dependents of executable 'activity:win64:release:executable'.
+buildDependentsBase64decode - Build dependents of native executable 'base64decode'.
+buildDependentsBase64decodeLinux32DebugExecutable - Build dependents of executable 'base64decode:linux32:debug:executable'.
+buildDependentsBase64decodeLinux32ReleaseExecutable - Build dependents of executable 'base64decode:linux32:release:executable'.
+buildDependentsBase64decodeLinux64DebugExecutable - Build dependents of executable 'base64decode:linux64:debug:executable'.
+buildDependentsBase64decodeLinux64ReleaseExecutable - Build dependents of executable 'base64decode:linux64:release:executable'.
+buildDependentsBase64decodeMacosDebugExecutable - Build dependents of executable 'base64decode:macos:debug:executable'.
+buildDependentsBase64decodeMacosReleaseExecutable - Build dependents of executable 'base64decode:macos:release:executable'.
+buildDependentsBase64decodeWin32DebugExecutable - Build dependents of executable 'base64decode:win32:debug:executable'.
+buildDependentsBase64decodeWin32ReleaseExecutable - Build dependents of executable 'base64decode:win32:release:executable'.
+buildDependentsBase64decodeWin64DebugExecutable - Build dependents of executable 'base64decode:win64:debug:executable'.
+buildDependentsBase64decodeWin64ReleaseExecutable - Build dependents of executable 'base64decode:win64:release:executable'.
+buildDependentsBase64encode - Build dependents of native executable 'base64encode'.
+buildDependentsBase64encodeLinux32DebugExecutable - Build dependents of executable 'base64encode:linux32:debug:executable'.
+buildDependentsBase64encodeLinux32ReleaseExecutable - Build dependents of executable 'base64encode:linux32:release:executable'.
+buildDependentsBase64encodeLinux64DebugExecutable - Build dependents of executable 'base64encode:linux64:debug:executable'.
+buildDependentsBase64encodeLinux64ReleaseExecutable - Build dependents of executable 'base64encode:linux64:release:executable'.
+buildDependentsBase64encodeMacosDebugExecutable - Build dependents of executable 'base64encode:macos:debug:executable'.
+buildDependentsBase64encodeMacosReleaseExecutable - Build dependents of executable 'base64encode:macos:release:executable'.
+buildDependentsBase64encodeWin32DebugExecutable - Build dependents of executable 'base64encode:win32:debug:executable'.
+buildDependentsBase64encodeWin32ReleaseExecutable - Build dependents of executable 'base64encode:win32:release:executable'.
+buildDependentsBase64encodeWin64DebugExecutable - Build dependents of executable 'base64encode:win64:debug:executable'.
+buildDependentsBase64encodeWin64ReleaseExecutable - Build dependents of executable 'base64encode:win64:release:executable'.
+buildDependentsBenchmark - Build dependents of native executable 'Benchmark'.
+buildDependentsBenchmarkLinux32DebugExecutable - Build dependents of executable 'benchmark:linux32:debug:executable'.
+buildDependentsBenchmarkLinux32ReleaseExecutable - Build dependents of executable 'benchmark:linux32:release:executable'.
+buildDependentsBenchmarkLinux64DebugExecutable - Build dependents of executable 'benchmark:linux64:debug:executable'.
+buildDependentsBenchmarkLinux64ReleaseExecutable - Build dependents of executable 'benchmark:linux64:release:executable'.
+buildDependentsBenchmarkMacosDebugExecutable - Build dependents of executable 'benchmark:macos:debug:executable'.
+buildDependentsBenchmarkMacosReleaseExecutable - Build dependents of executable 'benchmark:macos:release:executable'.
+buildDependentsBenchmarkWin32DebugExecutable - Build dependents of executable 'benchmark:win32:debug:executable'.
+buildDependentsBenchmarkWin32ReleaseExecutable - Build dependents of executable 'benchmark:win32:release:executable'.
+buildDependentsBenchmarkWin64DebugExecutable - Build dependents of executable 'benchmark:win64:debug:executable'.
+buildDependentsBenchmarkWin64ReleaseExecutable - Build dependents of executable 'benchmark:win64:release:executable'.
+buildDependentsBinaryReaderWriter - Build dependents of native executable 'BinaryReaderWriter'.
+buildDependentsBinaryReaderWriterLinux32DebugExecutable - Build dependents of executable 'binaryReaderWriter:linux32:debug:executable'.
+buildDependentsBinaryReaderWriterLinux32ReleaseExecutable - Build dependents of executable 'binaryReaderWriter:linux32:release:executable'.
+buildDependentsBinaryReaderWriterLinux64DebugExecutable - Build dependents of executable 'binaryReaderWriter:linux64:debug:executable'.
+buildDependentsBinaryReaderWriterLinux64ReleaseExecutable - Build dependents of executable 'binaryReaderWriter:linux64:release:executable'.
+buildDependentsBinaryReaderWriterMacosDebugExecutable - Build dependents of executable 'binaryReaderWriter:macos:debug:executable'.
+buildDependentsBinaryReaderWriterMacosReleaseExecutable - Build dependents of executable 'binaryReaderWriter:macos:release:executable'.
+buildDependentsBinaryReaderWriterWin32DebugExecutable - Build dependents of executable 'binaryReaderWriter:win32:debug:executable'.
+buildDependentsBinaryReaderWriterWin32ReleaseExecutable - Build dependents of executable 'binaryReaderWriter:win32:release:executable'.
+buildDependentsBinaryReaderWriterWin64DebugExecutable - Build dependents of executable 'binaryReaderWriter:win64:debug:executable'.
+buildDependentsBinaryReaderWriterWin64ReleaseExecutable - Build dependents of executable 'binaryReaderWriter:win64:release:executable'.
+buildDependentsBinding - Build dependents of native executable 'Binding'.
+buildDependentsBindingLinux32DebugExecutable - Build dependents of executable 'binding:linux32:debug:executable'.
+buildDependentsBindingLinux32ReleaseExecutable - Build dependents of executable 'binding:linux32:release:executable'.
+buildDependentsBindingLinux64DebugExecutable - Build dependents of executable 'binding:linux64:debug:executable'.
+buildDependentsBindingLinux64ReleaseExecutable - Build dependents of executable 'binding:linux64:release:executable'.
+buildDependentsBindingMacosDebugExecutable - Build dependents of executable 'binding:macos:debug:executable'.
+buildDependentsBindingMacosReleaseExecutable - Build dependents of executable 'binding:macos:release:executable'.
+buildDependentsBindingWin32DebugExecutable - Build dependents of executable 'binding:win32:debug:executable'.
+buildDependentsBindingWin32ReleaseExecutable - Build dependents of executable 'binding:win32:release:executable'.
+buildDependentsBindingWin64DebugExecutable - Build dependents of executable 'binding:win64:debug:executable'.
+buildDependentsBindingWin64ReleaseExecutable - Build dependents of executable 'binding:win64:release:executable'.
+buildDependentsCppParser - Build dependents of native library 'CppParser'.
+buildDependentsCppParserLinux32DebugSharedLibrary - Build dependents of shared library 'cppParser:linux32:debug:sharedLibrary'.
+buildDependentsCppParserLinux32DebugStaticLibrary - Build dependents of static library 'cppParser:linux32:debug:staticLibrary'.
+buildDependentsCppParserLinux32ReleaseSharedLibrary - Build dependents of shared library 'cppParser:linux32:release:sharedLibrary'.
+buildDependentsCppParserLinux32ReleaseStaticLibrary - Build dependents of static library 'cppParser:linux32:release:staticLibrary'.
+buildDependentsCppParserLinux64DebugSharedLibrary - Build dependents of shared library 'cppParser:linux64:debug:sharedLibrary'.
+buildDependentsCppParserLinux64DebugStaticLibrary - Build dependents of static library 'cppParser:linux64:debug:staticLibrary'.
+buildDependentsCppParserLinux64ReleaseSharedLibrary - Build dependents of shared library 'cppParser:linux64:release:sharedLibrary'.
+buildDependentsCppParserLinux64ReleaseStaticLibrary - Build dependents of static library 'cppParser:linux64:release:staticLibrary'.
+buildDependentsCppParserMacosDebugSharedLibrary - Build dependents of shared library 'cppParser:macos:debug:sharedLibrary'.
+buildDependentsCppParserMacosDebugStaticLibrary - Build dependents of static library 'cppParser:macos:debug:staticLibrary'.
+buildDependentsCppParserMacosReleaseSharedLibrary - Build dependents of shared library 'cppParser:macos:release:sharedLibrary'.
+buildDependentsCppParserMacosReleaseStaticLibrary - Build dependents of static library 'cppParser:macos:release:staticLibrary'.
+buildDependentsCppParserTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'cppParserTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsCppParserTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'cppParserTestSuite:linux32:release:cppUnitExe'.
+buildDependentsCppParserTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'cppParserTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsCppParserTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'cppParserTestSuite:linux64:release:cppUnitExe'.
+buildDependentsCppParserTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'cppParserTestSuite:macos:debug:cppUnitExe'.
+buildDependentsCppParserTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'cppParserTestSuite:macos:release:cppUnitExe'.
+buildDependentsCppParserTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'cppParserTestSuite:win32:debug:cppUnitExe'.
+buildDependentsCppParserTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'cppParserTestSuite:win32:release:cppUnitExe'.
+buildDependentsCppParserTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'cppParserTestSuite:win64:debug:cppUnitExe'.
+buildDependentsCppParserTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'cppParserTestSuite:win64:release:cppUnitExe'.
+buildDependentsCppParserWin32DebugSemiStaticLibrary - Build dependents of semi static library 'cppParser:win32:debug:semiStaticLibrary'.
+buildDependentsCppParserWin32DebugSharedLibrary - Build dependents of shared library 'cppParser:win32:debug:sharedLibrary'.
+buildDependentsCppParserWin32DebugStaticLibrary - Build dependents of static library 'cppParser:win32:debug:staticLibrary'.
+buildDependentsCppParserWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'cppParser:win32:release:semiStaticLibrary'.
+buildDependentsCppParserWin32ReleaseSharedLibrary - Build dependents of shared library 'cppParser:win32:release:sharedLibrary'.
+buildDependentsCppParserWin32ReleaseStaticLibrary - Build dependents of static library 'cppParser:win32:release:staticLibrary'.
+buildDependentsCppParserWin64DebugSemiStaticLibrary - Build dependents of semi static library 'cppParser:win64:debug:semiStaticLibrary'.
+buildDependentsCppParserWin64DebugSharedLibrary - Build dependents of shared library 'cppParser:win64:debug:sharedLibrary'.
+buildDependentsCppParserWin64DebugStaticLibrary - Build dependents of static library 'cppParser:win64:debug:staticLibrary'.
+buildDependentsCppParserWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'cppParser:win64:release:semiStaticLibrary'.
+buildDependentsCppParserWin64ReleaseSharedLibrary - Build dependents of shared library 'cppParser:win64:release:sharedLibrary'.
+buildDependentsCppParserWin64ReleaseStaticLibrary - Build dependents of static library 'cppParser:win64:release:staticLibrary'.
+buildDependentsCppUnit - Build dependents of native library 'CppUnit'.
+buildDependentsCppUnitLinux32DebugSharedLibrary - Build dependents of shared library 'cppUnit:linux32:debug:sharedLibrary'.
+buildDependentsCppUnitLinux32DebugStaticLibrary - Build dependents of static library 'cppUnit:linux32:debug:staticLibrary'.
+buildDependentsCppUnitLinux32ReleaseSharedLibrary - Build dependents of shared library 'cppUnit:linux32:release:sharedLibrary'.
+buildDependentsCppUnitLinux32ReleaseStaticLibrary - Build dependents of static library 'cppUnit:linux32:release:staticLibrary'.
+buildDependentsCppUnitLinux64DebugSharedLibrary - Build dependents of shared library 'cppUnit:linux64:debug:sharedLibrary'.
+buildDependentsCppUnitLinux64DebugStaticLibrary - Build dependents of static library 'cppUnit:linux64:debug:staticLibrary'.
+buildDependentsCppUnitLinux64ReleaseSharedLibrary - Build dependents of shared library 'cppUnit:linux64:release:sharedLibrary'.
+buildDependentsCppUnitLinux64ReleaseStaticLibrary - Build dependents of static library 'cppUnit:linux64:release:staticLibrary'.
+buildDependentsCppUnitMacosDebugSharedLibrary - Build dependents of shared library 'cppUnit:macos:debug:sharedLibrary'.
+buildDependentsCppUnitMacosDebugStaticLibrary - Build dependents of static library 'cppUnit:macos:debug:staticLibrary'.
+buildDependentsCppUnitMacosReleaseSharedLibrary - Build dependents of shared library 'cppUnit:macos:release:sharedLibrary'.
+buildDependentsCppUnitMacosReleaseStaticLibrary - Build dependents of static library 'cppUnit:macos:release:staticLibrary'.
+buildDependentsCppUnitWin32DebugSemiStaticLibrary - Build dependents of semi static library 'cppUnit:win32:debug:semiStaticLibrary'.
+buildDependentsCppUnitWin32DebugSharedLibrary - Build dependents of shared library 'cppUnit:win32:debug:sharedLibrary'.
+buildDependentsCppUnitWin32DebugStaticLibrary - Build dependents of static library 'cppUnit:win32:debug:staticLibrary'.
+buildDependentsCppUnitWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'cppUnit:win32:release:semiStaticLibrary'.
+buildDependentsCppUnitWin32ReleaseSharedLibrary - Build dependents of shared library 'cppUnit:win32:release:sharedLibrary'.
+buildDependentsCppUnitWin32ReleaseStaticLibrary - Build dependents of static library 'cppUnit:win32:release:staticLibrary'.
+buildDependentsCppUnitWin64DebugSemiStaticLibrary - Build dependents of semi static library 'cppUnit:win64:debug:semiStaticLibrary'.
+buildDependentsCppUnitWin64DebugSharedLibrary - Build dependents of shared library 'cppUnit:win64:debug:sharedLibrary'.
+buildDependentsCppUnitWin64DebugStaticLibrary - Build dependents of static library 'cppUnit:win64:debug:staticLibrary'.
+buildDependentsCppUnitWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'cppUnit:win64:release:semiStaticLibrary'.
+buildDependentsCppUnitWin64ReleaseSharedLibrary - Build dependents of shared library 'cppUnit:win64:release:sharedLibrary'.
+buildDependentsCppUnitWin64ReleaseStaticLibrary - Build dependents of static library 'cppUnit:win64:release:staticLibrary'.
+buildDependentsCpspc - Build dependents of native executable 'cpspc'.
+buildDependentsCpspcLinux32DebugExecutable - Build dependents of executable 'cpspc:linux32:debug:executable'.
+buildDependentsCpspcLinux32ReleaseExecutable - Build dependents of executable 'cpspc:linux32:release:executable'.
+buildDependentsCpspcLinux64DebugExecutable - Build dependents of executable 'cpspc:linux64:debug:executable'.
+buildDependentsCpspcLinux64ReleaseExecutable - Build dependents of executable 'cpspc:linux64:release:executable'.
+buildDependentsCpspcMacosDebugExecutable - Build dependents of executable 'cpspc:macos:debug:executable'.
+buildDependentsCpspcMacosReleaseExecutable - Build dependents of executable 'cpspc:macos:release:executable'.
+buildDependentsCpspcWin32DebugExecutable - Build dependents of executable 'cpspc:win32:debug:executable'.
+buildDependentsCpspcWin32ReleaseExecutable - Build dependents of executable 'cpspc:win32:release:executable'.
+buildDependentsCpspcWin64DebugExecutable - Build dependents of executable 'cpspc:win64:debug:executable'.
+buildDependentsCpspcWin64ReleaseExecutable - Build dependents of executable 'cpspc:win64:release:executable'.
+buildDependentsCrypto - Build dependents of native library 'Crypto'.
+buildDependentsCryptoLinux32DebugSharedLibrary - Build dependents of shared library 'crypto:linux32:debug:sharedLibrary'.
+buildDependentsCryptoLinux32DebugStaticLibrary - Build dependents of static library 'crypto:linux32:debug:staticLibrary'.
+buildDependentsCryptoLinux32ReleaseSharedLibrary - Build dependents of shared library 'crypto:linux32:release:sharedLibrary'.
+buildDependentsCryptoLinux32ReleaseStaticLibrary - Build dependents of static library 'crypto:linux32:release:staticLibrary'.
+buildDependentsCryptoLinux64DebugSharedLibrary - Build dependents of shared library 'crypto:linux64:debug:sharedLibrary'.
+buildDependentsCryptoLinux64DebugStaticLibrary - Build dependents of static library 'crypto:linux64:debug:staticLibrary'.
+buildDependentsCryptoLinux64ReleaseSharedLibrary - Build dependents of shared library 'crypto:linux64:release:sharedLibrary'.
+buildDependentsCryptoLinux64ReleaseStaticLibrary - Build dependents of static library 'crypto:linux64:release:staticLibrary'.
+buildDependentsCryptoMacosDebugSharedLibrary - Build dependents of shared library 'crypto:macos:debug:sharedLibrary'.
+buildDependentsCryptoMacosDebugStaticLibrary - Build dependents of static library 'crypto:macos:debug:staticLibrary'.
+buildDependentsCryptoMacosReleaseSharedLibrary - Build dependents of shared library 'crypto:macos:release:sharedLibrary'.
+buildDependentsCryptoMacosReleaseStaticLibrary - Build dependents of static library 'crypto:macos:release:staticLibrary'.
+buildDependentsCryptoTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'cryptoTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsCryptoTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'cryptoTestSuite:linux32:release:cppUnitExe'.
+buildDependentsCryptoTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'cryptoTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsCryptoTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'cryptoTestSuite:linux64:release:cppUnitExe'.
+buildDependentsCryptoTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'cryptoTestSuite:macos:debug:cppUnitExe'.
+buildDependentsCryptoTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'cryptoTestSuite:macos:release:cppUnitExe'.
+buildDependentsCryptoTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'cryptoTestSuite:win32:debug:cppUnitExe'.
+buildDependentsCryptoTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'cryptoTestSuite:win32:release:cppUnitExe'.
+buildDependentsCryptoTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'cryptoTestSuite:win64:debug:cppUnitExe'.
+buildDependentsCryptoTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'cryptoTestSuite:win64:release:cppUnitExe'.
+buildDependentsCryptoWin32DebugSemiStaticLibrary - Build dependents of semi static library 'crypto:win32:debug:semiStaticLibrary'.
+buildDependentsCryptoWin32DebugSharedLibrary - Build dependents of shared library 'crypto:win32:debug:sharedLibrary'.
+buildDependentsCryptoWin32DebugStaticLibrary - Build dependents of static library 'crypto:win32:debug:staticLibrary'.
+buildDependentsCryptoWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'crypto:win32:release:semiStaticLibrary'.
+buildDependentsCryptoWin32ReleaseSharedLibrary - Build dependents of shared library 'crypto:win32:release:sharedLibrary'.
+buildDependentsCryptoWin32ReleaseStaticLibrary - Build dependents of static library 'crypto:win32:release:staticLibrary'.
+buildDependentsCryptoWin64DebugSemiStaticLibrary - Build dependents of semi static library 'crypto:win64:debug:semiStaticLibrary'.
+buildDependentsCryptoWin64DebugSharedLibrary - Build dependents of shared library 'crypto:win64:debug:sharedLibrary'.
+buildDependentsCryptoWin64DebugStaticLibrary - Build dependents of static library 'crypto:win64:debug:staticLibrary'.
+buildDependentsCryptoWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'crypto:win64:release:semiStaticLibrary'.
+buildDependentsCryptoWin64ReleaseSharedLibrary - Build dependents of shared library 'crypto:win64:release:sharedLibrary'.
+buildDependentsCryptoWin64ReleaseStaticLibrary - Build dependents of static library 'crypto:win64:release:staticLibrary'.
+buildDependentsData - Build dependents of native library 'Data'.
+buildDependentsDataLinux32DebugExecutable - Build dependents of executable 'data:linux32:debug:executable'.
+buildDependentsDataLinux32DebugSharedLibrary - Build dependents of shared library 'data:linux32:debug:sharedLibrary'.
+buildDependentsDataLinux32DebugStaticLibrary - Build dependents of static library 'data:linux32:debug:staticLibrary'.
+buildDependentsDataLinux32ReleaseExecutable - Build dependents of executable 'data:linux32:release:executable'.
+buildDependentsDataLinux32ReleaseSharedLibrary - Build dependents of shared library 'data:linux32:release:sharedLibrary'.
+buildDependentsDataLinux32ReleaseStaticLibrary - Build dependents of static library 'data:linux32:release:staticLibrary'.
+buildDependentsDataLinux64DebugExecutable - Build dependents of executable 'data:linux64:debug:executable'.
+buildDependentsDataLinux64DebugSharedLibrary - Build dependents of shared library 'data:linux64:debug:sharedLibrary'.
+buildDependentsDataLinux64DebugStaticLibrary - Build dependents of static library 'data:linux64:debug:staticLibrary'.
+buildDependentsDataLinux64ReleaseExecutable - Build dependents of executable 'data:linux64:release:executable'.
+buildDependentsDataLinux64ReleaseSharedLibrary - Build dependents of shared library 'data:linux64:release:sharedLibrary'.
+buildDependentsDataLinux64ReleaseStaticLibrary - Build dependents of static library 'data:linux64:release:staticLibrary'.
+buildDependentsDataMacosDebugExecutable - Build dependents of executable 'data:macos:debug:executable'.
+buildDependentsDataMacosDebugSharedLibrary - Build dependents of shared library 'data:macos:debug:sharedLibrary'.
+buildDependentsDataMacosDebugStaticLibrary - Build dependents of static library 'data:macos:debug:staticLibrary'.
+buildDependentsDataMacosReleaseExecutable - Build dependents of executable 'data:macos:release:executable'.
+buildDependentsDataMacosReleaseSharedLibrary - Build dependents of shared library 'data:macos:release:sharedLibrary'.
+buildDependentsDataMacosReleaseStaticLibrary - Build dependents of static library 'data:macos:release:staticLibrary'.
+buildDependentsDataMySQL - Build dependents of native library 'DataMySQL'.
+buildDependentsDataMySQLLinux32DebugSharedLibrary - Build dependents of shared library 'dataMySQL:linux32:debug:sharedLibrary'.
+buildDependentsDataMySQLLinux32DebugStaticLibrary - Build dependents of static library 'dataMySQL:linux32:debug:staticLibrary'.
+buildDependentsDataMySQLLinux32ReleaseSharedLibrary - Build dependents of shared library 'dataMySQL:linux32:release:sharedLibrary'.
+buildDependentsDataMySQLLinux32ReleaseStaticLibrary - Build dependents of static library 'dataMySQL:linux32:release:staticLibrary'.
+buildDependentsDataMySQLLinux64DebugSharedLibrary - Build dependents of shared library 'dataMySQL:linux64:debug:sharedLibrary'.
+buildDependentsDataMySQLLinux64DebugStaticLibrary - Build dependents of static library 'dataMySQL:linux64:debug:staticLibrary'.
+buildDependentsDataMySQLLinux64ReleaseSharedLibrary - Build dependents of shared library 'dataMySQL:linux64:release:sharedLibrary'.
+buildDependentsDataMySQLLinux64ReleaseStaticLibrary - Build dependents of static library 'dataMySQL:linux64:release:staticLibrary'.
+buildDependentsDataMySQLMacosDebugSharedLibrary - Build dependents of shared library 'dataMySQL:macos:debug:sharedLibrary'.
+buildDependentsDataMySQLMacosDebugStaticLibrary - Build dependents of static library 'dataMySQL:macos:debug:staticLibrary'.
+buildDependentsDataMySQLMacosReleaseSharedLibrary - Build dependents of shared library 'dataMySQL:macos:release:sharedLibrary'.
+buildDependentsDataMySQLMacosReleaseStaticLibrary - Build dependents of static library 'dataMySQL:macos:release:staticLibrary'.
+buildDependentsDataMySQLWin32DebugSemiStaticLibrary - Build dependents of semi static library 'dataMySQL:win32:debug:semiStaticLibrary'.
+buildDependentsDataMySQLWin32DebugSharedLibrary - Build dependents of shared library 'dataMySQL:win32:debug:sharedLibrary'.
+buildDependentsDataMySQLWin32DebugStaticLibrary - Build dependents of static library 'dataMySQL:win32:debug:staticLibrary'.
+buildDependentsDataMySQLWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'dataMySQL:win32:release:semiStaticLibrary'.
+buildDependentsDataMySQLWin32ReleaseSharedLibrary - Build dependents of shared library 'dataMySQL:win32:release:sharedLibrary'.
+buildDependentsDataMySQLWin32ReleaseStaticLibrary - Build dependents of static library 'dataMySQL:win32:release:staticLibrary'.
+buildDependentsDataMySQLWin64DebugSemiStaticLibrary - Build dependents of semi static library 'dataMySQL:win64:debug:semiStaticLibrary'.
+buildDependentsDataMySQLWin64DebugSharedLibrary - Build dependents of shared library 'dataMySQL:win64:debug:sharedLibrary'.
+buildDependentsDataMySQLWin64DebugStaticLibrary - Build dependents of static library 'dataMySQL:win64:debug:staticLibrary'.
+buildDependentsDataMySQLWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'dataMySQL:win64:release:semiStaticLibrary'.
+buildDependentsDataMySQLWin64ReleaseSharedLibrary - Build dependents of shared library 'dataMySQL:win64:release:sharedLibrary'.
+buildDependentsDataMySQLWin64ReleaseStaticLibrary - Build dependents of static library 'dataMySQL:win64:release:staticLibrary'.
+buildDependentsDataODBC - Build dependents of native library 'DataODBC'.
+buildDependentsDataODBCLinux32DebugSharedLibrary - Build dependents of shared library 'dataODBC:linux32:debug:sharedLibrary'.
+buildDependentsDataODBCLinux32DebugStaticLibrary - Build dependents of static library 'dataODBC:linux32:debug:staticLibrary'.
+buildDependentsDataODBCLinux32ReleaseSharedLibrary - Build dependents of shared library 'dataODBC:linux32:release:sharedLibrary'.
+buildDependentsDataODBCLinux32ReleaseStaticLibrary - Build dependents of static library 'dataODBC:linux32:release:staticLibrary'.
+buildDependentsDataODBCLinux64DebugSharedLibrary - Build dependents of shared library 'dataODBC:linux64:debug:sharedLibrary'.
+buildDependentsDataODBCLinux64DebugStaticLibrary - Build dependents of static library 'dataODBC:linux64:debug:staticLibrary'.
+buildDependentsDataODBCLinux64ReleaseSharedLibrary - Build dependents of shared library 'dataODBC:linux64:release:sharedLibrary'.
+buildDependentsDataODBCLinux64ReleaseStaticLibrary - Build dependents of static library 'dataODBC:linux64:release:staticLibrary'.
+buildDependentsDataODBCMacosDebugSharedLibrary - Build dependents of shared library 'dataODBC:macos:debug:sharedLibrary'.
+buildDependentsDataODBCMacosDebugStaticLibrary - Build dependents of static library 'dataODBC:macos:debug:staticLibrary'.
+buildDependentsDataODBCMacosReleaseSharedLibrary - Build dependents of shared library 'dataODBC:macos:release:sharedLibrary'.
+buildDependentsDataODBCMacosReleaseStaticLibrary - Build dependents of static library 'dataODBC:macos:release:staticLibrary'.
+buildDependentsDataODBCWin32DebugSemiStaticLibrary - Build dependents of semi static library 'dataODBC:win32:debug:semiStaticLibrary'.
+buildDependentsDataODBCWin32DebugSharedLibrary - Build dependents of shared library 'dataODBC:win32:debug:sharedLibrary'.
+buildDependentsDataODBCWin32DebugStaticLibrary - Build dependents of static library 'dataODBC:win32:debug:staticLibrary'.
+buildDependentsDataODBCWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'dataODBC:win32:release:semiStaticLibrary'.
+buildDependentsDataODBCWin32ReleaseSharedLibrary - Build dependents of shared library 'dataODBC:win32:release:sharedLibrary'.
+buildDependentsDataODBCWin32ReleaseStaticLibrary - Build dependents of static library 'dataODBC:win32:release:staticLibrary'.
+buildDependentsDataODBCWin64DebugSemiStaticLibrary - Build dependents of semi static library 'dataODBC:win64:debug:semiStaticLibrary'.
+buildDependentsDataODBCWin64DebugSharedLibrary - Build dependents of shared library 'dataODBC:win64:debug:sharedLibrary'.
+buildDependentsDataODBCWin64DebugStaticLibrary - Build dependents of static library 'dataODBC:win64:debug:staticLibrary'.
+buildDependentsDataODBCWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'dataODBC:win64:release:semiStaticLibrary'.
+buildDependentsDataODBCWin64ReleaseSharedLibrary - Build dependents of shared library 'dataODBC:win64:release:sharedLibrary'.
+buildDependentsDataODBCWin64ReleaseStaticLibrary - Build dependents of static library 'dataODBC:win64:release:staticLibrary'.
+buildDependentsDataPostgreSQL - Build dependents of native library 'DataPostgreSQL'.
+buildDependentsDataPostgreSQLLinux32DebugSharedLibrary - Build dependents of shared library 'dataPostgreSQL:linux32:debug:sharedLibrary'.
+buildDependentsDataPostgreSQLLinux32DebugStaticLibrary - Build dependents of static library 'dataPostgreSQL:linux32:debug:staticLibrary'.
+buildDependentsDataPostgreSQLLinux32ReleaseSharedLibrary - Build dependents of shared library 'dataPostgreSQL:linux32:release:sharedLibrary'.
+buildDependentsDataPostgreSQLLinux32ReleaseStaticLibrary - Build dependents of static library 'dataPostgreSQL:linux32:release:staticLibrary'.
+buildDependentsDataPostgreSQLLinux64DebugSharedLibrary - Build dependents of shared library 'dataPostgreSQL:linux64:debug:sharedLibrary'.
+buildDependentsDataPostgreSQLLinux64DebugStaticLibrary - Build dependents of static library 'dataPostgreSQL:linux64:debug:staticLibrary'.
+buildDependentsDataPostgreSQLLinux64ReleaseSharedLibrary - Build dependents of shared library 'dataPostgreSQL:linux64:release:sharedLibrary'.
+buildDependentsDataPostgreSQLLinux64ReleaseStaticLibrary - Build dependents of static library 'dataPostgreSQL:linux64:release:staticLibrary'.
+buildDependentsDataPostgreSQLMacosDebugSharedLibrary - Build dependents of shared library 'dataPostgreSQL:macos:debug:sharedLibrary'.
+buildDependentsDataPostgreSQLMacosDebugStaticLibrary - Build dependents of static library 'dataPostgreSQL:macos:debug:staticLibrary'.
+buildDependentsDataPostgreSQLMacosReleaseSharedLibrary - Build dependents of shared library 'dataPostgreSQL:macos:release:sharedLibrary'.
+buildDependentsDataPostgreSQLMacosReleaseStaticLibrary - Build dependents of static library 'dataPostgreSQL:macos:release:staticLibrary'.
+buildDependentsDataPostgreSQLWin32DebugSemiStaticLibrary - Build dependents of semi static library 'dataPostgreSQL:win32:debug:semiStaticLibrary'.
+buildDependentsDataPostgreSQLWin32DebugSharedLibrary - Build dependents of shared library 'dataPostgreSQL:win32:debug:sharedLibrary'.
+buildDependentsDataPostgreSQLWin32DebugStaticLibrary - Build dependents of static library 'dataPostgreSQL:win32:debug:staticLibrary'.
+buildDependentsDataPostgreSQLWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'dataPostgreSQL:win32:release:semiStaticLibrary'.
+buildDependentsDataPostgreSQLWin32ReleaseSharedLibrary - Build dependents of shared library 'dataPostgreSQL:win32:release:sharedLibrary'.
+buildDependentsDataPostgreSQLWin32ReleaseStaticLibrary - Build dependents of static library 'dataPostgreSQL:win32:release:staticLibrary'.
+buildDependentsDataPostgreSQLWin64DebugSemiStaticLibrary - Build dependents of semi static library 'dataPostgreSQL:win64:debug:semiStaticLibrary'.
+buildDependentsDataPostgreSQLWin64DebugSharedLibrary - Build dependents of shared library 'dataPostgreSQL:win64:debug:sharedLibrary'.
+buildDependentsDataPostgreSQLWin64DebugStaticLibrary - Build dependents of static library 'dataPostgreSQL:win64:debug:staticLibrary'.
+buildDependentsDataPostgreSQLWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'dataPostgreSQL:win64:release:semiStaticLibrary'.
+buildDependentsDataPostgreSQLWin64ReleaseSharedLibrary - Build dependents of shared library 'dataPostgreSQL:win64:release:sharedLibrary'.
+buildDependentsDataPostgreSQLWin64ReleaseStaticLibrary - Build dependents of static library 'dataPostgreSQL:win64:release:staticLibrary'.
+buildDependentsDataSQLite - Build dependents of native library 'DataSQLite'.
+buildDependentsDataSQLiteLinux32DebugSharedLibrary - Build dependents of shared library 'dataSQLite:linux32:debug:sharedLibrary'.
+buildDependentsDataSQLiteLinux32DebugStaticLibrary - Build dependents of static library 'dataSQLite:linux32:debug:staticLibrary'.
+buildDependentsDataSQLiteLinux32ReleaseSharedLibrary - Build dependents of shared library 'dataSQLite:linux32:release:sharedLibrary'.
+buildDependentsDataSQLiteLinux32ReleaseStaticLibrary - Build dependents of static library 'dataSQLite:linux32:release:staticLibrary'.
+buildDependentsDataSQLiteLinux64DebugSharedLibrary - Build dependents of shared library 'dataSQLite:linux64:debug:sharedLibrary'.
+buildDependentsDataSQLiteLinux64DebugStaticLibrary - Build dependents of static library 'dataSQLite:linux64:debug:staticLibrary'.
+buildDependentsDataSQLiteLinux64ReleaseSharedLibrary - Build dependents of shared library 'dataSQLite:linux64:release:sharedLibrary'.
+buildDependentsDataSQLiteLinux64ReleaseStaticLibrary - Build dependents of static library 'dataSQLite:linux64:release:staticLibrary'.
+buildDependentsDataSQLiteMacosDebugSharedLibrary - Build dependents of shared library 'dataSQLite:macos:debug:sharedLibrary'.
+buildDependentsDataSQLiteMacosDebugStaticLibrary - Build dependents of static library 'dataSQLite:macos:debug:staticLibrary'.
+buildDependentsDataSQLiteMacosReleaseSharedLibrary - Build dependents of shared library 'dataSQLite:macos:release:sharedLibrary'.
+buildDependentsDataSQLiteMacosReleaseStaticLibrary - Build dependents of static library 'dataSQLite:macos:release:staticLibrary'.
+buildDependentsDataSQLiteWin32DebugSemiStaticLibrary - Build dependents of semi static library 'dataSQLite:win32:debug:semiStaticLibrary'.
+buildDependentsDataSQLiteWin32DebugSharedLibrary - Build dependents of shared library 'dataSQLite:win32:debug:sharedLibrary'.
+buildDependentsDataSQLiteWin32DebugStaticLibrary - Build dependents of static library 'dataSQLite:win32:debug:staticLibrary'.
+buildDependentsDataSQLiteWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'dataSQLite:win32:release:semiStaticLibrary'.
+buildDependentsDataSQLiteWin32ReleaseSharedLibrary - Build dependents of shared library 'dataSQLite:win32:release:sharedLibrary'.
+buildDependentsDataSQLiteWin32ReleaseStaticLibrary - Build dependents of static library 'dataSQLite:win32:release:staticLibrary'.
+buildDependentsDataSQLiteWin64DebugSemiStaticLibrary - Build dependents of semi static library 'dataSQLite:win64:debug:semiStaticLibrary'.
+buildDependentsDataSQLiteWin64DebugSharedLibrary - Build dependents of shared library 'dataSQLite:win64:debug:sharedLibrary'.
+buildDependentsDataSQLiteWin64DebugStaticLibrary - Build dependents of static library 'dataSQLite:win64:debug:staticLibrary'.
+buildDependentsDataSQLiteWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'dataSQLite:win64:release:semiStaticLibrary'.
+buildDependentsDataSQLiteWin64ReleaseSharedLibrary - Build dependents of shared library 'dataSQLite:win64:release:sharedLibrary'.
+buildDependentsDataSQLiteWin64ReleaseStaticLibrary - Build dependents of static library 'dataSQLite:win64:release:staticLibrary'.
+buildDependentsDataTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'dataTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsDataTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'dataTestSuite:linux32:release:cppUnitExe'.
+buildDependentsDataTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'dataTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsDataTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'dataTestSuite:linux64:release:cppUnitExe'.
+buildDependentsDataTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'dataTestSuite:macos:debug:cppUnitExe'.
+buildDependentsDataTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'dataTestSuite:macos:release:cppUnitExe'.
+buildDependentsDataTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'dataTestSuite:win32:debug:cppUnitExe'.
+buildDependentsDataTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'dataTestSuite:win32:release:cppUnitExe'.
+buildDependentsDataTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'dataTestSuite:win64:debug:cppUnitExe'.
+buildDependentsDataTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'dataTestSuite:win64:release:cppUnitExe'.
+buildDependentsDataWin32DebugExecutable - Build dependents of executable 'data:win32:debug:executable'.
+buildDependentsDataWin32DebugSemiStaticLibrary - Build dependents of semi static library 'data:win32:debug:semiStaticLibrary'.
+buildDependentsDataWin32DebugSharedLibrary - Build dependents of shared library 'data:win32:debug:sharedLibrary'.
+buildDependentsDataWin32DebugStaticLibrary - Build dependents of static library 'data:win32:debug:staticLibrary'.
+buildDependentsDataWin32ReleaseExecutable - Build dependents of executable 'data:win32:release:executable'.
+buildDependentsDataWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'data:win32:release:semiStaticLibrary'.
+buildDependentsDataWin32ReleaseSharedLibrary - Build dependents of shared library 'data:win32:release:sharedLibrary'.
+buildDependentsDataWin32ReleaseStaticLibrary - Build dependents of static library 'data:win32:release:staticLibrary'.
+buildDependentsDataWin64DebugExecutable - Build dependents of executable 'data:win64:debug:executable'.
+buildDependentsDataWin64DebugSemiStaticLibrary - Build dependents of semi static library 'data:win64:debug:semiStaticLibrary'.
+buildDependentsDataWin64DebugSharedLibrary - Build dependents of shared library 'data:win64:debug:sharedLibrary'.
+buildDependentsDataWin64DebugStaticLibrary - Build dependents of static library 'data:win64:debug:staticLibrary'.
+buildDependentsDataWin64ReleaseExecutable - Build dependents of executable 'data:win64:release:executable'.
+buildDependentsDataWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'data:win64:release:semiStaticLibrary'.
+buildDependentsDataWin64ReleaseSharedLibrary - Build dependents of shared library 'data:win64:release:sharedLibrary'.
+buildDependentsDataWin64ReleaseStaticLibrary - Build dependents of static library 'data:win64:release:staticLibrary'.
+buildDependentsDateTime - Build dependents of native executable 'DateTime'.
+buildDependentsDateTimeLinux32DebugExecutable - Build dependents of executable 'dateTime:linux32:debug:executable'.
+buildDependentsDateTimeLinux32ReleaseExecutable - Build dependents of executable 'dateTime:linux32:release:executable'.
+buildDependentsDateTimeLinux64DebugExecutable - Build dependents of executable 'dateTime:linux64:debug:executable'.
+buildDependentsDateTimeLinux64ReleaseExecutable - Build dependents of executable 'dateTime:linux64:release:executable'.
+buildDependentsDateTimeMacosDebugExecutable - Build dependents of executable 'dateTime:macos:debug:executable'.
+buildDependentsDateTimeMacosReleaseExecutable - Build dependents of executable 'dateTime:macos:release:executable'.
+buildDependentsDateTimeWin32DebugExecutable - Build dependents of executable 'dateTime:win32:debug:executable'.
+buildDependentsDateTimeWin32ReleaseExecutable - Build dependents of executable 'dateTime:win32:release:executable'.
+buildDependentsDateTimeWin64DebugExecutable - Build dependents of executable 'dateTime:win64:debug:executable'.
+buildDependentsDateTimeWin64ReleaseExecutable - Build dependents of executable 'dateTime:win64:release:executable'.
+buildDependentsDeflate - Build dependents of native executable 'deflate'.
+buildDependentsDeflateLinux32DebugExecutable - Build dependents of executable 'deflate:linux32:debug:executable'.
+buildDependentsDeflateLinux32ReleaseExecutable - Build dependents of executable 'deflate:linux32:release:executable'.
+buildDependentsDeflateLinux64DebugExecutable - Build dependents of executable 'deflate:linux64:debug:executable'.
+buildDependentsDeflateLinux64ReleaseExecutable - Build dependents of executable 'deflate:linux64:release:executable'.
+buildDependentsDeflateMacosDebugExecutable - Build dependents of executable 'deflate:macos:debug:executable'.
+buildDependentsDeflateMacosReleaseExecutable - Build dependents of executable 'deflate:macos:release:executable'.
+buildDependentsDeflateWin32DebugExecutable - Build dependents of executable 'deflate:win32:debug:executable'.
+buildDependentsDeflateWin32ReleaseExecutable - Build dependents of executable 'deflate:win32:release:executable'.
+buildDependentsDeflateWin64DebugExecutable - Build dependents of executable 'deflate:win64:debug:executable'.
+buildDependentsDeflateWin64ReleaseExecutable - Build dependents of executable 'deflate:win64:release:executable'.
+buildDependentsDict - Build dependents of native executable 'dict'.
+buildDependentsDictLinux32DebugExecutable - Build dependents of executable 'dict:linux32:debug:executable'.
+buildDependentsDictLinux32ReleaseExecutable - Build dependents of executable 'dict:linux32:release:executable'.
+buildDependentsDictLinux64DebugExecutable - Build dependents of executable 'dict:linux64:debug:executable'.
+buildDependentsDictLinux64ReleaseExecutable - Build dependents of executable 'dict:linux64:release:executable'.
+buildDependentsDictMacosDebugExecutable - Build dependents of executable 'dict:macos:debug:executable'.
+buildDependentsDictMacosReleaseExecutable - Build dependents of executable 'dict:macos:release:executable'.
+buildDependentsDictWin32DebugExecutable - Build dependents of executable 'dict:win32:debug:executable'.
+buildDependentsDictWin32ReleaseExecutable - Build dependents of executable 'dict:win32:release:executable'.
+buildDependentsDictWin64DebugExecutable - Build dependents of executable 'dict:win64:debug:executable'.
+buildDependentsDictWin64ReleaseExecutable - Build dependents of executable 'dict:win64:release:executable'.
+buildDependentsDir - Build dependents of native executable 'dir'.
+buildDependentsDirLinux32DebugExecutable - Build dependents of executable 'dir:linux32:debug:executable'.
+buildDependentsDirLinux32ReleaseExecutable - Build dependents of executable 'dir:linux32:release:executable'.
+buildDependentsDirLinux64DebugExecutable - Build dependents of executable 'dir:linux64:debug:executable'.
+buildDependentsDirLinux64ReleaseExecutable - Build dependents of executable 'dir:linux64:release:executable'.
+buildDependentsDirMacosDebugExecutable - Build dependents of executable 'dir:macos:debug:executable'.
+buildDependentsDirMacosReleaseExecutable - Build dependents of executable 'dir:macos:release:executable'.
+buildDependentsDirWin32DebugExecutable - Build dependents of executable 'dir:win32:debug:executable'.
+buildDependentsDirWin32ReleaseExecutable - Build dependents of executable 'dir:win32:release:executable'.
+buildDependentsDirWin64DebugExecutable - Build dependents of executable 'dir:win64:debug:executable'.
+buildDependentsDirWin64ReleaseExecutable - Build dependents of executable 'dir:win64:release:executable'.
+buildDependentsDOMParser - Build dependents of native executable 'DOMParser'.
+buildDependentsDOMParserLinux32DebugExecutable - Build dependents of executable 'dOMParser:linux32:debug:executable'.
+buildDependentsDOMParserLinux32ReleaseExecutable - Build dependents of executable 'dOMParser:linux32:release:executable'.
+buildDependentsDOMParserLinux64DebugExecutable - Build dependents of executable 'dOMParser:linux64:debug:executable'.
+buildDependentsDOMParserLinux64ReleaseExecutable - Build dependents of executable 'dOMParser:linux64:release:executable'.
+buildDependentsDOMParserMacosDebugExecutable - Build dependents of executable 'dOMParser:macos:debug:executable'.
+buildDependentsDOMParserMacosReleaseExecutable - Build dependents of executable 'dOMParser:macos:release:executable'.
+buildDependentsDOMParserWin32DebugExecutable - Build dependents of executable 'dOMParser:win32:debug:executable'.
+buildDependentsDOMParserWin32ReleaseExecutable - Build dependents of executable 'dOMParser:win32:release:executable'.
+buildDependentsDOMParserWin64DebugExecutable - Build dependents of executable 'dOMParser:win64:debug:executable'.
+buildDependentsDOMParserWin64ReleaseExecutable - Build dependents of executable 'dOMParser:win64:release:executable'.
+buildDependentsDOMWriter - Build dependents of native executable 'DOMWriter'.
+buildDependentsDOMWriterLinux32DebugExecutable - Build dependents of executable 'dOMWriter:linux32:debug:executable'.
+buildDependentsDOMWriterLinux32ReleaseExecutable - Build dependents of executable 'dOMWriter:linux32:release:executable'.
+buildDependentsDOMWriterLinux64DebugExecutable - Build dependents of executable 'dOMWriter:linux64:debug:executable'.
+buildDependentsDOMWriterLinux64ReleaseExecutable - Build dependents of executable 'dOMWriter:linux64:release:executable'.
+buildDependentsDOMWriterMacosDebugExecutable - Build dependents of executable 'dOMWriter:macos:debug:executable'.
+buildDependentsDOMWriterMacosReleaseExecutable - Build dependents of executable 'dOMWriter:macos:release:executable'.
+buildDependentsDOMWriterWin32DebugExecutable - Build dependents of executable 'dOMWriter:win32:debug:executable'.
+buildDependentsDOMWriterWin32ReleaseExecutable - Build dependents of executable 'dOMWriter:win32:release:executable'.
+buildDependentsDOMWriterWin64DebugExecutable - Build dependents of executable 'dOMWriter:win64:debug:executable'.
+buildDependentsDOMWriterWin64ReleaseExecutable - Build dependents of executable 'dOMWriter:win64:release:executable'.
+buildDependentsDownload - Build dependents of native executable 'download'.
+buildDependentsDownloadLinux32DebugExecutable - Build dependents of executable 'download:linux32:debug:executable'.
+buildDependentsDownloadLinux32ReleaseExecutable - Build dependents of executable 'download:linux32:release:executable'.
+buildDependentsDownloadLinux64DebugExecutable - Build dependents of executable 'download:linux64:debug:executable'.
+buildDependentsDownloadLinux64ReleaseExecutable - Build dependents of executable 'download:linux64:release:executable'.
+buildDependentsDownloadMacosDebugExecutable - Build dependents of executable 'download:macos:debug:executable'.
+buildDependentsDownloadMacosReleaseExecutable - Build dependents of executable 'download:macos:release:executable'.
+buildDependentsDownloadWin32DebugExecutable - Build dependents of executable 'download:win32:debug:executable'.
+buildDependentsDownloadWin32ReleaseExecutable - Build dependents of executable 'download:win32:release:executable'.
+buildDependentsDownloadWin64DebugExecutable - Build dependents of executable 'download:win64:debug:executable'.
+buildDependentsDownloadWin64ReleaseExecutable - Build dependents of executable 'download:win64:release:executable'.
+buildDependentsEchoServer - Build dependents of native executable 'EchoServer'.
+buildDependentsEchoServerLinux32DebugExecutable - Build dependents of executable 'echoServer:linux32:debug:executable'.
+buildDependentsEchoServerLinux32ReleaseExecutable - Build dependents of executable 'echoServer:linux32:release:executable'.
+buildDependentsEchoServerLinux64DebugExecutable - Build dependents of executable 'echoServer:linux64:debug:executable'.
+buildDependentsEchoServerLinux64ReleaseExecutable - Build dependents of executable 'echoServer:linux64:release:executable'.
+buildDependentsEchoServerMacosDebugExecutable - Build dependents of executable 'echoServer:macos:debug:executable'.
+buildDependentsEchoServerMacosReleaseExecutable - Build dependents of executable 'echoServer:macos:release:executable'.
+buildDependentsEchoServerWin32DebugExecutable - Build dependents of executable 'echoServer:win32:debug:executable'.
+buildDependentsEchoServerWin32ReleaseExecutable - Build dependents of executable 'echoServer:win32:release:executable'.
+buildDependentsEchoServerWin64DebugExecutable - Build dependents of executable 'echoServer:win64:debug:executable'.
+buildDependentsEchoServerWin64ReleaseExecutable - Build dependents of executable 'echoServer:win64:release:executable'.
+buildDependentsEncodings - Build dependents of native library 'Encodings'.
+buildDependentsEncodingsLinux32DebugSharedLibrary - Build dependents of shared library 'encodings:linux32:debug:sharedLibrary'.
+buildDependentsEncodingsLinux32DebugStaticLibrary - Build dependents of static library 'encodings:linux32:debug:staticLibrary'.
+buildDependentsEncodingsLinux32ReleaseSharedLibrary - Build dependents of shared library 'encodings:linux32:release:sharedLibrary'.
+buildDependentsEncodingsLinux32ReleaseStaticLibrary - Build dependents of static library 'encodings:linux32:release:staticLibrary'.
+buildDependentsEncodingsLinux64DebugSharedLibrary - Build dependents of shared library 'encodings:linux64:debug:sharedLibrary'.
+buildDependentsEncodingsLinux64DebugStaticLibrary - Build dependents of static library 'encodings:linux64:debug:staticLibrary'.
+buildDependentsEncodingsLinux64ReleaseSharedLibrary - Build dependents of shared library 'encodings:linux64:release:sharedLibrary'.
+buildDependentsEncodingsLinux64ReleaseStaticLibrary - Build dependents of static library 'encodings:linux64:release:staticLibrary'.
+buildDependentsEncodingsMacosDebugSharedLibrary - Build dependents of shared library 'encodings:macos:debug:sharedLibrary'.
+buildDependentsEncodingsMacosDebugStaticLibrary - Build dependents of static library 'encodings:macos:debug:staticLibrary'.
+buildDependentsEncodingsMacosReleaseSharedLibrary - Build dependents of shared library 'encodings:macos:release:sharedLibrary'.
+buildDependentsEncodingsMacosReleaseStaticLibrary - Build dependents of static library 'encodings:macos:release:staticLibrary'.
+buildDependentsEncodingsTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'encodingsTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsEncodingsTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'encodingsTestSuite:linux32:release:cppUnitExe'.
+buildDependentsEncodingsTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'encodingsTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsEncodingsTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'encodingsTestSuite:linux64:release:cppUnitExe'.
+buildDependentsEncodingsTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'encodingsTestSuite:macos:debug:cppUnitExe'.
+buildDependentsEncodingsTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'encodingsTestSuite:macos:release:cppUnitExe'.
+buildDependentsEncodingsTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'encodingsTestSuite:win32:debug:cppUnitExe'.
+buildDependentsEncodingsTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'encodingsTestSuite:win32:release:cppUnitExe'.
+buildDependentsEncodingsTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'encodingsTestSuite:win64:debug:cppUnitExe'.
+buildDependentsEncodingsTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'encodingsTestSuite:win64:release:cppUnitExe'.
+buildDependentsEncodingsWin32DebugSemiStaticLibrary - Build dependents of semi static library 'encodings:win32:debug:semiStaticLibrary'.
+buildDependentsEncodingsWin32DebugSharedLibrary - Build dependents of shared library 'encodings:win32:debug:sharedLibrary'.
+buildDependentsEncodingsWin32DebugStaticLibrary - Build dependents of static library 'encodings:win32:debug:staticLibrary'.
+buildDependentsEncodingsWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'encodings:win32:release:semiStaticLibrary'.
+buildDependentsEncodingsWin32ReleaseSharedLibrary - Build dependents of shared library 'encodings:win32:release:sharedLibrary'.
+buildDependentsEncodingsWin32ReleaseStaticLibrary - Build dependents of static library 'encodings:win32:release:staticLibrary'.
+buildDependentsEncodingsWin64DebugSemiStaticLibrary - Build dependents of semi static library 'encodings:win64:debug:semiStaticLibrary'.
+buildDependentsEncodingsWin64DebugSharedLibrary - Build dependents of shared library 'encodings:win64:debug:sharedLibrary'.
+buildDependentsEncodingsWin64DebugStaticLibrary - Build dependents of static library 'encodings:win64:debug:staticLibrary'.
+buildDependentsEncodingsWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'encodings:win64:release:semiStaticLibrary'.
+buildDependentsEncodingsWin64ReleaseSharedLibrary - Build dependents of shared library 'encodings:win64:release:sharedLibrary'.
+buildDependentsEncodingsWin64ReleaseStaticLibrary - Build dependents of static library 'encodings:win64:release:staticLibrary'.
+buildDependentsFile2page - Build dependents of native executable 'File2page'.
+buildDependentsFile2pageLinux32DebugExecutable - Build dependents of executable 'file2page:linux32:debug:executable'.
+buildDependentsFile2pageLinux32ReleaseExecutable - Build dependents of executable 'file2page:linux32:release:executable'.
+buildDependentsFile2pageLinux64DebugExecutable - Build dependents of executable 'file2page:linux64:debug:executable'.
+buildDependentsFile2pageLinux64ReleaseExecutable - Build dependents of executable 'file2page:linux64:release:executable'.
+buildDependentsFile2pageMacosDebugExecutable - Build dependents of executable 'file2page:macos:debug:executable'.
+buildDependentsFile2pageMacosReleaseExecutable - Build dependents of executable 'file2page:macos:release:executable'.
+buildDependentsFile2pageWin32DebugExecutable - Build dependents of executable 'file2page:win32:debug:executable'.
+buildDependentsFile2pageWin32ReleaseExecutable - Build dependents of executable 'file2page:win32:release:executable'.
+buildDependentsFile2pageWin64DebugExecutable - Build dependents of executable 'file2page:win64:debug:executable'.
+buildDependentsFile2pageWin64ReleaseExecutable - Build dependents of executable 'file2page:win64:release:executable'.
+buildDependentsFoundation - Build dependents of native library 'Foundation'.
+buildDependentsFoundationLinux32DebugSharedLibrary - Build dependents of shared library 'foundation:linux32:debug:sharedLibrary'.
+buildDependentsFoundationLinux32DebugStaticLibrary - Build dependents of static library 'foundation:linux32:debug:staticLibrary'.
+buildDependentsFoundationLinux32ReleaseSharedLibrary - Build dependents of shared library 'foundation:linux32:release:sharedLibrary'.
+buildDependentsFoundationLinux32ReleaseStaticLibrary - Build dependents of static library 'foundation:linux32:release:staticLibrary'.
+buildDependentsFoundationLinux64DebugSharedLibrary - Build dependents of shared library 'foundation:linux64:debug:sharedLibrary'.
+buildDependentsFoundationLinux64DebugStaticLibrary - Build dependents of static library 'foundation:linux64:debug:staticLibrary'.
+buildDependentsFoundationLinux64ReleaseSharedLibrary - Build dependents of shared library 'foundation:linux64:release:sharedLibrary'.
+buildDependentsFoundationLinux64ReleaseStaticLibrary - Build dependents of static library 'foundation:linux64:release:staticLibrary'.
+buildDependentsFoundationMacosDebugSharedLibrary - Build dependents of shared library 'foundation:macos:debug:sharedLibrary'.
+buildDependentsFoundationMacosDebugStaticLibrary - Build dependents of static library 'foundation:macos:debug:staticLibrary'.
+buildDependentsFoundationMacosReleaseSharedLibrary - Build dependents of shared library 'foundation:macos:release:sharedLibrary'.
+buildDependentsFoundationMacosReleaseStaticLibrary - Build dependents of static library 'foundation:macos:release:staticLibrary'.
+buildDependentsFoundationTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'foundationTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsFoundationTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'foundationTestSuite:linux32:release:cppUnitExe'.
+buildDependentsFoundationTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'foundationTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsFoundationTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'foundationTestSuite:linux64:release:cppUnitExe'.
+buildDependentsFoundationTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'foundationTestSuite:macos:debug:cppUnitExe'.
+buildDependentsFoundationTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'foundationTestSuite:macos:release:cppUnitExe'.
+buildDependentsFoundationTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'foundationTestSuite:win32:debug:cppUnitExe'.
+buildDependentsFoundationTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'foundationTestSuite:win32:release:cppUnitExe'.
+buildDependentsFoundationTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'foundationTestSuite:win64:debug:cppUnitExe'.
+buildDependentsFoundationTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'foundationTestSuite:win64:release:cppUnitExe'.
+buildDependentsFoundationWin32DebugSemiStaticLibrary - Build dependents of semi static library 'foundation:win32:debug:semiStaticLibrary'.
+buildDependentsFoundationWin32DebugSharedLibrary - Build dependents of shared library 'foundation:win32:debug:sharedLibrary'.
+buildDependentsFoundationWin32DebugStaticLibrary - Build dependents of static library 'foundation:win32:debug:staticLibrary'.
+buildDependentsFoundationWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'foundation:win32:release:semiStaticLibrary'.
+buildDependentsFoundationWin32ReleaseSharedLibrary - Build dependents of shared library 'foundation:win32:release:sharedLibrary'.
+buildDependentsFoundationWin32ReleaseStaticLibrary - Build dependents of static library 'foundation:win32:release:staticLibrary'.
+buildDependentsFoundationWin64DebugSemiStaticLibrary - Build dependents of semi static library 'foundation:win64:debug:semiStaticLibrary'.
+buildDependentsFoundationWin64DebugSharedLibrary - Build dependents of shared library 'foundation:win64:debug:sharedLibrary'.
+buildDependentsFoundationWin64DebugStaticLibrary - Build dependents of static library 'foundation:win64:debug:staticLibrary'.
+buildDependentsFoundationWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'foundation:win64:release:semiStaticLibrary'.
+buildDependentsFoundationWin64ReleaseSharedLibrary - Build dependents of shared library 'foundation:win64:release:sharedLibrary'.
+buildDependentsFoundationWin64ReleaseStaticLibrary - Build dependents of static library 'foundation:win64:release:staticLibrary'.
+buildDependentsGrep - Build dependents of native executable 'grep'.
+buildDependentsGrepLinux32DebugExecutable - Build dependents of executable 'grep:linux32:debug:executable'.
+buildDependentsGrepLinux32ReleaseExecutable - Build dependents of executable 'grep:linux32:release:executable'.
+buildDependentsGrepLinux64DebugExecutable - Build dependents of executable 'grep:linux64:debug:executable'.
+buildDependentsGrepLinux64ReleaseExecutable - Build dependents of executable 'grep:linux64:release:executable'.
+buildDependentsGrepMacosDebugExecutable - Build dependents of executable 'grep:macos:debug:executable'.
+buildDependentsGrepMacosReleaseExecutable - Build dependents of executable 'grep:macos:release:executable'.
+buildDependentsGrepWin32DebugExecutable - Build dependents of executable 'grep:win32:debug:executable'.
+buildDependentsGrepWin32ReleaseExecutable - Build dependents of executable 'grep:win32:release:executable'.
+buildDependentsGrepWin64DebugExecutable - Build dependents of executable 'grep:win64:debug:executable'.
+buildDependentsGrepWin64ReleaseExecutable - Build dependents of executable 'grep:win64:release:executable'.
+buildDependentsHmacmd5 - Build dependents of native executable 'hmacmd5'.
+buildDependentsHmacmd5Linux32DebugExecutable - Build dependents of executable 'hmacmd5:linux32:debug:executable'.
+buildDependentsHmacmd5Linux32ReleaseExecutable - Build dependents of executable 'hmacmd5:linux32:release:executable'.
+buildDependentsHmacmd5Linux64DebugExecutable - Build dependents of executable 'hmacmd5:linux64:debug:executable'.
+buildDependentsHmacmd5Linux64ReleaseExecutable - Build dependents of executable 'hmacmd5:linux64:release:executable'.
+buildDependentsHmacmd5MacosDebugExecutable - Build dependents of executable 'hmacmd5:macos:debug:executable'.
+buildDependentsHmacmd5MacosReleaseExecutable - Build dependents of executable 'hmacmd5:macos:release:executable'.
+buildDependentsHmacmd5Win32DebugExecutable - Build dependents of executable 'hmacmd5:win32:debug:executable'.
+buildDependentsHmacmd5Win32ReleaseExecutable - Build dependents of executable 'hmacmd5:win32:release:executable'.
+buildDependentsHmacmd5Win64DebugExecutable - Build dependents of executable 'hmacmd5:win64:debug:executable'.
+buildDependentsHmacmd5Win64ReleaseExecutable - Build dependents of executable 'hmacmd5:win64:release:executable'.
+buildDependentsHTTPFormServer - Build dependents of native executable 'HTTPFormServer'.
+buildDependentsHTTPFormServerLinux32DebugExecutable - Build dependents of executable 'hTTPFormServer:linux32:debug:executable'.
+buildDependentsHTTPFormServerLinux32ReleaseExecutable - Build dependents of executable 'hTTPFormServer:linux32:release:executable'.
+buildDependentsHTTPFormServerLinux64DebugExecutable - Build dependents of executable 'hTTPFormServer:linux64:debug:executable'.
+buildDependentsHTTPFormServerLinux64ReleaseExecutable - Build dependents of executable 'hTTPFormServer:linux64:release:executable'.
+buildDependentsHTTPFormServerMacosDebugExecutable - Build dependents of executable 'hTTPFormServer:macos:debug:executable'.
+buildDependentsHTTPFormServerMacosReleaseExecutable - Build dependents of executable 'hTTPFormServer:macos:release:executable'.
+buildDependentsHTTPFormServerWin32DebugExecutable - Build dependents of executable 'hTTPFormServer:win32:debug:executable'.
+buildDependentsHTTPFormServerWin32ReleaseExecutable - Build dependents of executable 'hTTPFormServer:win32:release:executable'.
+buildDependentsHTTPFormServerWin64DebugExecutable - Build dependents of executable 'hTTPFormServer:win64:debug:executable'.
+buildDependentsHTTPFormServerWin64ReleaseExecutable - Build dependents of executable 'hTTPFormServer:win64:release:executable'.
+buildDependentsHttpget - Build dependents of native executable 'httpget'.
+buildDependentsHttpgetLinux32DebugExecutable - Build dependents of executable 'httpget:linux32:debug:executable'.
+buildDependentsHttpgetLinux32ReleaseExecutable - Build dependents of executable 'httpget:linux32:release:executable'.
+buildDependentsHttpgetLinux64DebugExecutable - Build dependents of executable 'httpget:linux64:debug:executable'.
+buildDependentsHttpgetLinux64ReleaseExecutable - Build dependents of executable 'httpget:linux64:release:executable'.
+buildDependentsHttpgetMacosDebugExecutable - Build dependents of executable 'httpget:macos:debug:executable'.
+buildDependentsHttpgetMacosReleaseExecutable - Build dependents of executable 'httpget:macos:release:executable'.
+buildDependentsHttpgetWin32DebugExecutable - Build dependents of executable 'httpget:win32:debug:executable'.
+buildDependentsHttpgetWin32ReleaseExecutable - Build dependents of executable 'httpget:win32:release:executable'.
+buildDependentsHttpgetWin64DebugExecutable - Build dependents of executable 'httpget:win64:debug:executable'.
+buildDependentsHttpgetWin64ReleaseExecutable - Build dependents of executable 'httpget:win64:release:executable'.
+buildDependentsHTTPLoadTest - Build dependents of native executable 'HTTPLoadTest'.
+buildDependentsHTTPLoadTestLinux32DebugExecutable - Build dependents of executable 'hTTPLoadTest:linux32:debug:executable'.
+buildDependentsHTTPLoadTestLinux32ReleaseExecutable - Build dependents of executable 'hTTPLoadTest:linux32:release:executable'.
+buildDependentsHTTPLoadTestLinux64DebugExecutable - Build dependents of executable 'hTTPLoadTest:linux64:debug:executable'.
+buildDependentsHTTPLoadTestLinux64ReleaseExecutable - Build dependents of executable 'hTTPLoadTest:linux64:release:executable'.
+buildDependentsHTTPLoadTestMacosDebugExecutable - Build dependents of executable 'hTTPLoadTest:macos:debug:executable'.
+buildDependentsHTTPLoadTestMacosReleaseExecutable - Build dependents of executable 'hTTPLoadTest:macos:release:executable'.
+buildDependentsHTTPLoadTestWin32DebugExecutable - Build dependents of executable 'hTTPLoadTest:win32:debug:executable'.
+buildDependentsHTTPLoadTestWin32ReleaseExecutable - Build dependents of executable 'hTTPLoadTest:win32:release:executable'.
+buildDependentsHTTPLoadTestWin64DebugExecutable - Build dependents of executable 'hTTPLoadTest:win64:debug:executable'.
+buildDependentsHTTPLoadTestWin64ReleaseExecutable - Build dependents of executable 'hTTPLoadTest:win64:release:executable'.
+buildDependentsHTTPSTimeServer - Build dependents of native executable 'HTTPSTimeServer'.
+buildDependentsHTTPSTimeServerLinux32DebugExecutable - Build dependents of executable 'hTTPSTimeServer:linux32:debug:executable'.
+buildDependentsHTTPSTimeServerLinux32ReleaseExecutable - Build dependents of executable 'hTTPSTimeServer:linux32:release:executable'.
+buildDependentsHTTPSTimeServerLinux64DebugExecutable - Build dependents of executable 'hTTPSTimeServer:linux64:debug:executable'.
+buildDependentsHTTPSTimeServerLinux64ReleaseExecutable - Build dependents of executable 'hTTPSTimeServer:linux64:release:executable'.
+buildDependentsHTTPSTimeServerMacosDebugExecutable - Build dependents of executable 'hTTPSTimeServer:macos:debug:executable'.
+buildDependentsHTTPSTimeServerMacosReleaseExecutable - Build dependents of executable 'hTTPSTimeServer:macos:release:executable'.
+buildDependentsHTTPSTimeServerWin32DebugExecutable - Build dependents of executable 'hTTPSTimeServer:win32:debug:executable'.
+buildDependentsHTTPSTimeServerWin32ReleaseExecutable - Build dependents of executable 'hTTPSTimeServer:win32:release:executable'.
+buildDependentsHTTPSTimeServerWin64DebugExecutable - Build dependents of executable 'hTTPSTimeServer:win64:debug:executable'.
+buildDependentsHTTPSTimeServerWin64ReleaseExecutable - Build dependents of executable 'hTTPSTimeServer:win64:release:executable'.
+buildDependentsHTTPTimeServer - Build dependents of native executable 'HTTPTimeServer'.
+buildDependentsHTTPTimeServerLinux32DebugExecutable - Build dependents of executable 'hTTPTimeServer:linux32:debug:executable'.
+buildDependentsHTTPTimeServerLinux32ReleaseExecutable - Build dependents of executable 'hTTPTimeServer:linux32:release:executable'.
+buildDependentsHTTPTimeServerLinux64DebugExecutable - Build dependents of executable 'hTTPTimeServer:linux64:debug:executable'.
+buildDependentsHTTPTimeServerLinux64ReleaseExecutable - Build dependents of executable 'hTTPTimeServer:linux64:release:executable'.
+buildDependentsHTTPTimeServerMacosDebugExecutable - Build dependents of executable 'hTTPTimeServer:macos:debug:executable'.
+buildDependentsHTTPTimeServerMacosReleaseExecutable - Build dependents of executable 'hTTPTimeServer:macos:release:executable'.
+buildDependentsHTTPTimeServerWin32DebugExecutable - Build dependents of executable 'hTTPTimeServer:win32:debug:executable'.
+buildDependentsHTTPTimeServerWin32ReleaseExecutable - Build dependents of executable 'hTTPTimeServer:win32:release:executable'.
+buildDependentsHTTPTimeServerWin64DebugExecutable - Build dependents of executable 'hTTPTimeServer:win64:debug:executable'.
+buildDependentsHTTPTimeServerWin64ReleaseExecutable - Build dependents of executable 'hTTPTimeServer:win64:release:executable'.
+buildDependentsIfconfig - Build dependents of native executable 'ifconfig'.
+buildDependentsIfconfigLinux32DebugExecutable - Build dependents of executable 'ifconfig:linux32:debug:executable'.
+buildDependentsIfconfigLinux32ReleaseExecutable - Build dependents of executable 'ifconfig:linux32:release:executable'.
+buildDependentsIfconfigLinux64DebugExecutable - Build dependents of executable 'ifconfig:linux64:debug:executable'.
+buildDependentsIfconfigLinux64ReleaseExecutable - Build dependents of executable 'ifconfig:linux64:release:executable'.
+buildDependentsIfconfigMacosDebugExecutable - Build dependents of executable 'ifconfig:macos:debug:executable'.
+buildDependentsIfconfigMacosReleaseExecutable - Build dependents of executable 'ifconfig:macos:release:executable'.
+buildDependentsIfconfigWin32DebugExecutable - Build dependents of executable 'ifconfig:win32:debug:executable'.
+buildDependentsIfconfigWin32ReleaseExecutable - Build dependents of executable 'ifconfig:win32:release:executable'.
+buildDependentsIfconfigWin64DebugExecutable - Build dependents of executable 'ifconfig:win64:debug:executable'.
+buildDependentsIfconfigWin64ReleaseExecutable - Build dependents of executable 'ifconfig:win64:release:executable'.
+buildDependentsImage - Build dependents of native executable 'Image'.
+buildDependentsImageLinux32DebugExecutable - Build dependents of executable 'image:linux32:debug:executable'.
+buildDependentsImageLinux32ReleaseExecutable - Build dependents of executable 'image:linux32:release:executable'.
+buildDependentsImageLinux64DebugExecutable - Build dependents of executable 'image:linux64:debug:executable'.
+buildDependentsImageLinux64ReleaseExecutable - Build dependents of executable 'image:linux64:release:executable'.
+buildDependentsImageMacosDebugExecutable - Build dependents of executable 'image:macos:debug:executable'.
+buildDependentsImageMacosReleaseExecutable - Build dependents of executable 'image:macos:release:executable'.
+buildDependentsImageWin32DebugExecutable - Build dependents of executable 'image:win32:debug:executable'.
+buildDependentsImageWin32ReleaseExecutable - Build dependents of executable 'image:win32:release:executable'.
+buildDependentsImageWin64DebugExecutable - Build dependents of executable 'image:win64:debug:executable'.
+buildDependentsImageWin64ReleaseExecutable - Build dependents of executable 'image:win64:release:executable'.
+buildDependentsInflate - Build dependents of native executable 'inflate'.
+buildDependentsInflateLinux32DebugExecutable - Build dependents of executable 'inflate:linux32:debug:executable'.
+buildDependentsInflateLinux32ReleaseExecutable - Build dependents of executable 'inflate:linux32:release:executable'.
+buildDependentsInflateLinux64DebugExecutable - Build dependents of executable 'inflate:linux64:debug:executable'.
+buildDependentsInflateLinux64ReleaseExecutable - Build dependents of executable 'inflate:linux64:release:executable'.
+buildDependentsInflateMacosDebugExecutable - Build dependents of executable 'inflate:macos:debug:executable'.
+buildDependentsInflateMacosReleaseExecutable - Build dependents of executable 'inflate:macos:release:executable'.
+buildDependentsInflateWin32DebugExecutable - Build dependents of executable 'inflate:win32:debug:executable'.
+buildDependentsInflateWin32ReleaseExecutable - Build dependents of executable 'inflate:win32:release:executable'.
+buildDependentsInflateWin64DebugExecutable - Build dependents of executable 'inflate:win64:debug:executable'.
+buildDependentsInflateWin64ReleaseExecutable - Build dependents of executable 'inflate:win64:release:executable'.
+buildDependentsJSON - Build dependents of native library 'JSON'.
+buildDependentsJSONLinux32DebugSharedLibrary - Build dependents of shared library 'jSON:linux32:debug:sharedLibrary'.
+buildDependentsJSONLinux32DebugStaticLibrary - Build dependents of static library 'jSON:linux32:debug:staticLibrary'.
+buildDependentsJSONLinux32ReleaseSharedLibrary - Build dependents of shared library 'jSON:linux32:release:sharedLibrary'.
+buildDependentsJSONLinux32ReleaseStaticLibrary - Build dependents of static library 'jSON:linux32:release:staticLibrary'.
+buildDependentsJSONLinux64DebugSharedLibrary - Build dependents of shared library 'jSON:linux64:debug:sharedLibrary'.
+buildDependentsJSONLinux64DebugStaticLibrary - Build dependents of static library 'jSON:linux64:debug:staticLibrary'.
+buildDependentsJSONLinux64ReleaseSharedLibrary - Build dependents of shared library 'jSON:linux64:release:sharedLibrary'.
+buildDependentsJSONLinux64ReleaseStaticLibrary - Build dependents of static library 'jSON:linux64:release:staticLibrary'.
+buildDependentsJSONMacosDebugSharedLibrary - Build dependents of shared library 'jSON:macos:debug:sharedLibrary'.
+buildDependentsJSONMacosDebugStaticLibrary - Build dependents of static library 'jSON:macos:debug:staticLibrary'.
+buildDependentsJSONMacosReleaseSharedLibrary - Build dependents of shared library 'jSON:macos:release:sharedLibrary'.
+buildDependentsJSONMacosReleaseStaticLibrary - Build dependents of static library 'jSON:macos:release:staticLibrary'.
+buildDependentsJSONTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'jSONTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsJSONTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'jSONTestSuite:linux32:release:cppUnitExe'.
+buildDependentsJSONTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'jSONTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsJSONTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'jSONTestSuite:linux64:release:cppUnitExe'.
+buildDependentsJSONTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'jSONTestSuite:macos:debug:cppUnitExe'.
+buildDependentsJSONTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'jSONTestSuite:macos:release:cppUnitExe'.
+buildDependentsJSONTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'jSONTestSuite:win32:debug:cppUnitExe'.
+buildDependentsJSONTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'jSONTestSuite:win32:release:cppUnitExe'.
+buildDependentsJSONTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'jSONTestSuite:win64:debug:cppUnitExe'.
+buildDependentsJSONTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'jSONTestSuite:win64:release:cppUnitExe'.
+buildDependentsJSONWin32DebugSemiStaticLibrary - Build dependents of semi static library 'jSON:win32:debug:semiStaticLibrary'.
+buildDependentsJSONWin32DebugSharedLibrary - Build dependents of shared library 'jSON:win32:debug:sharedLibrary'.
+buildDependentsJSONWin32DebugStaticLibrary - Build dependents of static library 'jSON:win32:debug:staticLibrary'.
+buildDependentsJSONWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'jSON:win32:release:semiStaticLibrary'.
+buildDependentsJSONWin32ReleaseSharedLibrary - Build dependents of shared library 'jSON:win32:release:sharedLibrary'.
+buildDependentsJSONWin32ReleaseStaticLibrary - Build dependents of static library 'jSON:win32:release:staticLibrary'.
+buildDependentsJSONWin64DebugSemiStaticLibrary - Build dependents of semi static library 'jSON:win64:debug:semiStaticLibrary'.
+buildDependentsJSONWin64DebugSharedLibrary - Build dependents of shared library 'jSON:win64:debug:sharedLibrary'.
+buildDependentsJSONWin64DebugStaticLibrary - Build dependents of static library 'jSON:win64:debug:staticLibrary'.
+buildDependentsJSONWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'jSON:win64:release:semiStaticLibrary'.
+buildDependentsJSONWin64ReleaseSharedLibrary - Build dependents of shared library 'jSON:win64:release:sharedLibrary'.
+buildDependentsJSONWin64ReleaseStaticLibrary - Build dependents of static library 'jSON:win64:release:staticLibrary'.
+buildDependentsLineEndingConverter - Build dependents of native executable 'LineEndingConverter'.
+buildDependentsLineEndingConverterLinux32DebugExecutable - Build dependents of executable 'lineEndingConverter:linux32:debug:executable'.
+buildDependentsLineEndingConverterLinux32ReleaseExecutable - Build dependents of executable 'lineEndingConverter:linux32:release:executable'.
+buildDependentsLineEndingConverterLinux64DebugExecutable - Build dependents of executable 'lineEndingConverter:linux64:debug:executable'.
+buildDependentsLineEndingConverterLinux64ReleaseExecutable - Build dependents of executable 'lineEndingConverter:linux64:release:executable'.
+buildDependentsLineEndingConverterMacosDebugExecutable - Build dependents of executable 'lineEndingConverter:macos:debug:executable'.
+buildDependentsLineEndingConverterMacosReleaseExecutable - Build dependents of executable 'lineEndingConverter:macos:release:executable'.
+buildDependentsLineEndingConverterWin32DebugExecutable - Build dependents of executable 'lineEndingConverter:win32:debug:executable'.
+buildDependentsLineEndingConverterWin32ReleaseExecutable - Build dependents of executable 'lineEndingConverter:win32:release:executable'.
+buildDependentsLineEndingConverterWin64DebugExecutable - Build dependents of executable 'lineEndingConverter:win64:debug:executable'.
+buildDependentsLineEndingConverterWin64ReleaseExecutable - Build dependents of executable 'lineEndingConverter:win64:release:executable'.
+buildDependentsLogger - Build dependents of native executable 'Logger'.
+buildDependentsLoggerLinux32DebugExecutable - Build dependents of executable 'logger:linux32:debug:executable'.
+buildDependentsLoggerLinux32ReleaseExecutable - Build dependents of executable 'logger:linux32:release:executable'.
+buildDependentsLoggerLinux64DebugExecutable - Build dependents of executable 'logger:linux64:debug:executable'.
+buildDependentsLoggerLinux64ReleaseExecutable - Build dependents of executable 'logger:linux64:release:executable'.
+buildDependentsLoggerMacosDebugExecutable - Build dependents of executable 'logger:macos:debug:executable'.
+buildDependentsLoggerMacosReleaseExecutable - Build dependents of executable 'logger:macos:release:executable'.
+buildDependentsLoggerWin32DebugExecutable - Build dependents of executable 'logger:win32:debug:executable'.
+buildDependentsLoggerWin32ReleaseExecutable - Build dependents of executable 'logger:win32:release:executable'.
+buildDependentsLoggerWin64DebugExecutable - Build dependents of executable 'logger:win64:debug:executable'.
+buildDependentsLoggerWin64ReleaseExecutable - Build dependents of executable 'logger:win64:release:executable'.
+buildDependentsLogRotation - Build dependents of native executable 'LogRotation'.
+buildDependentsLogRotationLinux32DebugExecutable - Build dependents of executable 'logRotation:linux32:debug:executable'.
+buildDependentsLogRotationLinux32ReleaseExecutable - Build dependents of executable 'logRotation:linux32:release:executable'.
+buildDependentsLogRotationLinux64DebugExecutable - Build dependents of executable 'logRotation:linux64:debug:executable'.
+buildDependentsLogRotationLinux64ReleaseExecutable - Build dependents of executable 'logRotation:linux64:release:executable'.
+buildDependentsLogRotationMacosDebugExecutable - Build dependents of executable 'logRotation:macos:debug:executable'.
+buildDependentsLogRotationMacosReleaseExecutable - Build dependents of executable 'logRotation:macos:release:executable'.
+buildDependentsLogRotationWin32DebugExecutable - Build dependents of executable 'logRotation:win32:debug:executable'.
+buildDependentsLogRotationWin32ReleaseExecutable - Build dependents of executable 'logRotation:win32:release:executable'.
+buildDependentsLogRotationWin64DebugExecutable - Build dependents of executable 'logRotation:win64:debug:executable'.
+buildDependentsLogRotationWin64ReleaseExecutable - Build dependents of executable 'logRotation:win64:release:executable'.
+buildDependentsMail - Build dependents of native executable 'Mail'.
+buildDependentsMailLinux32DebugExecutable - Build dependents of executable 'mail:linux32:debug:executable'.
+buildDependentsMailLinux32ReleaseExecutable - Build dependents of executable 'mail:linux32:release:executable'.
+buildDependentsMailLinux64DebugExecutable - Build dependents of executable 'mail:linux64:debug:executable'.
+buildDependentsMailLinux64ReleaseExecutable - Build dependents of executable 'mail:linux64:release:executable'.
+buildDependentsMailMacosDebugExecutable - Build dependents of executable 'mail:macos:debug:executable'.
+buildDependentsMailMacosReleaseExecutable - Build dependents of executable 'mail:macos:release:executable'.
+buildDependentsMailWin32DebugExecutable - Build dependents of executable 'mail:win32:debug:executable'.
+buildDependentsMailWin32ReleaseExecutable - Build dependents of executable 'mail:win32:release:executable'.
+buildDependentsMailWin64DebugExecutable - Build dependents of executable 'mail:win64:debug:executable'.
+buildDependentsMailWin64ReleaseExecutable - Build dependents of executable 'mail:win64:release:executable'.
+buildDependentsMd5 - Build dependents of native executable 'md5'.
+buildDependentsMd5Linux32DebugExecutable - Build dependents of executable 'md5:linux32:debug:executable'.
+buildDependentsMd5Linux32ReleaseExecutable - Build dependents of executable 'md5:linux32:release:executable'.
+buildDependentsMd5Linux64DebugExecutable - Build dependents of executable 'md5:linux64:debug:executable'.
+buildDependentsMd5Linux64ReleaseExecutable - Build dependents of executable 'md5:linux64:release:executable'.
+buildDependentsMd5MacosDebugExecutable - Build dependents of executable 'md5:macos:debug:executable'.
+buildDependentsMd5MacosReleaseExecutable - Build dependents of executable 'md5:macos:release:executable'.
+buildDependentsMd5Win32DebugExecutable - Build dependents of executable 'md5:win32:debug:executable'.
+buildDependentsMd5Win32ReleaseExecutable - Build dependents of executable 'md5:win32:release:executable'.
+buildDependentsMd5Win64DebugExecutable - Build dependents of executable 'md5:win64:debug:executable'.
+buildDependentsMd5Win64ReleaseExecutable - Build dependents of executable 'md5:win64:release:executable'.
+buildDependentsMongoDB - Build dependents of native library 'MongoDB'.
+buildDependentsMongoDBLinux32DebugSharedLibrary - Build dependents of shared library 'mongoDB:linux32:debug:sharedLibrary'.
+buildDependentsMongoDBLinux32DebugStaticLibrary - Build dependents of static library 'mongoDB:linux32:debug:staticLibrary'.
+buildDependentsMongoDBLinux32ReleaseSharedLibrary - Build dependents of shared library 'mongoDB:linux32:release:sharedLibrary'.
+buildDependentsMongoDBLinux32ReleaseStaticLibrary - Build dependents of static library 'mongoDB:linux32:release:staticLibrary'.
+buildDependentsMongoDBLinux64DebugSharedLibrary - Build dependents of shared library 'mongoDB:linux64:debug:sharedLibrary'.
+buildDependentsMongoDBLinux64DebugStaticLibrary - Build dependents of static library 'mongoDB:linux64:debug:staticLibrary'.
+buildDependentsMongoDBLinux64ReleaseSharedLibrary - Build dependents of shared library 'mongoDB:linux64:release:sharedLibrary'.
+buildDependentsMongoDBLinux64ReleaseStaticLibrary - Build dependents of static library 'mongoDB:linux64:release:staticLibrary'.
+buildDependentsMongoDBMacosDebugSharedLibrary - Build dependents of shared library 'mongoDB:macos:debug:sharedLibrary'.
+buildDependentsMongoDBMacosDebugStaticLibrary - Build dependents of static library 'mongoDB:macos:debug:staticLibrary'.
+buildDependentsMongoDBMacosReleaseSharedLibrary - Build dependents of shared library 'mongoDB:macos:release:sharedLibrary'.
+buildDependentsMongoDBMacosReleaseStaticLibrary - Build dependents of static library 'mongoDB:macos:release:staticLibrary'.
+buildDependentsMongoDBTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'mongoDBTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsMongoDBTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'mongoDBTestSuite:linux32:release:cppUnitExe'.
+buildDependentsMongoDBTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'mongoDBTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsMongoDBTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'mongoDBTestSuite:linux64:release:cppUnitExe'.
+buildDependentsMongoDBTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'mongoDBTestSuite:macos:debug:cppUnitExe'.
+buildDependentsMongoDBTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'mongoDBTestSuite:macos:release:cppUnitExe'.
+buildDependentsMongoDBTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'mongoDBTestSuite:win32:debug:cppUnitExe'.
+buildDependentsMongoDBTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'mongoDBTestSuite:win32:release:cppUnitExe'.
+buildDependentsMongoDBTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'mongoDBTestSuite:win64:debug:cppUnitExe'.
+buildDependentsMongoDBTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'mongoDBTestSuite:win64:release:cppUnitExe'.
+buildDependentsMongoDBWin32DebugSemiStaticLibrary - Build dependents of semi static library 'mongoDB:win32:debug:semiStaticLibrary'.
+buildDependentsMongoDBWin32DebugSharedLibrary - Build dependents of shared library 'mongoDB:win32:debug:sharedLibrary'.
+buildDependentsMongoDBWin32DebugStaticLibrary - Build dependents of static library 'mongoDB:win32:debug:staticLibrary'.
+buildDependentsMongoDBWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'mongoDB:win32:release:semiStaticLibrary'.
+buildDependentsMongoDBWin32ReleaseSharedLibrary - Build dependents of shared library 'mongoDB:win32:release:sharedLibrary'.
+buildDependentsMongoDBWin32ReleaseStaticLibrary - Build dependents of static library 'mongoDB:win32:release:staticLibrary'.
+buildDependentsMongoDBWin64DebugSemiStaticLibrary - Build dependents of semi static library 'mongoDB:win64:debug:semiStaticLibrary'.
+buildDependentsMongoDBWin64DebugSharedLibrary - Build dependents of shared library 'mongoDB:win64:debug:sharedLibrary'.
+buildDependentsMongoDBWin64DebugStaticLibrary - Build dependents of static library 'mongoDB:win64:debug:staticLibrary'.
+buildDependentsMongoDBWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'mongoDB:win64:release:semiStaticLibrary'.
+buildDependentsMongoDBWin64ReleaseSharedLibrary - Build dependents of shared library 'mongoDB:win64:release:sharedLibrary'.
+buildDependentsMongoDBWin64ReleaseStaticLibrary - Build dependents of static library 'mongoDB:win64:release:staticLibrary'.
+buildDependentsMySQLTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'mySQLTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsMySQLTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'mySQLTestSuite:linux32:release:cppUnitExe'.
+buildDependentsMySQLTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'mySQLTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsMySQLTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'mySQLTestSuite:linux64:release:cppUnitExe'.
+buildDependentsMySQLTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'mySQLTestSuite:macos:debug:cppUnitExe'.
+buildDependentsMySQLTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'mySQLTestSuite:macos:release:cppUnitExe'.
+buildDependentsMySQLTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'mySQLTestSuite:win32:debug:cppUnitExe'.
+buildDependentsMySQLTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'mySQLTestSuite:win32:release:cppUnitExe'.
+buildDependentsMySQLTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'mySQLTestSuite:win64:debug:cppUnitExe'.
+buildDependentsMySQLTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'mySQLTestSuite:win64:release:cppUnitExe'.
+buildDependentsNet - Build dependents of native library 'Net'.
+buildDependentsNetLinux32DebugSharedLibrary - Build dependents of shared library 'net:linux32:debug:sharedLibrary'.
+buildDependentsNetLinux32DebugStaticLibrary - Build dependents of static library 'net:linux32:debug:staticLibrary'.
+buildDependentsNetLinux32ReleaseSharedLibrary - Build dependents of shared library 'net:linux32:release:sharedLibrary'.
+buildDependentsNetLinux32ReleaseStaticLibrary - Build dependents of static library 'net:linux32:release:staticLibrary'.
+buildDependentsNetLinux64DebugSharedLibrary - Build dependents of shared library 'net:linux64:debug:sharedLibrary'.
+buildDependentsNetLinux64DebugStaticLibrary - Build dependents of static library 'net:linux64:debug:staticLibrary'.
+buildDependentsNetLinux64ReleaseSharedLibrary - Build dependents of shared library 'net:linux64:release:sharedLibrary'.
+buildDependentsNetLinux64ReleaseStaticLibrary - Build dependents of static library 'net:linux64:release:staticLibrary'.
+buildDependentsNetMacosDebugSharedLibrary - Build dependents of shared library 'net:macos:debug:sharedLibrary'.
+buildDependentsNetMacosDebugStaticLibrary - Build dependents of static library 'net:macos:debug:staticLibrary'.
+buildDependentsNetMacosReleaseSharedLibrary - Build dependents of shared library 'net:macos:release:sharedLibrary'.
+buildDependentsNetMacosReleaseStaticLibrary - Build dependents of static library 'net:macos:release:staticLibrary'.
+buildDependentsNetSSL - Build dependents of native library 'NetSSL'.
+buildDependentsNetSSLLinux32DebugSharedLibrary - Build dependents of shared library 'netSSL:linux32:debug:sharedLibrary'.
+buildDependentsNetSSLLinux32DebugStaticLibrary - Build dependents of static library 'netSSL:linux32:debug:staticLibrary'.
+buildDependentsNetSSLLinux32ReleaseSharedLibrary - Build dependents of shared library 'netSSL:linux32:release:sharedLibrary'.
+buildDependentsNetSSLLinux32ReleaseStaticLibrary - Build dependents of static library 'netSSL:linux32:release:staticLibrary'.
+buildDependentsNetSSLLinux64DebugSharedLibrary - Build dependents of shared library 'netSSL:linux64:debug:sharedLibrary'.
+buildDependentsNetSSLLinux64DebugStaticLibrary - Build dependents of static library 'netSSL:linux64:debug:staticLibrary'.
+buildDependentsNetSSLLinux64ReleaseSharedLibrary - Build dependents of shared library 'netSSL:linux64:release:sharedLibrary'.
+buildDependentsNetSSLLinux64ReleaseStaticLibrary - Build dependents of static library 'netSSL:linux64:release:staticLibrary'.
+buildDependentsNetSSLMacosDebugSharedLibrary - Build dependents of shared library 'netSSL:macos:debug:sharedLibrary'.
+buildDependentsNetSSLMacosDebugStaticLibrary - Build dependents of static library 'netSSL:macos:debug:staticLibrary'.
+buildDependentsNetSSLMacosReleaseSharedLibrary - Build dependents of shared library 'netSSL:macos:release:sharedLibrary'.
+buildDependentsNetSSLMacosReleaseStaticLibrary - Build dependents of static library 'netSSL:macos:release:staticLibrary'.
+buildDependentsNetSSLTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'netSSLTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsNetSSLTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'netSSLTestSuite:linux32:release:cppUnitExe'.
+buildDependentsNetSSLTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'netSSLTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsNetSSLTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'netSSLTestSuite:linux64:release:cppUnitExe'.
+buildDependentsNetSSLTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'netSSLTestSuite:macos:debug:cppUnitExe'.
+buildDependentsNetSSLTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'netSSLTestSuite:macos:release:cppUnitExe'.
+buildDependentsNetSSLTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'netSSLTestSuite:win32:debug:cppUnitExe'.
+buildDependentsNetSSLTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'netSSLTestSuite:win32:release:cppUnitExe'.
+buildDependentsNetSSLTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'netSSLTestSuite:win64:debug:cppUnitExe'.
+buildDependentsNetSSLTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'netSSLTestSuite:win64:release:cppUnitExe'.
+buildDependentsNetSSLWin - Build dependents of native library 'NetSSLWin'.
+buildDependentsNetSSLWin32DebugSemiStaticLibrary - Build dependents of semi static library 'netSSL:win32:debug:semiStaticLibrary'.
+buildDependentsNetSSLWin32DebugSharedLibrary - Build dependents of shared library 'netSSL:win32:debug:sharedLibrary'.
+buildDependentsNetSSLWin32DebugStaticLibrary - Build dependents of static library 'netSSL:win32:debug:staticLibrary'.
+buildDependentsNetSSLWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'netSSL:win32:release:semiStaticLibrary'.
+buildDependentsNetSSLWin32ReleaseSharedLibrary - Build dependents of shared library 'netSSL:win32:release:sharedLibrary'.
+buildDependentsNetSSLWin32ReleaseStaticLibrary - Build dependents of static library 'netSSL:win32:release:staticLibrary'.
+buildDependentsNetSSLWin64DebugSemiStaticLibrary - Build dependents of semi static library 'netSSL:win64:debug:semiStaticLibrary'.
+buildDependentsNetSSLWin64DebugSharedLibrary - Build dependents of shared library 'netSSL:win64:debug:sharedLibrary'.
+buildDependentsNetSSLWin64DebugStaticLibrary - Build dependents of static library 'netSSL:win64:debug:staticLibrary'.
+buildDependentsNetSSLWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'netSSL:win64:release:semiStaticLibrary'.
+buildDependentsNetSSLWin64ReleaseSharedLibrary - Build dependents of shared library 'netSSL:win64:release:sharedLibrary'.
+buildDependentsNetSSLWin64ReleaseStaticLibrary - Build dependents of static library 'netSSL:win64:release:staticLibrary'.
+buildDependentsNetSSLWinLinux32DebugSharedLibrary - Build dependents of shared library 'netSSLWin:linux32:debug:sharedLibrary'.
+buildDependentsNetSSLWinLinux32DebugStaticLibrary - Build dependents of static library 'netSSLWin:linux32:debug:staticLibrary'.
+buildDependentsNetSSLWinLinux32ReleaseSharedLibrary - Build dependents of shared library 'netSSLWin:linux32:release:sharedLibrary'.
+buildDependentsNetSSLWinLinux32ReleaseStaticLibrary - Build dependents of static library 'netSSLWin:linux32:release:staticLibrary'.
+buildDependentsNetSSLWinLinux64DebugSharedLibrary - Build dependents of shared library 'netSSLWin:linux64:debug:sharedLibrary'.
+buildDependentsNetSSLWinLinux64DebugStaticLibrary - Build dependents of static library 'netSSLWin:linux64:debug:staticLibrary'.
+buildDependentsNetSSLWinLinux64ReleaseSharedLibrary - Build dependents of shared library 'netSSLWin:linux64:release:sharedLibrary'.
+buildDependentsNetSSLWinLinux64ReleaseStaticLibrary - Build dependents of static library 'netSSLWin:linux64:release:staticLibrary'.
+buildDependentsNetSSLWinMacosDebugSharedLibrary - Build dependents of shared library 'netSSLWin:macos:debug:sharedLibrary'.
+buildDependentsNetSSLWinMacosDebugStaticLibrary - Build dependents of static library 'netSSLWin:macos:debug:staticLibrary'.
+buildDependentsNetSSLWinMacosReleaseSharedLibrary - Build dependents of shared library 'netSSLWin:macos:release:sharedLibrary'.
+buildDependentsNetSSLWinMacosReleaseStaticLibrary - Build dependents of static library 'netSSLWin:macos:release:staticLibrary'.
+buildDependentsNetSSLWinWin32DebugSemiStaticLibrary - Build dependents of semi static library 'netSSLWin:win32:debug:semiStaticLibrary'.
+buildDependentsNetSSLWinWin32DebugSharedLibrary - Build dependents of shared library 'netSSLWin:win32:debug:sharedLibrary'.
+buildDependentsNetSSLWinWin32DebugStaticLibrary - Build dependents of static library 'netSSLWin:win32:debug:staticLibrary'.
+buildDependentsNetSSLWinWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'netSSLWin:win32:release:semiStaticLibrary'.
+buildDependentsNetSSLWinWin32ReleaseSharedLibrary - Build dependents of shared library 'netSSLWin:win32:release:sharedLibrary'.
+buildDependentsNetSSLWinWin32ReleaseStaticLibrary - Build dependents of static library 'netSSLWin:win32:release:staticLibrary'.
+buildDependentsNetSSLWinWin64DebugSemiStaticLibrary - Build dependents of semi static library 'netSSLWin:win64:debug:semiStaticLibrary'.
+buildDependentsNetSSLWinWin64DebugSharedLibrary - Build dependents of shared library 'netSSLWin:win64:debug:sharedLibrary'.
+buildDependentsNetSSLWinWin64DebugStaticLibrary - Build dependents of static library 'netSSLWin:win64:debug:staticLibrary'.
+buildDependentsNetSSLWinWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'netSSLWin:win64:release:semiStaticLibrary'.
+buildDependentsNetSSLWinWin64ReleaseSharedLibrary - Build dependents of shared library 'netSSLWin:win64:release:sharedLibrary'.
+buildDependentsNetSSLWinWin64ReleaseStaticLibrary - Build dependents of static library 'netSSLWin:win64:release:staticLibrary'.
+buildDependentsNetTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'netTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsNetTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'netTestSuite:linux32:release:cppUnitExe'.
+buildDependentsNetTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'netTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsNetTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'netTestSuite:linux64:release:cppUnitExe'.
+buildDependentsNetTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'netTestSuite:macos:debug:cppUnitExe'.
+buildDependentsNetTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'netTestSuite:macos:release:cppUnitExe'.
+buildDependentsNetTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'netTestSuite:win32:debug:cppUnitExe'.
+buildDependentsNetTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'netTestSuite:win32:release:cppUnitExe'.
+buildDependentsNetTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'netTestSuite:win64:debug:cppUnitExe'.
+buildDependentsNetTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'netTestSuite:win64:release:cppUnitExe'.
+buildDependentsNetWin32DebugSemiStaticLibrary - Build dependents of semi static library 'net:win32:debug:semiStaticLibrary'.
+buildDependentsNetWin32DebugSharedLibrary - Build dependents of shared library 'net:win32:debug:sharedLibrary'.
+buildDependentsNetWin32DebugStaticLibrary - Build dependents of static library 'net:win32:debug:staticLibrary'.
+buildDependentsNetWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'net:win32:release:semiStaticLibrary'.
+buildDependentsNetWin32ReleaseSharedLibrary - Build dependents of shared library 'net:win32:release:sharedLibrary'.
+buildDependentsNetWin32ReleaseStaticLibrary - Build dependents of static library 'net:win32:release:staticLibrary'.
+buildDependentsNetWin64DebugSemiStaticLibrary - Build dependents of semi static library 'net:win64:debug:semiStaticLibrary'.
+buildDependentsNetWin64DebugSharedLibrary - Build dependents of shared library 'net:win64:debug:sharedLibrary'.
+buildDependentsNetWin64DebugStaticLibrary - Build dependents of static library 'net:win64:debug:staticLibrary'.
+buildDependentsNetWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'net:win64:release:semiStaticLibrary'.
+buildDependentsNetWin64ReleaseSharedLibrary - Build dependents of shared library 'net:win64:release:sharedLibrary'.
+buildDependentsNetWin64ReleaseStaticLibrary - Build dependents of static library 'net:win64:release:staticLibrary'.
+buildDependentsNotificationQueue - Build dependents of native executable 'NotificationQueue'.
+buildDependentsNotificationQueueLinux32DebugExecutable - Build dependents of executable 'notificationQueue:linux32:debug:executable'.
+buildDependentsNotificationQueueLinux32ReleaseExecutable - Build dependents of executable 'notificationQueue:linux32:release:executable'.
+buildDependentsNotificationQueueLinux64DebugExecutable - Build dependents of executable 'notificationQueue:linux64:debug:executable'.
+buildDependentsNotificationQueueLinux64ReleaseExecutable - Build dependents of executable 'notificationQueue:linux64:release:executable'.
+buildDependentsNotificationQueueMacosDebugExecutable - Build dependents of executable 'notificationQueue:macos:debug:executable'.
+buildDependentsNotificationQueueMacosReleaseExecutable - Build dependents of executable 'notificationQueue:macos:release:executable'.
+buildDependentsNotificationQueueWin32DebugExecutable - Build dependents of executable 'notificationQueue:win32:debug:executable'.
+buildDependentsNotificationQueueWin32ReleaseExecutable - Build dependents of executable 'notificationQueue:win32:release:executable'.
+buildDependentsNotificationQueueWin64DebugExecutable - Build dependents of executable 'notificationQueue:win64:debug:executable'.
+buildDependentsNotificationQueueWin64ReleaseExecutable - Build dependents of executable 'notificationQueue:win64:release:executable'.
+buildDependentsODBCTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'oDBCTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsODBCTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'oDBCTestSuite:linux32:release:cppUnitExe'.
+buildDependentsODBCTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'oDBCTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsODBCTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'oDBCTestSuite:linux64:release:cppUnitExe'.
+buildDependentsODBCTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'oDBCTestSuite:macos:debug:cppUnitExe'.
+buildDependentsODBCTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'oDBCTestSuite:macos:release:cppUnitExe'.
+buildDependentsODBCTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'oDBCTestSuite:win32:debug:cppUnitExe'.
+buildDependentsODBCTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'oDBCTestSuite:win32:release:cppUnitExe'.
+buildDependentsODBCTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'oDBCTestSuite:win64:debug:cppUnitExe'.
+buildDependentsODBCTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'oDBCTestSuite:win64:release:cppUnitExe'.
+buildDependentsPDF - Build dependents of native library 'PDF'.
+buildDependentsPDFLinux32DebugSharedLibrary - Build dependents of shared library 'pDF:linux32:debug:sharedLibrary'.
+buildDependentsPDFLinux32DebugStaticLibrary - Build dependents of static library 'pDF:linux32:debug:staticLibrary'.
+buildDependentsPDFLinux32ReleaseSharedLibrary - Build dependents of shared library 'pDF:linux32:release:sharedLibrary'.
+buildDependentsPDFLinux32ReleaseStaticLibrary - Build dependents of static library 'pDF:linux32:release:staticLibrary'.
+buildDependentsPDFLinux64DebugSharedLibrary - Build dependents of shared library 'pDF:linux64:debug:sharedLibrary'.
+buildDependentsPDFLinux64DebugStaticLibrary - Build dependents of static library 'pDF:linux64:debug:staticLibrary'.
+buildDependentsPDFLinux64ReleaseSharedLibrary - Build dependents of shared library 'pDF:linux64:release:sharedLibrary'.
+buildDependentsPDFLinux64ReleaseStaticLibrary - Build dependents of static library 'pDF:linux64:release:staticLibrary'.
+buildDependentsPDFMacosDebugSharedLibrary - Build dependents of shared library 'pDF:macos:debug:sharedLibrary'.
+buildDependentsPDFMacosDebugStaticLibrary - Build dependents of static library 'pDF:macos:debug:staticLibrary'.
+buildDependentsPDFMacosReleaseSharedLibrary - Build dependents of shared library 'pDF:macos:release:sharedLibrary'.
+buildDependentsPDFMacosReleaseStaticLibrary - Build dependents of static library 'pDF:macos:release:staticLibrary'.
+buildDependentsPDFWin32DebugSemiStaticLibrary - Build dependents of semi static library 'pDF:win32:debug:semiStaticLibrary'.
+buildDependentsPDFWin32DebugSharedLibrary - Build dependents of shared library 'pDF:win32:debug:sharedLibrary'.
+buildDependentsPDFWin32DebugStaticLibrary - Build dependents of static library 'pDF:win32:debug:staticLibrary'.
+buildDependentsPDFWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'pDF:win32:release:semiStaticLibrary'.
+buildDependentsPDFWin32ReleaseSharedLibrary - Build dependents of shared library 'pDF:win32:release:sharedLibrary'.
+buildDependentsPDFWin32ReleaseStaticLibrary - Build dependents of static library 'pDF:win32:release:staticLibrary'.
+buildDependentsPDFWin64DebugSemiStaticLibrary - Build dependents of semi static library 'pDF:win64:debug:semiStaticLibrary'.
+buildDependentsPDFWin64DebugSharedLibrary - Build dependents of shared library 'pDF:win64:debug:sharedLibrary'.
+buildDependentsPDFWin64DebugStaticLibrary - Build dependents of static library 'pDF:win64:debug:staticLibrary'.
+buildDependentsPDFWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'pDF:win64:release:semiStaticLibrary'.
+buildDependentsPDFWin64ReleaseSharedLibrary - Build dependents of shared library 'pDF:win64:release:sharedLibrary'.
+buildDependentsPDFWin64ReleaseStaticLibrary - Build dependents of static library 'pDF:win64:release:staticLibrary'.
+buildDependentsPing - Build dependents of native executable 'Ping'.
+buildDependentsPingLinux32DebugExecutable - Build dependents of executable 'ping:linux32:debug:executable'.
+buildDependentsPingLinux32ReleaseExecutable - Build dependents of executable 'ping:linux32:release:executable'.
+buildDependentsPingLinux64DebugExecutable - Build dependents of executable 'ping:linux64:debug:executable'.
+buildDependentsPingLinux64ReleaseExecutable - Build dependents of executable 'ping:linux64:release:executable'.
+buildDependentsPingMacosDebugExecutable - Build dependents of executable 'ping:macos:debug:executable'.
+buildDependentsPingMacosReleaseExecutable - Build dependents of executable 'ping:macos:release:executable'.
+buildDependentsPingWin32DebugExecutable - Build dependents of executable 'ping:win32:debug:executable'.
+buildDependentsPingWin32ReleaseExecutable - Build dependents of executable 'ping:win32:release:executable'.
+buildDependentsPingWin64DebugExecutable - Build dependents of executable 'ping:win64:debug:executable'.
+buildDependentsPingWin64ReleaseExecutable - Build dependents of executable 'ping:win64:release:executable'.
+buildDependentsPkill - Build dependents of native executable 'pkill'.
+buildDependentsPkillLinux32DebugExecutable - Build dependents of executable 'pkill:linux32:debug:executable'.
+buildDependentsPkillLinux32ReleaseExecutable - Build dependents of executable 'pkill:linux32:release:executable'.
+buildDependentsPkillLinux64DebugExecutable - Build dependents of executable 'pkill:linux64:debug:executable'.
+buildDependentsPkillLinux64ReleaseExecutable - Build dependents of executable 'pkill:linux64:release:executable'.
+buildDependentsPkillMacosDebugExecutable - Build dependents of executable 'pkill:macos:debug:executable'.
+buildDependentsPkillMacosReleaseExecutable - Build dependents of executable 'pkill:macos:release:executable'.
+buildDependentsPkillWin32DebugExecutable - Build dependents of executable 'pkill:win32:debug:executable'.
+buildDependentsPkillWin32ReleaseExecutable - Build dependents of executable 'pkill:win32:release:executable'.
+buildDependentsPkillWin64DebugExecutable - Build dependents of executable 'pkill:win64:debug:executable'.
+buildDependentsPkillWin64ReleaseExecutable - Build dependents of executable 'pkill:win64:release:executable'.
+buildDependentsPostgreSQLTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'postgreSQLTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsPostgreSQLTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'postgreSQLTestSuite:linux32:release:cppUnitExe'.
+buildDependentsPostgreSQLTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'postgreSQLTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsPostgreSQLTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'postgreSQLTestSuite:linux64:release:cppUnitExe'.
+buildDependentsPostgreSQLTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'postgreSQLTestSuite:macos:debug:cppUnitExe'.
+buildDependentsPostgreSQLTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'postgreSQLTestSuite:macos:release:cppUnitExe'.
+buildDependentsPostgreSQLTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'postgreSQLTestSuite:win32:debug:cppUnitExe'.
+buildDependentsPostgreSQLTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'postgreSQLTestSuite:win32:release:cppUnitExe'.
+buildDependentsPostgreSQLTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'postgreSQLTestSuite:win64:debug:cppUnitExe'.
+buildDependentsPostgreSQLTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'postgreSQLTestSuite:win64:release:cppUnitExe'.
+buildDependentsPrettyPrint - Build dependents of native executable 'PrettyPrint'.
+buildDependentsPrettyPrintLinux32DebugExecutable - Build dependents of executable 'prettyPrint:linux32:debug:executable'.
+buildDependentsPrettyPrintLinux32ReleaseExecutable - Build dependents of executable 'prettyPrint:linux32:release:executable'.
+buildDependentsPrettyPrintLinux64DebugExecutable - Build dependents of executable 'prettyPrint:linux64:debug:executable'.
+buildDependentsPrettyPrintLinux64ReleaseExecutable - Build dependents of executable 'prettyPrint:linux64:release:executable'.
+buildDependentsPrettyPrintMacosDebugExecutable - Build dependents of executable 'prettyPrint:macos:debug:executable'.
+buildDependentsPrettyPrintMacosReleaseExecutable - Build dependents of executable 'prettyPrint:macos:release:executable'.
+buildDependentsPrettyPrintWin32DebugExecutable - Build dependents of executable 'prettyPrint:win32:debug:executable'.
+buildDependentsPrettyPrintWin32ReleaseExecutable - Build dependents of executable 'prettyPrint:win32:release:executable'.
+buildDependentsPrettyPrintWin64DebugExecutable - Build dependents of executable 'prettyPrint:win64:debug:executable'.
+buildDependentsPrettyPrintWin64ReleaseExecutable - Build dependents of executable 'prettyPrint:win64:release:executable'.
+buildDependentsRecordSet - Build dependents of native executable 'RecordSet'.
+buildDependentsRecordSetLinux32DebugExecutable - Build dependents of executable 'recordSet:linux32:debug:executable'.
+buildDependentsRecordSetLinux32ReleaseExecutable - Build dependents of executable 'recordSet:linux32:release:executable'.
+buildDependentsRecordSetLinux64DebugExecutable - Build dependents of executable 'recordSet:linux64:debug:executable'.
+buildDependentsRecordSetLinux64ReleaseExecutable - Build dependents of executable 'recordSet:linux64:release:executable'.
+buildDependentsRecordSetMacosDebugExecutable - Build dependents of executable 'recordSet:macos:debug:executable'.
+buildDependentsRecordSetMacosReleaseExecutable - Build dependents of executable 'recordSet:macos:release:executable'.
+buildDependentsRecordSetWin32DebugExecutable - Build dependents of executable 'recordSet:win32:debug:executable'.
+buildDependentsRecordSetWin32ReleaseExecutable - Build dependents of executable 'recordSet:win32:release:executable'.
+buildDependentsRecordSetWin64DebugExecutable - Build dependents of executable 'recordSet:win64:debug:executable'.
+buildDependentsRecordSetWin64ReleaseExecutable - Build dependents of executable 'recordSet:win64:release:executable'.
+buildDependentsRedis - Build dependents of native library 'Redis'.
+buildDependentsRedisLinux32DebugSharedLibrary - Build dependents of shared library 'redis:linux32:debug:sharedLibrary'.
+buildDependentsRedisLinux32DebugStaticLibrary - Build dependents of static library 'redis:linux32:debug:staticLibrary'.
+buildDependentsRedisLinux32ReleaseSharedLibrary - Build dependents of shared library 'redis:linux32:release:sharedLibrary'.
+buildDependentsRedisLinux32ReleaseStaticLibrary - Build dependents of static library 'redis:linux32:release:staticLibrary'.
+buildDependentsRedisLinux64DebugSharedLibrary - Build dependents of shared library 'redis:linux64:debug:sharedLibrary'.
+buildDependentsRedisLinux64DebugStaticLibrary - Build dependents of static library 'redis:linux64:debug:staticLibrary'.
+buildDependentsRedisLinux64ReleaseSharedLibrary - Build dependents of shared library 'redis:linux64:release:sharedLibrary'.
+buildDependentsRedisLinux64ReleaseStaticLibrary - Build dependents of static library 'redis:linux64:release:staticLibrary'.
+buildDependentsRedisMacosDebugSharedLibrary - Build dependents of shared library 'redis:macos:debug:sharedLibrary'.
+buildDependentsRedisMacosDebugStaticLibrary - Build dependents of static library 'redis:macos:debug:staticLibrary'.
+buildDependentsRedisMacosReleaseSharedLibrary - Build dependents of shared library 'redis:macos:release:sharedLibrary'.
+buildDependentsRedisMacosReleaseStaticLibrary - Build dependents of static library 'redis:macos:release:staticLibrary'.
+buildDependentsRedisTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'redisTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsRedisTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'redisTestSuite:linux32:release:cppUnitExe'.
+buildDependentsRedisTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'redisTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsRedisTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'redisTestSuite:linux64:release:cppUnitExe'.
+buildDependentsRedisTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'redisTestSuite:macos:debug:cppUnitExe'.
+buildDependentsRedisTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'redisTestSuite:macos:release:cppUnitExe'.
+buildDependentsRedisTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'redisTestSuite:win32:debug:cppUnitExe'.
+buildDependentsRedisTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'redisTestSuite:win32:release:cppUnitExe'.
+buildDependentsRedisTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'redisTestSuite:win64:debug:cppUnitExe'.
+buildDependentsRedisTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'redisTestSuite:win64:release:cppUnitExe'.
+buildDependentsRedisWin32DebugSemiStaticLibrary - Build dependents of semi static library 'redis:win32:debug:semiStaticLibrary'.
+buildDependentsRedisWin32DebugSharedLibrary - Build dependents of shared library 'redis:win32:debug:sharedLibrary'.
+buildDependentsRedisWin32DebugStaticLibrary - Build dependents of static library 'redis:win32:debug:staticLibrary'.
+buildDependentsRedisWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'redis:win32:release:semiStaticLibrary'.
+buildDependentsRedisWin32ReleaseSharedLibrary - Build dependents of shared library 'redis:win32:release:sharedLibrary'.
+buildDependentsRedisWin32ReleaseStaticLibrary - Build dependents of static library 'redis:win32:release:staticLibrary'.
+buildDependentsRedisWin64DebugSemiStaticLibrary - Build dependents of semi static library 'redis:win64:debug:semiStaticLibrary'.
+buildDependentsRedisWin64DebugSharedLibrary - Build dependents of shared library 'redis:win64:debug:sharedLibrary'.
+buildDependentsRedisWin64DebugStaticLibrary - Build dependents of static library 'redis:win64:debug:staticLibrary'.
+buildDependentsRedisWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'redis:win64:release:semiStaticLibrary'.
+buildDependentsRedisWin64ReleaseSharedLibrary - Build dependents of shared library 'redis:win64:release:sharedLibrary'.
+buildDependentsRedisWin64ReleaseStaticLibrary - Build dependents of static library 'redis:win64:release:staticLibrary'.
+buildDependentsRowFormatter - Build dependents of native executable 'RowFormatter'.
+buildDependentsRowFormatterLinux32DebugExecutable - Build dependents of executable 'rowFormatter:linux32:debug:executable'.
+buildDependentsRowFormatterLinux32ReleaseExecutable - Build dependents of executable 'rowFormatter:linux32:release:executable'.
+buildDependentsRowFormatterLinux64DebugExecutable - Build dependents of executable 'rowFormatter:linux64:debug:executable'.
+buildDependentsRowFormatterLinux64ReleaseExecutable - Build dependents of executable 'rowFormatter:linux64:release:executable'.
+buildDependentsRowFormatterMacosDebugExecutable - Build dependents of executable 'rowFormatter:macos:debug:executable'.
+buildDependentsRowFormatterMacosReleaseExecutable - Build dependents of executable 'rowFormatter:macos:release:executable'.
+buildDependentsRowFormatterWin32DebugExecutable - Build dependents of executable 'rowFormatter:win32:debug:executable'.
+buildDependentsRowFormatterWin32ReleaseExecutable - Build dependents of executable 'rowFormatter:win32:release:executable'.
+buildDependentsRowFormatterWin64DebugExecutable - Build dependents of executable 'rowFormatter:win64:debug:executable'.
+buildDependentsRowFormatterWin64ReleaseExecutable - Build dependents of executable 'rowFormatter:win64:release:executable'.
+buildDependentsSampleApp - Build dependents of native executable 'SampleApp'.
+buildDependentsSampleAppLinux32DebugExecutable - Build dependents of executable 'sampleApp:linux32:debug:executable'.
+buildDependentsSampleAppLinux32ReleaseExecutable - Build dependents of executable 'sampleApp:linux32:release:executable'.
+buildDependentsSampleAppLinux64DebugExecutable - Build dependents of executable 'sampleApp:linux64:debug:executable'.
+buildDependentsSampleAppLinux64ReleaseExecutable - Build dependents of executable 'sampleApp:linux64:release:executable'.
+buildDependentsSampleAppMacosDebugExecutable - Build dependents of executable 'sampleApp:macos:debug:executable'.
+buildDependentsSampleAppMacosReleaseExecutable - Build dependents of executable 'sampleApp:macos:release:executable'.
+buildDependentsSampleAppWin32DebugExecutable - Build dependents of executable 'sampleApp:win32:debug:executable'.
+buildDependentsSampleAppWin32ReleaseExecutable - Build dependents of executable 'sampleApp:win32:release:executable'.
+buildDependentsSampleAppWin64DebugExecutable - Build dependents of executable 'sampleApp:win64:debug:executable'.
+buildDependentsSampleAppWin64ReleaseExecutable - Build dependents of executable 'sampleApp:win64:release:executable'.
+buildDependentsSampleServer - Build dependents of native executable 'SampleServer'.
+buildDependentsSampleServerLinux32DebugExecutable - Build dependents of executable 'sampleServer:linux32:debug:executable'.
+buildDependentsSampleServerLinux32ReleaseExecutable - Build dependents of executable 'sampleServer:linux32:release:executable'.
+buildDependentsSampleServerLinux64DebugExecutable - Build dependents of executable 'sampleServer:linux64:debug:executable'.
+buildDependentsSampleServerLinux64ReleaseExecutable - Build dependents of executable 'sampleServer:linux64:release:executable'.
+buildDependentsSampleServerMacosDebugExecutable - Build dependents of executable 'sampleServer:macos:debug:executable'.
+buildDependentsSampleServerMacosReleaseExecutable - Build dependents of executable 'sampleServer:macos:release:executable'.
+buildDependentsSampleServerWin32DebugExecutable - Build dependents of executable 'sampleServer:win32:debug:executable'.
+buildDependentsSampleServerWin32ReleaseExecutable - Build dependents of executable 'sampleServer:win32:release:executable'.
+buildDependentsSampleServerWin64DebugExecutable - Build dependents of executable 'sampleServer:win64:debug:executable'.
+buildDependentsSampleServerWin64ReleaseExecutable - Build dependents of executable 'sampleServer:win64:release:executable'.
+buildDependentsSAXParser - Build dependents of native executable 'SAXParser'.
+buildDependentsSAXParserLinux32DebugExecutable - Build dependents of executable 'sAXParser:linux32:debug:executable'.
+buildDependentsSAXParserLinux32ReleaseExecutable - Build dependents of executable 'sAXParser:linux32:release:executable'.
+buildDependentsSAXParserLinux64DebugExecutable - Build dependents of executable 'sAXParser:linux64:debug:executable'.
+buildDependentsSAXParserLinux64ReleaseExecutable - Build dependents of executable 'sAXParser:linux64:release:executable'.
+buildDependentsSAXParserMacosDebugExecutable - Build dependents of executable 'sAXParser:macos:debug:executable'.
+buildDependentsSAXParserMacosReleaseExecutable - Build dependents of executable 'sAXParser:macos:release:executable'.
+buildDependentsSAXParserWin32DebugExecutable - Build dependents of executable 'sAXParser:win32:debug:executable'.
+buildDependentsSAXParserWin32ReleaseExecutable - Build dependents of executable 'sAXParser:win32:release:executable'.
+buildDependentsSAXParserWin64DebugExecutable - Build dependents of executable 'sAXParser:win64:debug:executable'.
+buildDependentsSAXParserWin64ReleaseExecutable - Build dependents of executable 'sAXParser:win64:release:executable'.
+buildDependentsSMTPLogger - Build dependents of native executable 'SMTPLogger'.
+buildDependentsSMTPLoggerLinux32DebugExecutable - Build dependents of executable 'sMTPLogger:linux32:debug:executable'.
+buildDependentsSMTPLoggerLinux32ReleaseExecutable - Build dependents of executable 'sMTPLogger:linux32:release:executable'.
+buildDependentsSMTPLoggerLinux64DebugExecutable - Build dependents of executable 'sMTPLogger:linux64:debug:executable'.
+buildDependentsSMTPLoggerLinux64ReleaseExecutable - Build dependents of executable 'sMTPLogger:linux64:release:executable'.
+buildDependentsSMTPLoggerMacosDebugExecutable - Build dependents of executable 'sMTPLogger:macos:debug:executable'.
+buildDependentsSMTPLoggerMacosReleaseExecutable - Build dependents of executable 'sMTPLogger:macos:release:executable'.
+buildDependentsSMTPLoggerWin32DebugExecutable - Build dependents of executable 'sMTPLogger:win32:debug:executable'.
+buildDependentsSMTPLoggerWin32ReleaseExecutable - Build dependents of executable 'sMTPLogger:win32:release:executable'.
+buildDependentsSMTPLoggerWin64DebugExecutable - Build dependents of executable 'sMTPLogger:win64:debug:executable'.
+buildDependentsSMTPLoggerWin64ReleaseExecutable - Build dependents of executable 'sMTPLogger:win64:release:executable'.
+buildDependentsSQLiteTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'sQLiteTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsSQLiteTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'sQLiteTestSuite:linux32:release:cppUnitExe'.
+buildDependentsSQLiteTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'sQLiteTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsSQLiteTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'sQLiteTestSuite:linux64:release:cppUnitExe'.
+buildDependentsSQLiteTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'sQLiteTestSuite:macos:debug:cppUnitExe'.
+buildDependentsSQLiteTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'sQLiteTestSuite:macos:release:cppUnitExe'.
+buildDependentsSQLiteTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'sQLiteTestSuite:win32:debug:cppUnitExe'.
+buildDependentsSQLiteTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'sQLiteTestSuite:win32:release:cppUnitExe'.
+buildDependentsSQLiteTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'sQLiteTestSuite:win64:debug:cppUnitExe'.
+buildDependentsSQLiteTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'sQLiteTestSuite:win64:release:cppUnitExe'.
+buildDependentsSQLToMongo - Build dependents of native executable 'SQLToMongo'.
+buildDependentsSQLToMongoLinux32DebugExecutable - Build dependents of executable 'sQLToMongo:linux32:debug:executable'.
+buildDependentsSQLToMongoLinux32ReleaseExecutable - Build dependents of executable 'sQLToMongo:linux32:release:executable'.
+buildDependentsSQLToMongoLinux64DebugExecutable - Build dependents of executable 'sQLToMongo:linux64:debug:executable'.
+buildDependentsSQLToMongoLinux64ReleaseExecutable - Build dependents of executable 'sQLToMongo:linux64:release:executable'.
+buildDependentsSQLToMongoMacosDebugExecutable - Build dependents of executable 'sQLToMongo:macos:debug:executable'.
+buildDependentsSQLToMongoMacosReleaseExecutable - Build dependents of executable 'sQLToMongo:macos:release:executable'.
+buildDependentsSQLToMongoWin32DebugExecutable - Build dependents of executable 'sQLToMongo:win32:debug:executable'.
+buildDependentsSQLToMongoWin32ReleaseExecutable - Build dependents of executable 'sQLToMongo:win32:release:executable'.
+buildDependentsSQLToMongoWin64DebugExecutable - Build dependents of executable 'sQLToMongo:win64:debug:executable'.
+buildDependentsSQLToMongoWin64ReleaseExecutable - Build dependents of executable 'sQLToMongo:win64:release:executable'.
+buildDependentsStringTokenizer - Build dependents of native executable 'StringTokenizer'.
+buildDependentsStringTokenizerLinux32DebugExecutable - Build dependents of executable 'stringTokenizer:linux32:debug:executable'.
+buildDependentsStringTokenizerLinux32ReleaseExecutable - Build dependents of executable 'stringTokenizer:linux32:release:executable'.
+buildDependentsStringTokenizerLinux64DebugExecutable - Build dependents of executable 'stringTokenizer:linux64:debug:executable'.
+buildDependentsStringTokenizerLinux64ReleaseExecutable - Build dependents of executable 'stringTokenizer:linux64:release:executable'.
+buildDependentsStringTokenizerMacosDebugExecutable - Build dependents of executable 'stringTokenizer:macos:debug:executable'.
+buildDependentsStringTokenizerMacosReleaseExecutable - Build dependents of executable 'stringTokenizer:macos:release:executable'.
+buildDependentsStringTokenizerWin32DebugExecutable - Build dependents of executable 'stringTokenizer:win32:debug:executable'.
+buildDependentsStringTokenizerWin32ReleaseExecutable - Build dependents of executable 'stringTokenizer:win32:release:executable'.
+buildDependentsStringTokenizerWin64DebugExecutable - Build dependents of executable 'stringTokenizer:win64:debug:executable'.
+buildDependentsStringTokenizerWin64ReleaseExecutable - Build dependents of executable 'stringTokenizer:win64:release:executable'.
+buildDependentsTestApp - Build dependents of native executable 'TestApp'.
+buildDependentsTestAppLinux32DebugExecutable - Build dependents of executable 'testApp:linux32:debug:executable'.
+buildDependentsTestAppLinux32ReleaseExecutable - Build dependents of executable 'testApp:linux32:release:executable'.
+buildDependentsTestAppLinux64DebugExecutable - Build dependents of executable 'testApp:linux64:debug:executable'.
+buildDependentsTestAppLinux64ReleaseExecutable - Build dependents of executable 'testApp:linux64:release:executable'.
+buildDependentsTestAppMacosDebugExecutable - Build dependents of executable 'testApp:macos:debug:executable'.
+buildDependentsTestAppMacosReleaseExecutable - Build dependents of executable 'testApp:macos:release:executable'.
+buildDependentsTestAppWin32DebugExecutable - Build dependents of executable 'testApp:win32:debug:executable'.
+buildDependentsTestAppWin32ReleaseExecutable - Build dependents of executable 'testApp:win32:release:executable'.
+buildDependentsTestAppWin64DebugExecutable - Build dependents of executable 'testApp:win64:debug:executable'.
+buildDependentsTestAppWin64ReleaseExecutable - Build dependents of executable 'testApp:win64:release:executable'.
+buildDependentsTestLib - Build dependents of native library 'TestLib'.
+buildDependentsTestLibLinux32DebugSharedLibrary - Build dependents of shared library 'testLib:linux32:debug:sharedLibrary'.
+buildDependentsTestLibLinux32DebugStaticLibrary - Build dependents of static library 'testLib:linux32:debug:staticLibrary'.
+buildDependentsTestLibLinux32ReleaseSharedLibrary - Build dependents of shared library 'testLib:linux32:release:sharedLibrary'.
+buildDependentsTestLibLinux32ReleaseStaticLibrary - Build dependents of static library 'testLib:linux32:release:staticLibrary'.
+buildDependentsTestLibLinux64DebugSharedLibrary - Build dependents of shared library 'testLib:linux64:debug:sharedLibrary'.
+buildDependentsTestLibLinux64DebugStaticLibrary - Build dependents of static library 'testLib:linux64:debug:staticLibrary'.
+buildDependentsTestLibLinux64ReleaseSharedLibrary - Build dependents of shared library 'testLib:linux64:release:sharedLibrary'.
+buildDependentsTestLibLinux64ReleaseStaticLibrary - Build dependents of static library 'testLib:linux64:release:staticLibrary'.
+buildDependentsTestLibMacosDebugSharedLibrary - Build dependents of shared library 'testLib:macos:debug:sharedLibrary'.
+buildDependentsTestLibMacosDebugStaticLibrary - Build dependents of static library 'testLib:macos:debug:staticLibrary'.
+buildDependentsTestLibMacosReleaseSharedLibrary - Build dependents of shared library 'testLib:macos:release:sharedLibrary'.
+buildDependentsTestLibMacosReleaseStaticLibrary - Build dependents of static library 'testLib:macos:release:staticLibrary'.
+buildDependentsTestLibWin32DebugSemiStaticLibrary - Build dependents of semi static library 'testLib:win32:debug:semiStaticLibrary'.
+buildDependentsTestLibWin32DebugSharedLibrary - Build dependents of shared library 'testLib:win32:debug:sharedLibrary'.
+buildDependentsTestLibWin32DebugStaticLibrary - Build dependents of static library 'testLib:win32:debug:staticLibrary'.
+buildDependentsTestLibWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'testLib:win32:release:semiStaticLibrary'.
+buildDependentsTestLibWin32ReleaseSharedLibrary - Build dependents of shared library 'testLib:win32:release:sharedLibrary'.
+buildDependentsTestLibWin32ReleaseStaticLibrary - Build dependents of static library 'testLib:win32:release:staticLibrary'.
+buildDependentsTestLibWin64DebugSemiStaticLibrary - Build dependents of semi static library 'testLib:win64:debug:semiStaticLibrary'.
+buildDependentsTestLibWin64DebugSharedLibrary - Build dependents of shared library 'testLib:win64:debug:sharedLibrary'.
+buildDependentsTestLibWin64DebugStaticLibrary - Build dependents of static library 'testLib:win64:debug:staticLibrary'.
+buildDependentsTestLibWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'testLib:win64:release:semiStaticLibrary'.
+buildDependentsTestLibWin64ReleaseSharedLibrary - Build dependents of shared library 'testLib:win64:release:sharedLibrary'.
+buildDependentsTestLibWin64ReleaseStaticLibrary - Build dependents of static library 'testLib:win64:release:staticLibrary'.
+buildDependentsTestSuite - Build dependents of native library 'TestSuite'.
+buildDependentsTestSuiteLinux32DebugSharedLibrary - Build dependents of shared library 'testSuite:linux32:debug:sharedLibrary'.
+buildDependentsTestSuiteLinux32DebugStaticLibrary - Build dependents of static library 'testSuite:linux32:debug:staticLibrary'.
+buildDependentsTestSuiteLinux32ReleaseSharedLibrary - Build dependents of shared library 'testSuite:linux32:release:sharedLibrary'.
+buildDependentsTestSuiteLinux32ReleaseStaticLibrary - Build dependents of static library 'testSuite:linux32:release:staticLibrary'.
+buildDependentsTestSuiteLinux64DebugSharedLibrary - Build dependents of shared library 'testSuite:linux64:debug:sharedLibrary'.
+buildDependentsTestSuiteLinux64DebugStaticLibrary - Build dependents of static library 'testSuite:linux64:debug:staticLibrary'.
+buildDependentsTestSuiteLinux64ReleaseSharedLibrary - Build dependents of shared library 'testSuite:linux64:release:sharedLibrary'.
+buildDependentsTestSuiteLinux64ReleaseStaticLibrary - Build dependents of static library 'testSuite:linux64:release:staticLibrary'.
+buildDependentsTestSuiteMacosDebugSharedLibrary - Build dependents of shared library 'testSuite:macos:debug:sharedLibrary'.
+buildDependentsTestSuiteMacosDebugStaticLibrary - Build dependents of static library 'testSuite:macos:debug:staticLibrary'.
+buildDependentsTestSuiteMacosReleaseSharedLibrary - Build dependents of shared library 'testSuite:macos:release:sharedLibrary'.
+buildDependentsTestSuiteMacosReleaseStaticLibrary - Build dependents of static library 'testSuite:macos:release:staticLibrary'.
+buildDependentsTestSuiteWin32DebugSemiStaticLibrary - Build dependents of semi static library 'testSuite:win32:debug:semiStaticLibrary'.
+buildDependentsTestSuiteWin32DebugSharedLibrary - Build dependents of shared library 'testSuite:win32:debug:sharedLibrary'.
+buildDependentsTestSuiteWin32DebugStaticLibrary - Build dependents of static library 'testSuite:win32:debug:staticLibrary'.
+buildDependentsTestSuiteWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'testSuite:win32:release:semiStaticLibrary'.
+buildDependentsTestSuiteWin32ReleaseSharedLibrary - Build dependents of shared library 'testSuite:win32:release:sharedLibrary'.
+buildDependentsTestSuiteWin32ReleaseStaticLibrary - Build dependents of static library 'testSuite:win32:release:staticLibrary'.
+buildDependentsTestSuiteWin64DebugSemiStaticLibrary - Build dependents of semi static library 'testSuite:win64:debug:semiStaticLibrary'.
+buildDependentsTestSuiteWin64DebugSharedLibrary - Build dependents of shared library 'testSuite:win64:debug:sharedLibrary'.
+buildDependentsTestSuiteWin64DebugStaticLibrary - Build dependents of static library 'testSuite:win64:debug:staticLibrary'.
+buildDependentsTestSuiteWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'testSuite:win64:release:semiStaticLibrary'.
+buildDependentsTestSuiteWin64ReleaseSharedLibrary - Build dependents of shared library 'testSuite:win64:release:sharedLibrary'.
+buildDependentsTestSuiteWin64ReleaseStaticLibrary - Build dependents of static library 'testSuite:win64:release:staticLibrary'.
+buildDependentsText - Build dependents of native executable 'Text'.
+buildDependentsTextConverter - Build dependents of native executable 'TextConverter'.
+buildDependentsTextConverterLinux32DebugExecutable - Build dependents of executable 'textConverter:linux32:debug:executable'.
+buildDependentsTextConverterLinux32ReleaseExecutable - Build dependents of executable 'textConverter:linux32:release:executable'.
+buildDependentsTextConverterLinux64DebugExecutable - Build dependents of executable 'textConverter:linux64:debug:executable'.
+buildDependentsTextConverterLinux64ReleaseExecutable - Build dependents of executable 'textConverter:linux64:release:executable'.
+buildDependentsTextConverterMacosDebugExecutable - Build dependents of executable 'textConverter:macos:debug:executable'.
+buildDependentsTextConverterMacosReleaseExecutable - Build dependents of executable 'textConverter:macos:release:executable'.
+buildDependentsTextConverterWin32DebugExecutable - Build dependents of executable 'textConverter:win32:debug:executable'.
+buildDependentsTextConverterWin32ReleaseExecutable - Build dependents of executable 'textConverter:win32:release:executable'.
+buildDependentsTextConverterWin64DebugExecutable - Build dependents of executable 'textConverter:win64:debug:executable'.
+buildDependentsTextConverterWin64ReleaseExecutable - Build dependents of executable 'textConverter:win64:release:executable'.
+buildDependentsTextLinux32DebugExecutable - Build dependents of executable 'text:linux32:debug:executable'.
+buildDependentsTextLinux32ReleaseExecutable - Build dependents of executable 'text:linux32:release:executable'.
+buildDependentsTextLinux64DebugExecutable - Build dependents of executable 'text:linux64:debug:executable'.
+buildDependentsTextLinux64ReleaseExecutable - Build dependents of executable 'text:linux64:release:executable'.
+buildDependentsTextMacosDebugExecutable - Build dependents of executable 'text:macos:debug:executable'.
+buildDependentsTextMacosReleaseExecutable - Build dependents of executable 'text:macos:release:executable'.
+buildDependentsTextWin32DebugExecutable - Build dependents of executable 'text:win32:debug:executable'.
+buildDependentsTextWin32ReleaseExecutable - Build dependents of executable 'text:win32:release:executable'.
+buildDependentsTextWin64DebugExecutable - Build dependents of executable 'text:win64:debug:executable'.
+buildDependentsTextWin64ReleaseExecutable - Build dependents of executable 'text:win64:release:executable'.
+buildDependentsTimer - Build dependents of native executable 'Timer'.
+buildDependentsTimerLinux32DebugExecutable - Build dependents of executable 'timer:linux32:debug:executable'.
+buildDependentsTimerLinux32ReleaseExecutable - Build dependents of executable 'timer:linux32:release:executable'.
+buildDependentsTimerLinux64DebugExecutable - Build dependents of executable 'timer:linux64:debug:executable'.
+buildDependentsTimerLinux64ReleaseExecutable - Build dependents of executable 'timer:linux64:release:executable'.
+buildDependentsTimerMacosDebugExecutable - Build dependents of executable 'timer:macos:debug:executable'.
+buildDependentsTimerMacosReleaseExecutable - Build dependents of executable 'timer:macos:release:executable'.
+buildDependentsTimerWin32DebugExecutable - Build dependents of executable 'timer:win32:debug:executable'.
+buildDependentsTimerWin32ReleaseExecutable - Build dependents of executable 'timer:win32:release:executable'.
+buildDependentsTimerWin64DebugExecutable - Build dependents of executable 'timer:win64:debug:executable'.
+buildDependentsTimerWin64ReleaseExecutable - Build dependents of executable 'timer:win64:release:executable'.
+buildDependentsTimeServer - Build dependents of native executable 'TimeServer'.
+buildDependentsTimeServerLinux32DebugExecutable - Build dependents of executable 'timeServer:linux32:debug:executable'.
+buildDependentsTimeServerLinux32ReleaseExecutable - Build dependents of executable 'timeServer:linux32:release:executable'.
+buildDependentsTimeServerLinux64DebugExecutable - Build dependents of executable 'timeServer:linux64:debug:executable'.
+buildDependentsTimeServerLinux64ReleaseExecutable - Build dependents of executable 'timeServer:linux64:release:executable'.
+buildDependentsTimeServerMacosDebugExecutable - Build dependents of executable 'timeServer:macos:debug:executable'.
+buildDependentsTimeServerMacosReleaseExecutable - Build dependents of executable 'timeServer:macos:release:executable'.
+buildDependentsTimeServerWin32DebugExecutable - Build dependents of executable 'timeServer:win32:debug:executable'.
+buildDependentsTimeServerWin32ReleaseExecutable - Build dependents of executable 'timeServer:win32:release:executable'.
+buildDependentsTimeServerWin64DebugExecutable - Build dependents of executable 'timeServer:win64:debug:executable'.
+buildDependentsTimeServerWin64ReleaseExecutable - Build dependents of executable 'timeServer:win64:release:executable'.
+buildDependentsTuple - Build dependents of native executable 'Tuple'.
+buildDependentsTupleLinux32DebugExecutable - Build dependents of executable 'tuple:linux32:debug:executable'.
+buildDependentsTupleLinux32ReleaseExecutable - Build dependents of executable 'tuple:linux32:release:executable'.
+buildDependentsTupleLinux64DebugExecutable - Build dependents of executable 'tuple:linux64:debug:executable'.
+buildDependentsTupleLinux64ReleaseExecutable - Build dependents of executable 'tuple:linux64:release:executable'.
+buildDependentsTupleMacosDebugExecutable - Build dependents of executable 'tuple:macos:debug:executable'.
+buildDependentsTupleMacosReleaseExecutable - Build dependents of executable 'tuple:macos:release:executable'.
+buildDependentsTupleWin32DebugExecutable - Build dependents of executable 'tuple:win32:debug:executable'.
+buildDependentsTupleWin32ReleaseExecutable - Build dependents of executable 'tuple:win32:release:executable'.
+buildDependentsTupleWin64DebugExecutable - Build dependents of executable 'tuple:win64:debug:executable'.
+buildDependentsTupleWin64ReleaseExecutable - Build dependents of executable 'tuple:win64:release:executable'.
+buildDependentsTwitterClient - Build dependents of native executable 'TwitterClient'.
+buildDependentsTwitterClientLinux32DebugExecutable - Build dependents of executable 'twitterClient:linux32:debug:executable'.
+buildDependentsTwitterClientLinux32ReleaseExecutable - Build dependents of executable 'twitterClient:linux32:release:executable'.
+buildDependentsTwitterClientLinux64DebugExecutable - Build dependents of executable 'twitterClient:linux64:debug:executable'.
+buildDependentsTwitterClientLinux64ReleaseExecutable - Build dependents of executable 'twitterClient:linux64:release:executable'.
+buildDependentsTwitterClientMacosDebugExecutable - Build dependents of executable 'twitterClient:macos:debug:executable'.
+buildDependentsTwitterClientMacosReleaseExecutable - Build dependents of executable 'twitterClient:macos:release:executable'.
+buildDependentsTwitterClientWin32DebugExecutable - Build dependents of executable 'twitterClient:win32:debug:executable'.
+buildDependentsTwitterClientWin32ReleaseExecutable - Build dependents of executable 'twitterClient:win32:release:executable'.
+buildDependentsTwitterClientWin64DebugExecutable - Build dependents of executable 'twitterClient:win64:debug:executable'.
+buildDependentsTwitterClientWin64ReleaseExecutable - Build dependents of executable 'twitterClient:win64:release:executable'.
+buildDependentsTypeHandler - Build dependents of native executable 'TypeHandler'.
+buildDependentsTypeHandlerLinux32DebugExecutable - Build dependents of executable 'typeHandler:linux32:debug:executable'.
+buildDependentsTypeHandlerLinux32ReleaseExecutable - Build dependents of executable 'typeHandler:linux32:release:executable'.
+buildDependentsTypeHandlerLinux64DebugExecutable - Build dependents of executable 'typeHandler:linux64:debug:executable'.
+buildDependentsTypeHandlerLinux64ReleaseExecutable - Build dependents of executable 'typeHandler:linux64:release:executable'.
+buildDependentsTypeHandlerMacosDebugExecutable - Build dependents of executable 'typeHandler:macos:debug:executable'.
+buildDependentsTypeHandlerMacosReleaseExecutable - Build dependents of executable 'typeHandler:macos:release:executable'.
+buildDependentsTypeHandlerWin32DebugExecutable - Build dependents of executable 'typeHandler:win32:debug:executable'.
+buildDependentsTypeHandlerWin32ReleaseExecutable - Build dependents of executable 'typeHandler:win32:release:executable'.
+buildDependentsTypeHandlerWin64DebugExecutable - Build dependents of executable 'typeHandler:win64:debug:executable'.
+buildDependentsTypeHandlerWin64ReleaseExecutable - Build dependents of executable 'typeHandler:win64:release:executable'.
+buildDependentsUn7zip - Build dependents of native executable 'un7zip'.
+buildDependentsUn7zipLinux32DebugExecutable - Build dependents of executable 'un7zip:linux32:debug:executable'.
+buildDependentsUn7zipLinux32ReleaseExecutable - Build dependents of executable 'un7zip:linux32:release:executable'.
+buildDependentsUn7zipLinux64DebugExecutable - Build dependents of executable 'un7zip:linux64:debug:executable'.
+buildDependentsUn7zipLinux64ReleaseExecutable - Build dependents of executable 'un7zip:linux64:release:executable'.
+buildDependentsUn7zipMacosDebugExecutable - Build dependents of executable 'un7zip:macos:debug:executable'.
+buildDependentsUn7zipMacosReleaseExecutable - Build dependents of executable 'un7zip:macos:release:executable'.
+buildDependentsUn7zipWin32DebugExecutable - Build dependents of executable 'un7zip:win32:debug:executable'.
+buildDependentsUn7zipWin32ReleaseExecutable - Build dependents of executable 'un7zip:win32:release:executable'.
+buildDependentsUn7zipWin64DebugExecutable - Build dependents of executable 'un7zip:win64:debug:executable'.
+buildDependentsUn7zipWin64ReleaseExecutable - Build dependents of executable 'un7zip:win64:release:executable'.
+buildDependentsUnits - Build dependents of native executable 'Units'.
+buildDependentsUnitsLinux32DebugExecutable - Build dependents of executable 'units:linux32:debug:executable'.
+buildDependentsUnitsLinux32ReleaseExecutable - Build dependents of executable 'units:linux32:release:executable'.
+buildDependentsUnitsLinux64DebugExecutable - Build dependents of executable 'units:linux64:debug:executable'.
+buildDependentsUnitsLinux64ReleaseExecutable - Build dependents of executable 'units:linux64:release:executable'.
+buildDependentsUnitsMacosDebugExecutable - Build dependents of executable 'units:macos:debug:executable'.
+buildDependentsUnitsMacosReleaseExecutable - Build dependents of executable 'units:macos:release:executable'.
+buildDependentsUnitsWin32DebugExecutable - Build dependents of executable 'units:win32:debug:executable'.
+buildDependentsUnitsWin32ReleaseExecutable - Build dependents of executable 'units:win32:release:executable'.
+buildDependentsUnitsWin64DebugExecutable - Build dependents of executable 'units:win64:debug:executable'.
+buildDependentsUnitsWin64ReleaseExecutable - Build dependents of executable 'units:win64:release:executable'.
+buildDependentsUnzip - Build dependents of native executable 'unzip'.
+buildDependentsUnzipLinux32DebugExecutable - Build dependents of executable 'unzip:linux32:debug:executable'.
+buildDependentsUnzipLinux32ReleaseExecutable - Build dependents of executable 'unzip:linux32:release:executable'.
+buildDependentsUnzipLinux64DebugExecutable - Build dependents of executable 'unzip:linux64:debug:executable'.
+buildDependentsUnzipLinux64ReleaseExecutable - Build dependents of executable 'unzip:linux64:release:executable'.
+buildDependentsUnzipMacosDebugExecutable - Build dependents of executable 'unzip:macos:debug:executable'.
+buildDependentsUnzipMacosReleaseExecutable - Build dependents of executable 'unzip:macos:release:executable'.
+buildDependentsUnzipWin32DebugExecutable - Build dependents of executable 'unzip:win32:debug:executable'.
+buildDependentsUnzipWin32ReleaseExecutable - Build dependents of executable 'unzip:win32:release:executable'.
+buildDependentsUnzipWin64DebugExecutable - Build dependents of executable 'unzip:win64:debug:executable'.
+buildDependentsUnzipWin64ReleaseExecutable - Build dependents of executable 'unzip:win64:release:executable'.
+buildDependentsURI - Build dependents of native executable 'URI'.
+buildDependentsURILinux32DebugExecutable - Build dependents of executable 'uRI:linux32:debug:executable'.
+buildDependentsURILinux32ReleaseExecutable - Build dependents of executable 'uRI:linux32:release:executable'.
+buildDependentsURILinux64DebugExecutable - Build dependents of executable 'uRI:linux64:debug:executable'.
+buildDependentsURILinux64ReleaseExecutable - Build dependents of executable 'uRI:linux64:release:executable'.
+buildDependentsURIMacosDebugExecutable - Build dependents of executable 'uRI:macos:debug:executable'.
+buildDependentsURIMacosReleaseExecutable - Build dependents of executable 'uRI:macos:release:executable'.
+buildDependentsURIWin32DebugExecutable - Build dependents of executable 'uRI:win32:debug:executable'.
+buildDependentsURIWin32ReleaseExecutable - Build dependents of executable 'uRI:win32:release:executable'.
+buildDependentsURIWin64DebugExecutable - Build dependents of executable 'uRI:win64:debug:executable'.
+buildDependentsURIWin64ReleaseExecutable - Build dependents of executable 'uRI:win64:release:executable'.
+buildDependentsUtil - Build dependents of native library 'Util'.
+buildDependentsUtilLinux32DebugSharedLibrary - Build dependents of shared library 'util:linux32:debug:sharedLibrary'.
+buildDependentsUtilLinux32DebugStaticLibrary - Build dependents of static library 'util:linux32:debug:staticLibrary'.
+buildDependentsUtilLinux32ReleaseSharedLibrary - Build dependents of shared library 'util:linux32:release:sharedLibrary'.
+buildDependentsUtilLinux32ReleaseStaticLibrary - Build dependents of static library 'util:linux32:release:staticLibrary'.
+buildDependentsUtilLinux64DebugSharedLibrary - Build dependents of shared library 'util:linux64:debug:sharedLibrary'.
+buildDependentsUtilLinux64DebugStaticLibrary - Build dependents of static library 'util:linux64:debug:staticLibrary'.
+buildDependentsUtilLinux64ReleaseSharedLibrary - Build dependents of shared library 'util:linux64:release:sharedLibrary'.
+buildDependentsUtilLinux64ReleaseStaticLibrary - Build dependents of static library 'util:linux64:release:staticLibrary'.
+buildDependentsUtilMacosDebugSharedLibrary - Build dependents of shared library 'util:macos:debug:sharedLibrary'.
+buildDependentsUtilMacosDebugStaticLibrary - Build dependents of static library 'util:macos:debug:staticLibrary'.
+buildDependentsUtilMacosReleaseSharedLibrary - Build dependents of shared library 'util:macos:release:sharedLibrary'.
+buildDependentsUtilMacosReleaseStaticLibrary - Build dependents of static library 'util:macos:release:staticLibrary'.
+buildDependentsUtilTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'utilTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsUtilTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'utilTestSuite:linux32:release:cppUnitExe'.
+buildDependentsUtilTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'utilTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsUtilTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'utilTestSuite:linux64:release:cppUnitExe'.
+buildDependentsUtilTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'utilTestSuite:macos:debug:cppUnitExe'.
+buildDependentsUtilTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'utilTestSuite:macos:release:cppUnitExe'.
+buildDependentsUtilTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'utilTestSuite:win32:debug:cppUnitExe'.
+buildDependentsUtilTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'utilTestSuite:win32:release:cppUnitExe'.
+buildDependentsUtilTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'utilTestSuite:win64:debug:cppUnitExe'.
+buildDependentsUtilTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'utilTestSuite:win64:release:cppUnitExe'.
+buildDependentsUtilWin32DebugSemiStaticLibrary - Build dependents of semi static library 'util:win32:debug:semiStaticLibrary'.
+buildDependentsUtilWin32DebugSharedLibrary - Build dependents of shared library 'util:win32:debug:sharedLibrary'.
+buildDependentsUtilWin32DebugStaticLibrary - Build dependents of static library 'util:win32:debug:staticLibrary'.
+buildDependentsUtilWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'util:win32:release:semiStaticLibrary'.
+buildDependentsUtilWin32ReleaseSharedLibrary - Build dependents of shared library 'util:win32:release:sharedLibrary'.
+buildDependentsUtilWin32ReleaseStaticLibrary - Build dependents of static library 'util:win32:release:staticLibrary'.
+buildDependentsUtilWin64DebugSemiStaticLibrary - Build dependents of semi static library 'util:win64:debug:semiStaticLibrary'.
+buildDependentsUtilWin64DebugSharedLibrary - Build dependents of shared library 'util:win64:debug:sharedLibrary'.
+buildDependentsUtilWin64DebugStaticLibrary - Build dependents of static library 'util:win64:debug:staticLibrary'.
+buildDependentsUtilWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'util:win64:release:semiStaticLibrary'.
+buildDependentsUtilWin64ReleaseSharedLibrary - Build dependents of shared library 'util:win64:release:sharedLibrary'.
+buildDependentsUtilWin64ReleaseStaticLibrary - Build dependents of static library 'util:win64:release:staticLibrary'.
+buildDependentsUuidgen - Build dependents of native executable 'uuidgen'.
+buildDependentsUuidgenLinux32DebugExecutable - Build dependents of executable 'uuidgen:linux32:debug:executable'.
+buildDependentsUuidgenLinux32ReleaseExecutable - Build dependents of executable 'uuidgen:linux32:release:executable'.
+buildDependentsUuidgenLinux64DebugExecutable - Build dependents of executable 'uuidgen:linux64:debug:executable'.
+buildDependentsUuidgenLinux64ReleaseExecutable - Build dependents of executable 'uuidgen:linux64:release:executable'.
+buildDependentsUuidgenMacosDebugExecutable - Build dependents of executable 'uuidgen:macos:debug:executable'.
+buildDependentsUuidgenMacosReleaseExecutable - Build dependents of executable 'uuidgen:macos:release:executable'.
+buildDependentsUuidgenWin32DebugExecutable - Build dependents of executable 'uuidgen:win32:debug:executable'.
+buildDependentsUuidgenWin32ReleaseExecutable - Build dependents of executable 'uuidgen:win32:release:executable'.
+buildDependentsUuidgenWin64DebugExecutable - Build dependents of executable 'uuidgen:win64:debug:executable'.
+buildDependentsUuidgenWin64ReleaseExecutable - Build dependents of executable 'uuidgen:win64:release:executable'.
+buildDependentsWebNotifier - Build dependents of native executable 'WebNotifier'.
+buildDependentsWebNotifierLinux32DebugExecutable - Build dependents of executable 'webNotifier:linux32:debug:executable'.
+buildDependentsWebNotifierLinux32ReleaseExecutable - Build dependents of executable 'webNotifier:linux32:release:executable'.
+buildDependentsWebNotifierLinux64DebugExecutable - Build dependents of executable 'webNotifier:linux64:debug:executable'.
+buildDependentsWebNotifierLinux64ReleaseExecutable - Build dependents of executable 'webNotifier:linux64:release:executable'.
+buildDependentsWebNotifierMacosDebugExecutable - Build dependents of executable 'webNotifier:macos:debug:executable'.
+buildDependentsWebNotifierMacosReleaseExecutable - Build dependents of executable 'webNotifier:macos:release:executable'.
+buildDependentsWebNotifierWin32DebugExecutable - Build dependents of executable 'webNotifier:win32:debug:executable'.
+buildDependentsWebNotifierWin32ReleaseExecutable - Build dependents of executable 'webNotifier:win32:release:executable'.
+buildDependentsWebNotifierWin64DebugExecutable - Build dependents of executable 'webNotifier:win64:debug:executable'.
+buildDependentsWebNotifierWin64ReleaseExecutable - Build dependents of executable 'webNotifier:win64:release:executable'.
+buildDependentsWebSocketServer - Build dependents of native executable 'WebSocketServer'.
+buildDependentsWebSocketServerLinux32DebugExecutable - Build dependents of executable 'webSocketServer:linux32:debug:executable'.
+buildDependentsWebSocketServerLinux32ReleaseExecutable - Build dependents of executable 'webSocketServer:linux32:release:executable'.
+buildDependentsWebSocketServerLinux64DebugExecutable - Build dependents of executable 'webSocketServer:linux64:debug:executable'.
+buildDependentsWebSocketServerLinux64ReleaseExecutable - Build dependents of executable 'webSocketServer:linux64:release:executable'.
+buildDependentsWebSocketServerMacosDebugExecutable - Build dependents of executable 'webSocketServer:macos:debug:executable'.
+buildDependentsWebSocketServerMacosReleaseExecutable - Build dependents of executable 'webSocketServer:macos:release:executable'.
+buildDependentsWebSocketServerWin32DebugExecutable - Build dependents of executable 'webSocketServer:win32:debug:executable'.
+buildDependentsWebSocketServerWin32ReleaseExecutable - Build dependents of executable 'webSocketServer:win32:release:executable'.
+buildDependentsWebSocketServerWin64DebugExecutable - Build dependents of executable 'webSocketServer:win64:debug:executable'.
+buildDependentsWebSocketServerWin64ReleaseExecutable - Build dependents of executable 'webSocketServer:win64:release:executable'.
+buildDependentsXML - Build dependents of native library 'XML'.
+buildDependentsXMLLinux32DebugSharedLibrary - Build dependents of shared library 'xML:linux32:debug:sharedLibrary'.
+buildDependentsXMLLinux32DebugStaticLibrary - Build dependents of static library 'xML:linux32:debug:staticLibrary'.
+buildDependentsXMLLinux32ReleaseSharedLibrary - Build dependents of shared library 'xML:linux32:release:sharedLibrary'.
+buildDependentsXMLLinux32ReleaseStaticLibrary - Build dependents of static library 'xML:linux32:release:staticLibrary'.
+buildDependentsXMLLinux64DebugSharedLibrary - Build dependents of shared library 'xML:linux64:debug:sharedLibrary'.
+buildDependentsXMLLinux64DebugStaticLibrary - Build dependents of static library 'xML:linux64:debug:staticLibrary'.
+buildDependentsXMLLinux64ReleaseSharedLibrary - Build dependents of shared library 'xML:linux64:release:sharedLibrary'.
+buildDependentsXMLLinux64ReleaseStaticLibrary - Build dependents of static library 'xML:linux64:release:staticLibrary'.
+buildDependentsXMLMacosDebugSharedLibrary - Build dependents of shared library 'xML:macos:debug:sharedLibrary'.
+buildDependentsXMLMacosDebugStaticLibrary - Build dependents of static library 'xML:macos:debug:staticLibrary'.
+buildDependentsXMLMacosReleaseSharedLibrary - Build dependents of shared library 'xML:macos:release:sharedLibrary'.
+buildDependentsXMLMacosReleaseStaticLibrary - Build dependents of static library 'xML:macos:release:staticLibrary'.
+buildDependentsXMLTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'xMLTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsXMLTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'xMLTestSuite:linux32:release:cppUnitExe'.
+buildDependentsXMLTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'xMLTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsXMLTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'xMLTestSuite:linux64:release:cppUnitExe'.
+buildDependentsXMLTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'xMLTestSuite:macos:debug:cppUnitExe'.
+buildDependentsXMLTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'xMLTestSuite:macos:release:cppUnitExe'.
+buildDependentsXMLTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'xMLTestSuite:win32:debug:cppUnitExe'.
+buildDependentsXMLTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'xMLTestSuite:win32:release:cppUnitExe'.
+buildDependentsXMLTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'xMLTestSuite:win64:debug:cppUnitExe'.
+buildDependentsXMLTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'xMLTestSuite:win64:release:cppUnitExe'.
+buildDependentsXMLWin32DebugSemiStaticLibrary - Build dependents of semi static library 'xML:win32:debug:semiStaticLibrary'.
+buildDependentsXMLWin32DebugSharedLibrary - Build dependents of shared library 'xML:win32:debug:sharedLibrary'.
+buildDependentsXMLWin32DebugStaticLibrary - Build dependents of static library 'xML:win32:debug:staticLibrary'.
+buildDependentsXMLWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'xML:win32:release:semiStaticLibrary'.
+buildDependentsXMLWin32ReleaseSharedLibrary - Build dependents of shared library 'xML:win32:release:sharedLibrary'.
+buildDependentsXMLWin32ReleaseStaticLibrary - Build dependents of static library 'xML:win32:release:staticLibrary'.
+buildDependentsXMLWin64DebugSemiStaticLibrary - Build dependents of semi static library 'xML:win64:debug:semiStaticLibrary'.
+buildDependentsXMLWin64DebugSharedLibrary - Build dependents of shared library 'xML:win64:debug:sharedLibrary'.
+buildDependentsXMLWin64DebugStaticLibrary - Build dependents of static library 'xML:win64:debug:staticLibrary'.
+buildDependentsXMLWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'xML:win64:release:semiStaticLibrary'.
+buildDependentsXMLWin64ReleaseSharedLibrary - Build dependents of shared library 'xML:win64:release:sharedLibrary'.
+buildDependentsXMLWin64ReleaseStaticLibrary - Build dependents of static library 'xML:win64:release:staticLibrary'.
+buildDependentsZip - Build dependents of native library 'Zip'.
+buildDependentsZipLinux32DebugExecutable - Build dependents of executable 'zip:linux32:debug:executable'.
+buildDependentsZipLinux32DebugSharedLibrary - Build dependents of shared library 'zip:linux32:debug:sharedLibrary'.
+buildDependentsZipLinux32DebugStaticLibrary - Build dependents of static library 'zip:linux32:debug:staticLibrary'.
+buildDependentsZipLinux32ReleaseExecutable - Build dependents of executable 'zip:linux32:release:executable'.
+buildDependentsZipLinux32ReleaseSharedLibrary - Build dependents of shared library 'zip:linux32:release:sharedLibrary'.
+buildDependentsZipLinux32ReleaseStaticLibrary - Build dependents of static library 'zip:linux32:release:staticLibrary'.
+buildDependentsZipLinux64DebugExecutable - Build dependents of executable 'zip:linux64:debug:executable'.
+buildDependentsZipLinux64DebugSharedLibrary - Build dependents of shared library 'zip:linux64:debug:sharedLibrary'.
+buildDependentsZipLinux64DebugStaticLibrary - Build dependents of static library 'zip:linux64:debug:staticLibrary'.
+buildDependentsZipLinux64ReleaseExecutable - Build dependents of executable 'zip:linux64:release:executable'.
+buildDependentsZipLinux64ReleaseSharedLibrary - Build dependents of shared library 'zip:linux64:release:sharedLibrary'.
+buildDependentsZipLinux64ReleaseStaticLibrary - Build dependents of static library 'zip:linux64:release:staticLibrary'.
+buildDependentsZipMacosDebugExecutable - Build dependents of executable 'zip:macos:debug:executable'.
+buildDependentsZipMacosDebugSharedLibrary - Build dependents of shared library 'zip:macos:debug:sharedLibrary'.
+buildDependentsZipMacosDebugStaticLibrary - Build dependents of static library 'zip:macos:debug:staticLibrary'.
+buildDependentsZipMacosReleaseExecutable - Build dependents of executable 'zip:macos:release:executable'.
+buildDependentsZipMacosReleaseSharedLibrary - Build dependents of shared library 'zip:macos:release:sharedLibrary'.
+buildDependentsZipMacosReleaseStaticLibrary - Build dependents of static library 'zip:macos:release:staticLibrary'.
+buildDependentsZipTestSuiteLinux32DebugCppUnitExe - Build dependents of cpp unit exe 'zipTestSuite:linux32:debug:cppUnitExe'.
+buildDependentsZipTestSuiteLinux32ReleaseCppUnitExe - Build dependents of cpp unit exe 'zipTestSuite:linux32:release:cppUnitExe'.
+buildDependentsZipTestSuiteLinux64DebugCppUnitExe - Build dependents of cpp unit exe 'zipTestSuite:linux64:debug:cppUnitExe'.
+buildDependentsZipTestSuiteLinux64ReleaseCppUnitExe - Build dependents of cpp unit exe 'zipTestSuite:linux64:release:cppUnitExe'.
+buildDependentsZipTestSuiteMacosDebugCppUnitExe - Build dependents of cpp unit exe 'zipTestSuite:macos:debug:cppUnitExe'.
+buildDependentsZipTestSuiteMacosReleaseCppUnitExe - Build dependents of cpp unit exe 'zipTestSuite:macos:release:cppUnitExe'.
+buildDependentsZipTestSuiteWin32DebugCppUnitExe - Build dependents of cpp unit exe 'zipTestSuite:win32:debug:cppUnitExe'.
+buildDependentsZipTestSuiteWin32ReleaseCppUnitExe - Build dependents of cpp unit exe 'zipTestSuite:win32:release:cppUnitExe'.
+buildDependentsZipTestSuiteWin64DebugCppUnitExe - Build dependents of cpp unit exe 'zipTestSuite:win64:debug:cppUnitExe'.
+buildDependentsZipTestSuiteWin64ReleaseCppUnitExe - Build dependents of cpp unit exe 'zipTestSuite:win64:release:cppUnitExe'.
+buildDependentsZipWin32DebugExecutable - Build dependents of executable 'zip:win32:debug:executable'.
+buildDependentsZipWin32DebugSemiStaticLibrary - Build dependents of semi static library 'zip:win32:debug:semiStaticLibrary'.
+buildDependentsZipWin32DebugSharedLibrary - Build dependents of shared library 'zip:win32:debug:sharedLibrary'.
+buildDependentsZipWin32DebugStaticLibrary - Build dependents of static library 'zip:win32:debug:staticLibrary'.
+buildDependentsZipWin32ReleaseExecutable - Build dependents of executable 'zip:win32:release:executable'.
+buildDependentsZipWin32ReleaseSemiStaticLibrary - Build dependents of semi static library 'zip:win32:release:semiStaticLibrary'.
+buildDependentsZipWin32ReleaseSharedLibrary - Build dependents of shared library 'zip:win32:release:sharedLibrary'.
+buildDependentsZipWin32ReleaseStaticLibrary - Build dependents of static library 'zip:win32:release:staticLibrary'.
+buildDependentsZipWin64DebugExecutable - Build dependents of executable 'zip:win64:debug:executable'.
+buildDependentsZipWin64DebugSemiStaticLibrary - Build dependents of semi static library 'zip:win64:debug:semiStaticLibrary'.
+buildDependentsZipWin64DebugSharedLibrary - Build dependents of shared library 'zip:win64:debug:sharedLibrary'.
+buildDependentsZipWin64DebugStaticLibrary - Build dependents of static library 'zip:win64:debug:staticLibrary'.
+buildDependentsZipWin64ReleaseExecutable - Build dependents of executable 'zip:win64:release:executable'.
+buildDependentsZipWin64ReleaseSemiStaticLibrary - Build dependents of semi static library 'zip:win64:release:semiStaticLibrary'.
+buildDependentsZipWin64ReleaseSharedLibrary - Build dependents of shared library 'zip:win64:release:sharedLibrary'.
+buildDependentsZipWin64ReleaseStaticLibrary - Build dependents of static library 'zip:win64:release:staticLibrary'.
+
+Build Setup tasks
+-----------------
+init - Initializes a new Gradle build.
+wrapper - Generates Gradle wrapper files.
+
+Help tasks
+----------
+buildEnvironment - Displays all buildscript dependencies declared in root project 'Poco'.
+components - Displays the components produced by root project 'Poco'. [incubating]
+dependencies - Displays all dependencies declared in root project 'Poco'.
+dependencyInsight - Displays the insight into a specific dependency in root project 'Poco'.
+dependentComponents - Displays the dependent components of components in root project 'Poco'. [incubating]
+help - Displays a help message.
+model - Displays the configuration model of root project 'Poco'. [incubating]
+projects - Displays the sub-projects of root project 'Poco'.
+properties - Displays the properties of root project 'Poco'.
+tasks - Displays the tasks runnable from root project 'Poco' (some of the displayed tasks may belong to subprojects).
+
+Upload tasks
+------------
+nugetPush - Pushes the NuGet package to the configured server url.
+
+Verification tasks
+------------------
+check - Runs all checks.
+checkActiveMethodLinux32DebugExecutable - Check executable 'activeMethod:linux32:debug:executable'
+checkActiveMethodLinux32ReleaseExecutable - Check executable 'activeMethod:linux32:release:executable'
+checkActiveMethodLinux64DebugExecutable - Check executable 'activeMethod:linux64:debug:executable'
+checkActiveMethodLinux64ReleaseExecutable - Check executable 'activeMethod:linux64:release:executable'
+checkActiveMethodMacosDebugExecutable - Check executable 'activeMethod:macos:debug:executable'
+checkActiveMethodMacosReleaseExecutable - Check executable 'activeMethod:macos:release:executable'
+checkActiveMethodWin32DebugExecutable - Check executable 'activeMethod:win32:debug:executable'
+checkActiveMethodWin32ReleaseExecutable - Check executable 'activeMethod:win32:release:executable'
+checkActiveMethodWin64DebugExecutable - Check executable 'activeMethod:win64:debug:executable'
+checkActiveMethodWin64ReleaseExecutable - Check executable 'activeMethod:win64:release:executable'
+checkActivityLinux32DebugExecutable - Check executable 'activity:linux32:debug:executable'
+checkActivityLinux32ReleaseExecutable - Check executable 'activity:linux32:release:executable'
+checkActivityLinux64DebugExecutable - Check executable 'activity:linux64:debug:executable'
+checkActivityLinux64ReleaseExecutable - Check executable 'activity:linux64:release:executable'
+checkActivityMacosDebugExecutable - Check executable 'activity:macos:debug:executable'
+checkActivityMacosReleaseExecutable - Check executable 'activity:macos:release:executable'
+checkActivityWin32DebugExecutable - Check executable 'activity:win32:debug:executable'
+checkActivityWin32ReleaseExecutable - Check executable 'activity:win32:release:executable'
+checkActivityWin64DebugExecutable - Check executable 'activity:win64:debug:executable'
+checkActivityWin64ReleaseExecutable - Check executable 'activity:win64:release:executable'
+checkBase64decodeLinux32DebugExecutable - Check executable 'base64decode:linux32:debug:executable'
+checkBase64decodeLinux32ReleaseExecutable - Check executable 'base64decode:linux32:release:executable'
+checkBase64decodeLinux64DebugExecutable - Check executable 'base64decode:linux64:debug:executable'
+checkBase64decodeLinux64ReleaseExecutable - Check executable 'base64decode:linux64:release:executable'
+checkBase64decodeMacosDebugExecutable - Check executable 'base64decode:macos:debug:executable'
+checkBase64decodeMacosReleaseExecutable - Check executable 'base64decode:macos:release:executable'
+checkBase64decodeWin32DebugExecutable - Check executable 'base64decode:win32:debug:executable'
+checkBase64decodeWin32ReleaseExecutable - Check executable 'base64decode:win32:release:executable'
+checkBase64decodeWin64DebugExecutable - Check executable 'base64decode:win64:debug:executable'
+checkBase64decodeWin64ReleaseExecutable - Check executable 'base64decode:win64:release:executable'
+checkBase64encodeLinux32DebugExecutable - Check executable 'base64encode:linux32:debug:executable'
+checkBase64encodeLinux32ReleaseExecutable - Check executable 'base64encode:linux32:release:executable'
+checkBase64encodeLinux64DebugExecutable - Check executable 'base64encode:linux64:debug:executable'
+checkBase64encodeLinux64ReleaseExecutable - Check executable 'base64encode:linux64:release:executable'
+checkBase64encodeMacosDebugExecutable - Check executable 'base64encode:macos:debug:executable'
+checkBase64encodeMacosReleaseExecutable - Check executable 'base64encode:macos:release:executable'
+checkBase64encodeWin32DebugExecutable - Check executable 'base64encode:win32:debug:executable'
+checkBase64encodeWin32ReleaseExecutable - Check executable 'base64encode:win32:release:executable'
+checkBase64encodeWin64DebugExecutable - Check executable 'base64encode:win64:debug:executable'
+checkBase64encodeWin64ReleaseExecutable - Check executable 'base64encode:win64:release:executable'
+checkBenchmarkLinux32DebugExecutable - Check executable 'benchmark:linux32:debug:executable'
+checkBenchmarkLinux32ReleaseExecutable - Check executable 'benchmark:linux32:release:executable'
+checkBenchmarkLinux64DebugExecutable - Check executable 'benchmark:linux64:debug:executable'
+checkBenchmarkLinux64ReleaseExecutable - Check executable 'benchmark:linux64:release:executable'
+checkBenchmarkMacosDebugExecutable - Check executable 'benchmark:macos:debug:executable'
+checkBenchmarkMacosReleaseExecutable - Check executable 'benchmark:macos:release:executable'
+checkBenchmarkWin32DebugExecutable - Check executable 'benchmark:win32:debug:executable'
+checkBenchmarkWin32ReleaseExecutable - Check executable 'benchmark:win32:release:executable'
+checkBenchmarkWin64DebugExecutable - Check executable 'benchmark:win64:debug:executable'
+checkBenchmarkWin64ReleaseExecutable - Check executable 'benchmark:win64:release:executable'
+checkBinaryReaderWriterLinux32DebugExecutable - Check executable 'binaryReaderWriter:linux32:debug:executable'
+checkBinaryReaderWriterLinux32ReleaseExecutable - Check executable 'binaryReaderWriter:linux32:release:executable'
+checkBinaryReaderWriterLinux64DebugExecutable - Check executable 'binaryReaderWriter:linux64:debug:executable'
+checkBinaryReaderWriterLinux64ReleaseExecutable - Check executable 'binaryReaderWriter:linux64:release:executable'
+checkBinaryReaderWriterMacosDebugExecutable - Check executable 'binaryReaderWriter:macos:debug:executable'
+checkBinaryReaderWriterMacosReleaseExecutable - Check executable 'binaryReaderWriter:macos:release:executable'
+checkBinaryReaderWriterWin32DebugExecutable - Check executable 'binaryReaderWriter:win32:debug:executable'
+checkBinaryReaderWriterWin32ReleaseExecutable - Check executable 'binaryReaderWriter:win32:release:executable'
+checkBinaryReaderWriterWin64DebugExecutable - Check executable 'binaryReaderWriter:win64:debug:executable'
+checkBinaryReaderWriterWin64ReleaseExecutable - Check executable 'binaryReaderWriter:win64:release:executable'
+checkBindingLinux32DebugExecutable - Check executable 'binding:linux32:debug:executable'
+checkBindingLinux32ReleaseExecutable - Check executable 'binding:linux32:release:executable'
+checkBindingLinux64DebugExecutable - Check executable 'binding:linux64:debug:executable'
+checkBindingLinux64ReleaseExecutable - Check executable 'binding:linux64:release:executable'
+checkBindingMacosDebugExecutable - Check executable 'binding:macos:debug:executable'
+checkBindingMacosReleaseExecutable - Check executable 'binding:macos:release:executable'
+checkBindingWin32DebugExecutable - Check executable 'binding:win32:debug:executable'
+checkBindingWin32ReleaseExecutable - Check executable 'binding:win32:release:executable'
+checkBindingWin64DebugExecutable - Check executable 'binding:win64:debug:executable'
+checkBindingWin64ReleaseExecutable - Check executable 'binding:win64:release:executable'
+checkCppParserLinux32DebugSharedLibrary - Check shared library 'cppParser:linux32:debug:sharedLibrary'
+checkCppParserLinux32DebugStaticLibrary - Check static library 'cppParser:linux32:debug:staticLibrary'
+checkCppParserLinux32ReleaseSharedLibrary - Check shared library 'cppParser:linux32:release:sharedLibrary'
+checkCppParserLinux32ReleaseStaticLibrary - Check static library 'cppParser:linux32:release:staticLibrary'
+checkCppParserLinux64DebugSharedLibrary - Check shared library 'cppParser:linux64:debug:sharedLibrary'
+checkCppParserLinux64DebugStaticLibrary - Check static library 'cppParser:linux64:debug:staticLibrary'
+checkCppParserLinux64ReleaseSharedLibrary - Check shared library 'cppParser:linux64:release:sharedLibrary'
+checkCppParserLinux64ReleaseStaticLibrary - Check static library 'cppParser:linux64:release:staticLibrary'
+checkCppParserMacosDebugSharedLibrary - Check shared library 'cppParser:macos:debug:sharedLibrary'
+checkCppParserMacosDebugStaticLibrary - Check static library 'cppParser:macos:debug:staticLibrary'
+checkCppParserMacosReleaseSharedLibrary - Check shared library 'cppParser:macos:release:sharedLibrary'
+checkCppParserMacosReleaseStaticLibrary - Check static library 'cppParser:macos:release:staticLibrary'
+checkCppParserTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'cppParserTestSuite:linux32:debug:cppUnitExe'
+checkCppParserTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'cppParserTestSuite:linux32:release:cppUnitExe'
+checkCppParserTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'cppParserTestSuite:linux64:debug:cppUnitExe'
+checkCppParserTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'cppParserTestSuite:linux64:release:cppUnitExe'
+checkCppParserTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'cppParserTestSuite:macos:debug:cppUnitExe'
+checkCppParserTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'cppParserTestSuite:macos:release:cppUnitExe'
+checkCppParserTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'cppParserTestSuite:win32:debug:cppUnitExe'
+checkCppParserTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'cppParserTestSuite:win32:release:cppUnitExe'
+checkCppParserTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'cppParserTestSuite:win64:debug:cppUnitExe'
+checkCppParserTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'cppParserTestSuite:win64:release:cppUnitExe'
+checkCppParserWin32DebugSemiStaticLibrary - Check semi static library 'cppParser:win32:debug:semiStaticLibrary'
+checkCppParserWin32DebugSharedLibrary - Check shared library 'cppParser:win32:debug:sharedLibrary'
+checkCppParserWin32DebugStaticLibrary - Check static library 'cppParser:win32:debug:staticLibrary'
+checkCppParserWin32ReleaseSemiStaticLibrary - Check semi static library 'cppParser:win32:release:semiStaticLibrary'
+checkCppParserWin32ReleaseSharedLibrary - Check shared library 'cppParser:win32:release:sharedLibrary'
+checkCppParserWin32ReleaseStaticLibrary - Check static library 'cppParser:win32:release:staticLibrary'
+checkCppParserWin64DebugSemiStaticLibrary - Check semi static library 'cppParser:win64:debug:semiStaticLibrary'
+checkCppParserWin64DebugSharedLibrary - Check shared library 'cppParser:win64:debug:sharedLibrary'
+checkCppParserWin64DebugStaticLibrary - Check static library 'cppParser:win64:debug:staticLibrary'
+checkCppParserWin64ReleaseSemiStaticLibrary - Check semi static library 'cppParser:win64:release:semiStaticLibrary'
+checkCppParserWin64ReleaseSharedLibrary - Check shared library 'cppParser:win64:release:sharedLibrary'
+checkCppParserWin64ReleaseStaticLibrary - Check static library 'cppParser:win64:release:staticLibrary'
+checkCppUnitLinux32DebugSharedLibrary - Check shared library 'cppUnit:linux32:debug:sharedLibrary'
+checkCppUnitLinux32DebugStaticLibrary - Check static library 'cppUnit:linux32:debug:staticLibrary'
+checkCppUnitLinux32ReleaseSharedLibrary - Check shared library 'cppUnit:linux32:release:sharedLibrary'
+checkCppUnitLinux32ReleaseStaticLibrary - Check static library 'cppUnit:linux32:release:staticLibrary'
+checkCppUnitLinux64DebugSharedLibrary - Check shared library 'cppUnit:linux64:debug:sharedLibrary'
+checkCppUnitLinux64DebugStaticLibrary - Check static library 'cppUnit:linux64:debug:staticLibrary'
+checkCppUnitLinux64ReleaseSharedLibrary - Check shared library 'cppUnit:linux64:release:sharedLibrary'
+checkCppUnitLinux64ReleaseStaticLibrary - Check static library 'cppUnit:linux64:release:staticLibrary'
+checkCppUnitMacosDebugSharedLibrary - Check shared library 'cppUnit:macos:debug:sharedLibrary'
+checkCppUnitMacosDebugStaticLibrary - Check static library 'cppUnit:macos:debug:staticLibrary'
+checkCppUnitMacosReleaseSharedLibrary - Check shared library 'cppUnit:macos:release:sharedLibrary'
+checkCppUnitMacosReleaseStaticLibrary - Check static library 'cppUnit:macos:release:staticLibrary'
+checkCppUnitWin32DebugSemiStaticLibrary - Check semi static library 'cppUnit:win32:debug:semiStaticLibrary'
+checkCppUnitWin32DebugSharedLibrary - Check shared library 'cppUnit:win32:debug:sharedLibrary'
+checkCppUnitWin32DebugStaticLibrary - Check static library 'cppUnit:win32:debug:staticLibrary'
+checkCppUnitWin32ReleaseSemiStaticLibrary - Check semi static library 'cppUnit:win32:release:semiStaticLibrary'
+checkCppUnitWin32ReleaseSharedLibrary - Check shared library 'cppUnit:win32:release:sharedLibrary'
+checkCppUnitWin32ReleaseStaticLibrary - Check static library 'cppUnit:win32:release:staticLibrary'
+checkCppUnitWin64DebugSemiStaticLibrary - Check semi static library 'cppUnit:win64:debug:semiStaticLibrary'
+checkCppUnitWin64DebugSharedLibrary - Check shared library 'cppUnit:win64:debug:sharedLibrary'
+checkCppUnitWin64DebugStaticLibrary - Check static library 'cppUnit:win64:debug:staticLibrary'
+checkCppUnitWin64ReleaseSemiStaticLibrary - Check semi static library 'cppUnit:win64:release:semiStaticLibrary'
+checkCppUnitWin64ReleaseSharedLibrary - Check shared library 'cppUnit:win64:release:sharedLibrary'
+checkCppUnitWin64ReleaseStaticLibrary - Check static library 'cppUnit:win64:release:staticLibrary'
+checkCpspcLinux32DebugExecutable - Check executable 'cpspc:linux32:debug:executable'
+checkCpspcLinux32ReleaseExecutable - Check executable 'cpspc:linux32:release:executable'
+checkCpspcLinux64DebugExecutable - Check executable 'cpspc:linux64:debug:executable'
+checkCpspcLinux64ReleaseExecutable - Check executable 'cpspc:linux64:release:executable'
+checkCpspcMacosDebugExecutable - Check executable 'cpspc:macos:debug:executable'
+checkCpspcMacosReleaseExecutable - Check executable 'cpspc:macos:release:executable'
+checkCpspcWin32DebugExecutable - Check executable 'cpspc:win32:debug:executable'
+checkCpspcWin32ReleaseExecutable - Check executable 'cpspc:win32:release:executable'
+checkCpspcWin64DebugExecutable - Check executable 'cpspc:win64:debug:executable'
+checkCpspcWin64ReleaseExecutable - Check executable 'cpspc:win64:release:executable'
+checkCryptoLinux32DebugSharedLibrary - Check shared library 'crypto:linux32:debug:sharedLibrary'
+checkCryptoLinux32DebugStaticLibrary - Check static library 'crypto:linux32:debug:staticLibrary'
+checkCryptoLinux32ReleaseSharedLibrary - Check shared library 'crypto:linux32:release:sharedLibrary'
+checkCryptoLinux32ReleaseStaticLibrary - Check static library 'crypto:linux32:release:staticLibrary'
+checkCryptoLinux64DebugSharedLibrary - Check shared library 'crypto:linux64:debug:sharedLibrary'
+checkCryptoLinux64DebugStaticLibrary - Check static library 'crypto:linux64:debug:staticLibrary'
+checkCryptoLinux64ReleaseSharedLibrary - Check shared library 'crypto:linux64:release:sharedLibrary'
+checkCryptoLinux64ReleaseStaticLibrary - Check static library 'crypto:linux64:release:staticLibrary'
+checkCryptoMacosDebugSharedLibrary - Check shared library 'crypto:macos:debug:sharedLibrary'
+checkCryptoMacosDebugStaticLibrary - Check static library 'crypto:macos:debug:staticLibrary'
+checkCryptoMacosReleaseSharedLibrary - Check shared library 'crypto:macos:release:sharedLibrary'
+checkCryptoMacosReleaseStaticLibrary - Check static library 'crypto:macos:release:staticLibrary'
+checkCryptoTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'cryptoTestSuite:linux32:debug:cppUnitExe'
+checkCryptoTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'cryptoTestSuite:linux32:release:cppUnitExe'
+checkCryptoTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'cryptoTestSuite:linux64:debug:cppUnitExe'
+checkCryptoTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'cryptoTestSuite:linux64:release:cppUnitExe'
+checkCryptoTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'cryptoTestSuite:macos:debug:cppUnitExe'
+checkCryptoTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'cryptoTestSuite:macos:release:cppUnitExe'
+checkCryptoTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'cryptoTestSuite:win32:debug:cppUnitExe'
+checkCryptoTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'cryptoTestSuite:win32:release:cppUnitExe'
+checkCryptoTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'cryptoTestSuite:win64:debug:cppUnitExe'
+checkCryptoTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'cryptoTestSuite:win64:release:cppUnitExe'
+checkCryptoWin32DebugSemiStaticLibrary - Check semi static library 'crypto:win32:debug:semiStaticLibrary'
+checkCryptoWin32DebugSharedLibrary - Check shared library 'crypto:win32:debug:sharedLibrary'
+checkCryptoWin32DebugStaticLibrary - Check static library 'crypto:win32:debug:staticLibrary'
+checkCryptoWin32ReleaseSemiStaticLibrary - Check semi static library 'crypto:win32:release:semiStaticLibrary'
+checkCryptoWin32ReleaseSharedLibrary - Check shared library 'crypto:win32:release:sharedLibrary'
+checkCryptoWin32ReleaseStaticLibrary - Check static library 'crypto:win32:release:staticLibrary'
+checkCryptoWin64DebugSemiStaticLibrary - Check semi static library 'crypto:win64:debug:semiStaticLibrary'
+checkCryptoWin64DebugSharedLibrary - Check shared library 'crypto:win64:debug:sharedLibrary'
+checkCryptoWin64DebugStaticLibrary - Check static library 'crypto:win64:debug:staticLibrary'
+checkCryptoWin64ReleaseSemiStaticLibrary - Check semi static library 'crypto:win64:release:semiStaticLibrary'
+checkCryptoWin64ReleaseSharedLibrary - Check shared library 'crypto:win64:release:sharedLibrary'
+checkCryptoWin64ReleaseStaticLibrary - Check static library 'crypto:win64:release:staticLibrary'
+checkDataLinux32DebugExecutable - Check executable 'data:linux32:debug:executable'
+checkDataLinux32DebugSharedLibrary - Check shared library 'data:linux32:debug:sharedLibrary'
+checkDataLinux32DebugStaticLibrary - Check static library 'data:linux32:debug:staticLibrary'
+checkDataLinux32ReleaseExecutable - Check executable 'data:linux32:release:executable'
+checkDataLinux32ReleaseSharedLibrary - Check shared library 'data:linux32:release:sharedLibrary'
+checkDataLinux32ReleaseStaticLibrary - Check static library 'data:linux32:release:staticLibrary'
+checkDataLinux64DebugExecutable - Check executable 'data:linux64:debug:executable'
+checkDataLinux64DebugSharedLibrary - Check shared library 'data:linux64:debug:sharedLibrary'
+checkDataLinux64DebugStaticLibrary - Check static library 'data:linux64:debug:staticLibrary'
+checkDataLinux64ReleaseExecutable - Check executable 'data:linux64:release:executable'
+checkDataLinux64ReleaseSharedLibrary - Check shared library 'data:linux64:release:sharedLibrary'
+checkDataLinux64ReleaseStaticLibrary - Check static library 'data:linux64:release:staticLibrary'
+checkDataMacosDebugExecutable - Check executable 'data:macos:debug:executable'
+checkDataMacosDebugSharedLibrary - Check shared library 'data:macos:debug:sharedLibrary'
+checkDataMacosDebugStaticLibrary - Check static library 'data:macos:debug:staticLibrary'
+checkDataMacosReleaseExecutable - Check executable 'data:macos:release:executable'
+checkDataMacosReleaseSharedLibrary - Check shared library 'data:macos:release:sharedLibrary'
+checkDataMacosReleaseStaticLibrary - Check static library 'data:macos:release:staticLibrary'
+checkDataMySQLLinux32DebugSharedLibrary - Check shared library 'dataMySQL:linux32:debug:sharedLibrary'
+checkDataMySQLLinux32DebugStaticLibrary - Check static library 'dataMySQL:linux32:debug:staticLibrary'
+checkDataMySQLLinux32ReleaseSharedLibrary - Check shared library 'dataMySQL:linux32:release:sharedLibrary'
+checkDataMySQLLinux32ReleaseStaticLibrary - Check static library 'dataMySQL:linux32:release:staticLibrary'
+checkDataMySQLLinux64DebugSharedLibrary - Check shared library 'dataMySQL:linux64:debug:sharedLibrary'
+checkDataMySQLLinux64DebugStaticLibrary - Check static library 'dataMySQL:linux64:debug:staticLibrary'
+checkDataMySQLLinux64ReleaseSharedLibrary - Check shared library 'dataMySQL:linux64:release:sharedLibrary'
+checkDataMySQLLinux64ReleaseStaticLibrary - Check static library 'dataMySQL:linux64:release:staticLibrary'
+checkDataMySQLMacosDebugSharedLibrary - Check shared library 'dataMySQL:macos:debug:sharedLibrary'
+checkDataMySQLMacosDebugStaticLibrary - Check static library 'dataMySQL:macos:debug:staticLibrary'
+checkDataMySQLMacosReleaseSharedLibrary - Check shared library 'dataMySQL:macos:release:sharedLibrary'
+checkDataMySQLMacosReleaseStaticLibrary - Check static library 'dataMySQL:macos:release:staticLibrary'
+checkDataMySQLWin32DebugSemiStaticLibrary - Check semi static library 'dataMySQL:win32:debug:semiStaticLibrary'
+checkDataMySQLWin32DebugSharedLibrary - Check shared library 'dataMySQL:win32:debug:sharedLibrary'
+checkDataMySQLWin32DebugStaticLibrary - Check static library 'dataMySQL:win32:debug:staticLibrary'
+checkDataMySQLWin32ReleaseSemiStaticLibrary - Check semi static library 'dataMySQL:win32:release:semiStaticLibrary'
+checkDataMySQLWin32ReleaseSharedLibrary - Check shared library 'dataMySQL:win32:release:sharedLibrary'
+checkDataMySQLWin32ReleaseStaticLibrary - Check static library 'dataMySQL:win32:release:staticLibrary'
+checkDataMySQLWin64DebugSemiStaticLibrary - Check semi static library 'dataMySQL:win64:debug:semiStaticLibrary'
+checkDataMySQLWin64DebugSharedLibrary - Check shared library 'dataMySQL:win64:debug:sharedLibrary'
+checkDataMySQLWin64DebugStaticLibrary - Check static library 'dataMySQL:win64:debug:staticLibrary'
+checkDataMySQLWin64ReleaseSemiStaticLibrary - Check semi static library 'dataMySQL:win64:release:semiStaticLibrary'
+checkDataMySQLWin64ReleaseSharedLibrary - Check shared library 'dataMySQL:win64:release:sharedLibrary'
+checkDataMySQLWin64ReleaseStaticLibrary - Check static library 'dataMySQL:win64:release:staticLibrary'
+checkDataODBCLinux32DebugSharedLibrary - Check shared library 'dataODBC:linux32:debug:sharedLibrary'
+checkDataODBCLinux32DebugStaticLibrary - Check static library 'dataODBC:linux32:debug:staticLibrary'
+checkDataODBCLinux32ReleaseSharedLibrary - Check shared library 'dataODBC:linux32:release:sharedLibrary'
+checkDataODBCLinux32ReleaseStaticLibrary - Check static library 'dataODBC:linux32:release:staticLibrary'
+checkDataODBCLinux64DebugSharedLibrary - Check shared library 'dataODBC:linux64:debug:sharedLibrary'
+checkDataODBCLinux64DebugStaticLibrary - Check static library 'dataODBC:linux64:debug:staticLibrary'
+checkDataODBCLinux64ReleaseSharedLibrary - Check shared library 'dataODBC:linux64:release:sharedLibrary'
+checkDataODBCLinux64ReleaseStaticLibrary - Check static library 'dataODBC:linux64:release:staticLibrary'
+checkDataODBCMacosDebugSharedLibrary - Check shared library 'dataODBC:macos:debug:sharedLibrary'
+checkDataODBCMacosDebugStaticLibrary - Check static library 'dataODBC:macos:debug:staticLibrary'
+checkDataODBCMacosReleaseSharedLibrary - Check shared library 'dataODBC:macos:release:sharedLibrary'
+checkDataODBCMacosReleaseStaticLibrary - Check static library 'dataODBC:macos:release:staticLibrary'
+checkDataODBCWin32DebugSemiStaticLibrary - Check semi static library 'dataODBC:win32:debug:semiStaticLibrary'
+checkDataODBCWin32DebugSharedLibrary - Check shared library 'dataODBC:win32:debug:sharedLibrary'
+checkDataODBCWin32DebugStaticLibrary - Check static library 'dataODBC:win32:debug:staticLibrary'
+checkDataODBCWin32ReleaseSemiStaticLibrary - Check semi static library 'dataODBC:win32:release:semiStaticLibrary'
+checkDataODBCWin32ReleaseSharedLibrary - Check shared library 'dataODBC:win32:release:sharedLibrary'
+checkDataODBCWin32ReleaseStaticLibrary - Check static library 'dataODBC:win32:release:staticLibrary'
+checkDataODBCWin64DebugSemiStaticLibrary - Check semi static library 'dataODBC:win64:debug:semiStaticLibrary'
+checkDataODBCWin64DebugSharedLibrary - Check shared library 'dataODBC:win64:debug:sharedLibrary'
+checkDataODBCWin64DebugStaticLibrary - Check static library 'dataODBC:win64:debug:staticLibrary'
+checkDataODBCWin64ReleaseSemiStaticLibrary - Check semi static library 'dataODBC:win64:release:semiStaticLibrary'
+checkDataODBCWin64ReleaseSharedLibrary - Check shared library 'dataODBC:win64:release:sharedLibrary'
+checkDataODBCWin64ReleaseStaticLibrary - Check static library 'dataODBC:win64:release:staticLibrary'
+checkDataPostgreSQLLinux32DebugSharedLibrary - Check shared library 'dataPostgreSQL:linux32:debug:sharedLibrary'
+checkDataPostgreSQLLinux32DebugStaticLibrary - Check static library 'dataPostgreSQL:linux32:debug:staticLibrary'
+checkDataPostgreSQLLinux32ReleaseSharedLibrary - Check shared library 'dataPostgreSQL:linux32:release:sharedLibrary'
+checkDataPostgreSQLLinux32ReleaseStaticLibrary - Check static library 'dataPostgreSQL:linux32:release:staticLibrary'
+checkDataPostgreSQLLinux64DebugSharedLibrary - Check shared library 'dataPostgreSQL:linux64:debug:sharedLibrary'
+checkDataPostgreSQLLinux64DebugStaticLibrary - Check static library 'dataPostgreSQL:linux64:debug:staticLibrary'
+checkDataPostgreSQLLinux64ReleaseSharedLibrary - Check shared library 'dataPostgreSQL:linux64:release:sharedLibrary'
+checkDataPostgreSQLLinux64ReleaseStaticLibrary - Check static library 'dataPostgreSQL:linux64:release:staticLibrary'
+checkDataPostgreSQLMacosDebugSharedLibrary - Check shared library 'dataPostgreSQL:macos:debug:sharedLibrary'
+checkDataPostgreSQLMacosDebugStaticLibrary - Check static library 'dataPostgreSQL:macos:debug:staticLibrary'
+checkDataPostgreSQLMacosReleaseSharedLibrary - Check shared library 'dataPostgreSQL:macos:release:sharedLibrary'
+checkDataPostgreSQLMacosReleaseStaticLibrary - Check static library 'dataPostgreSQL:macos:release:staticLibrary'
+checkDataPostgreSQLWin32DebugSemiStaticLibrary - Check semi static library 'dataPostgreSQL:win32:debug:semiStaticLibrary'
+checkDataPostgreSQLWin32DebugSharedLibrary - Check shared library 'dataPostgreSQL:win32:debug:sharedLibrary'
+checkDataPostgreSQLWin32DebugStaticLibrary - Check static library 'dataPostgreSQL:win32:debug:staticLibrary'
+checkDataPostgreSQLWin32ReleaseSemiStaticLibrary - Check semi static library 'dataPostgreSQL:win32:release:semiStaticLibrary'
+checkDataPostgreSQLWin32ReleaseSharedLibrary - Check shared library 'dataPostgreSQL:win32:release:sharedLibrary'
+checkDataPostgreSQLWin32ReleaseStaticLibrary - Check static library 'dataPostgreSQL:win32:release:staticLibrary'
+checkDataPostgreSQLWin64DebugSemiStaticLibrary - Check semi static library 'dataPostgreSQL:win64:debug:semiStaticLibrary'
+checkDataPostgreSQLWin64DebugSharedLibrary - Check shared library 'dataPostgreSQL:win64:debug:sharedLibrary'
+checkDataPostgreSQLWin64DebugStaticLibrary - Check static library 'dataPostgreSQL:win64:debug:staticLibrary'
+checkDataPostgreSQLWin64ReleaseSemiStaticLibrary - Check semi static library 'dataPostgreSQL:win64:release:semiStaticLibrary'
+checkDataPostgreSQLWin64ReleaseSharedLibrary - Check shared library 'dataPostgreSQL:win64:release:sharedLibrary'
+checkDataPostgreSQLWin64ReleaseStaticLibrary - Check static library 'dataPostgreSQL:win64:release:staticLibrary'
+checkDataSQLiteLinux32DebugSharedLibrary - Check shared library 'dataSQLite:linux32:debug:sharedLibrary'
+checkDataSQLiteLinux32DebugStaticLibrary - Check static library 'dataSQLite:linux32:debug:staticLibrary'
+checkDataSQLiteLinux32ReleaseSharedLibrary - Check shared library 'dataSQLite:linux32:release:sharedLibrary'
+checkDataSQLiteLinux32ReleaseStaticLibrary - Check static library 'dataSQLite:linux32:release:staticLibrary'
+checkDataSQLiteLinux64DebugSharedLibrary - Check shared library 'dataSQLite:linux64:debug:sharedLibrary'
+checkDataSQLiteLinux64DebugStaticLibrary - Check static library 'dataSQLite:linux64:debug:staticLibrary'
+checkDataSQLiteLinux64ReleaseSharedLibrary - Check shared library 'dataSQLite:linux64:release:sharedLibrary'
+checkDataSQLiteLinux64ReleaseStaticLibrary - Check static library 'dataSQLite:linux64:release:staticLibrary'
+checkDataSQLiteMacosDebugSharedLibrary - Check shared library 'dataSQLite:macos:debug:sharedLibrary'
+checkDataSQLiteMacosDebugStaticLibrary - Check static library 'dataSQLite:macos:debug:staticLibrary'
+checkDataSQLiteMacosReleaseSharedLibrary - Check shared library 'dataSQLite:macos:release:sharedLibrary'
+checkDataSQLiteMacosReleaseStaticLibrary - Check static library 'dataSQLite:macos:release:staticLibrary'
+checkDataSQLiteWin32DebugSemiStaticLibrary - Check semi static library 'dataSQLite:win32:debug:semiStaticLibrary'
+checkDataSQLiteWin32DebugSharedLibrary - Check shared library 'dataSQLite:win32:debug:sharedLibrary'
+checkDataSQLiteWin32DebugStaticLibrary - Check static library 'dataSQLite:win32:debug:staticLibrary'
+checkDataSQLiteWin32ReleaseSemiStaticLibrary - Check semi static library 'dataSQLite:win32:release:semiStaticLibrary'
+checkDataSQLiteWin32ReleaseSharedLibrary - Check shared library 'dataSQLite:win32:release:sharedLibrary'
+checkDataSQLiteWin32ReleaseStaticLibrary - Check static library 'dataSQLite:win32:release:staticLibrary'
+checkDataSQLiteWin64DebugSemiStaticLibrary - Check semi static library 'dataSQLite:win64:debug:semiStaticLibrary'
+checkDataSQLiteWin64DebugSharedLibrary - Check shared library 'dataSQLite:win64:debug:sharedLibrary'
+checkDataSQLiteWin64DebugStaticLibrary - Check static library 'dataSQLite:win64:debug:staticLibrary'
+checkDataSQLiteWin64ReleaseSemiStaticLibrary - Check semi static library 'dataSQLite:win64:release:semiStaticLibrary'
+checkDataSQLiteWin64ReleaseSharedLibrary - Check shared library 'dataSQLite:win64:release:sharedLibrary'
+checkDataSQLiteWin64ReleaseStaticLibrary - Check static library 'dataSQLite:win64:release:staticLibrary'
+checkDataTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'dataTestSuite:linux32:debug:cppUnitExe'
+checkDataTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'dataTestSuite:linux32:release:cppUnitExe'
+checkDataTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'dataTestSuite:linux64:debug:cppUnitExe'
+checkDataTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'dataTestSuite:linux64:release:cppUnitExe'
+checkDataTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'dataTestSuite:macos:debug:cppUnitExe'
+checkDataTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'dataTestSuite:macos:release:cppUnitExe'
+checkDataTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'dataTestSuite:win32:debug:cppUnitExe'
+checkDataTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'dataTestSuite:win32:release:cppUnitExe'
+checkDataTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'dataTestSuite:win64:debug:cppUnitExe'
+checkDataTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'dataTestSuite:win64:release:cppUnitExe'
+checkDataWin32DebugExecutable - Check executable 'data:win32:debug:executable'
+checkDataWin32DebugSemiStaticLibrary - Check semi static library 'data:win32:debug:semiStaticLibrary'
+checkDataWin32DebugSharedLibrary - Check shared library 'data:win32:debug:sharedLibrary'
+checkDataWin32DebugStaticLibrary - Check static library 'data:win32:debug:staticLibrary'
+checkDataWin32ReleaseExecutable - Check executable 'data:win32:release:executable'
+checkDataWin32ReleaseSemiStaticLibrary - Check semi static library 'data:win32:release:semiStaticLibrary'
+checkDataWin32ReleaseSharedLibrary - Check shared library 'data:win32:release:sharedLibrary'
+checkDataWin32ReleaseStaticLibrary - Check static library 'data:win32:release:staticLibrary'
+checkDataWin64DebugExecutable - Check executable 'data:win64:debug:executable'
+checkDataWin64DebugSemiStaticLibrary - Check semi static library 'data:win64:debug:semiStaticLibrary'
+checkDataWin64DebugSharedLibrary - Check shared library 'data:win64:debug:sharedLibrary'
+checkDataWin64DebugStaticLibrary - Check static library 'data:win64:debug:staticLibrary'
+checkDataWin64ReleaseExecutable - Check executable 'data:win64:release:executable'
+checkDataWin64ReleaseSemiStaticLibrary - Check semi static library 'data:win64:release:semiStaticLibrary'
+checkDataWin64ReleaseSharedLibrary - Check shared library 'data:win64:release:sharedLibrary'
+checkDataWin64ReleaseStaticLibrary - Check static library 'data:win64:release:staticLibrary'
+checkDateTimeLinux32DebugExecutable - Check executable 'dateTime:linux32:debug:executable'
+checkDateTimeLinux32ReleaseExecutable - Check executable 'dateTime:linux32:release:executable'
+checkDateTimeLinux64DebugExecutable - Check executable 'dateTime:linux64:debug:executable'
+checkDateTimeLinux64ReleaseExecutable - Check executable 'dateTime:linux64:release:executable'
+checkDateTimeMacosDebugExecutable - Check executable 'dateTime:macos:debug:executable'
+checkDateTimeMacosReleaseExecutable - Check executable 'dateTime:macos:release:executable'
+checkDateTimeWin32DebugExecutable - Check executable 'dateTime:win32:debug:executable'
+checkDateTimeWin32ReleaseExecutable - Check executable 'dateTime:win32:release:executable'
+checkDateTimeWin64DebugExecutable - Check executable 'dateTime:win64:debug:executable'
+checkDateTimeWin64ReleaseExecutable - Check executable 'dateTime:win64:release:executable'
+checkDeflateLinux32DebugExecutable - Check executable 'deflate:linux32:debug:executable'
+checkDeflateLinux32ReleaseExecutable - Check executable 'deflate:linux32:release:executable'
+checkDeflateLinux64DebugExecutable - Check executable 'deflate:linux64:debug:executable'
+checkDeflateLinux64ReleaseExecutable - Check executable 'deflate:linux64:release:executable'
+checkDeflateMacosDebugExecutable - Check executable 'deflate:macos:debug:executable'
+checkDeflateMacosReleaseExecutable - Check executable 'deflate:macos:release:executable'
+checkDeflateWin32DebugExecutable - Check executable 'deflate:win32:debug:executable'
+checkDeflateWin32ReleaseExecutable - Check executable 'deflate:win32:release:executable'
+checkDeflateWin64DebugExecutable - Check executable 'deflate:win64:debug:executable'
+checkDeflateWin64ReleaseExecutable - Check executable 'deflate:win64:release:executable'
+checkDictLinux32DebugExecutable - Check executable 'dict:linux32:debug:executable'
+checkDictLinux32ReleaseExecutable - Check executable 'dict:linux32:release:executable'
+checkDictLinux64DebugExecutable - Check executable 'dict:linux64:debug:executable'
+checkDictLinux64ReleaseExecutable - Check executable 'dict:linux64:release:executable'
+checkDictMacosDebugExecutable - Check executable 'dict:macos:debug:executable'
+checkDictMacosReleaseExecutable - Check executable 'dict:macos:release:executable'
+checkDictWin32DebugExecutable - Check executable 'dict:win32:debug:executable'
+checkDictWin32ReleaseExecutable - Check executable 'dict:win32:release:executable'
+checkDictWin64DebugExecutable - Check executable 'dict:win64:debug:executable'
+checkDictWin64ReleaseExecutable - Check executable 'dict:win64:release:executable'
+checkDirLinux32DebugExecutable - Check executable 'dir:linux32:debug:executable'
+checkDirLinux32ReleaseExecutable - Check executable 'dir:linux32:release:executable'
+checkDirLinux64DebugExecutable - Check executable 'dir:linux64:debug:executable'
+checkDirLinux64ReleaseExecutable - Check executable 'dir:linux64:release:executable'
+checkDirMacosDebugExecutable - Check executable 'dir:macos:debug:executable'
+checkDirMacosReleaseExecutable - Check executable 'dir:macos:release:executable'
+checkDirWin32DebugExecutable - Check executable 'dir:win32:debug:executable'
+checkDirWin32ReleaseExecutable - Check executable 'dir:win32:release:executable'
+checkDirWin64DebugExecutable - Check executable 'dir:win64:debug:executable'
+checkDirWin64ReleaseExecutable - Check executable 'dir:win64:release:executable'
+checkDOMParserLinux32DebugExecutable - Check executable 'dOMParser:linux32:debug:executable'
+checkDOMParserLinux32ReleaseExecutable - Check executable 'dOMParser:linux32:release:executable'
+checkDOMParserLinux64DebugExecutable - Check executable 'dOMParser:linux64:debug:executable'
+checkDOMParserLinux64ReleaseExecutable - Check executable 'dOMParser:linux64:release:executable'
+checkDOMParserMacosDebugExecutable - Check executable 'dOMParser:macos:debug:executable'
+checkDOMParserMacosReleaseExecutable - Check executable 'dOMParser:macos:release:executable'
+checkDOMParserWin32DebugExecutable - Check executable 'dOMParser:win32:debug:executable'
+checkDOMParserWin32ReleaseExecutable - Check executable 'dOMParser:win32:release:executable'
+checkDOMParserWin64DebugExecutable - Check executable 'dOMParser:win64:debug:executable'
+checkDOMParserWin64ReleaseExecutable - Check executable 'dOMParser:win64:release:executable'
+checkDOMWriterLinux32DebugExecutable - Check executable 'dOMWriter:linux32:debug:executable'
+checkDOMWriterLinux32ReleaseExecutable - Check executable 'dOMWriter:linux32:release:executable'
+checkDOMWriterLinux64DebugExecutable - Check executable 'dOMWriter:linux64:debug:executable'
+checkDOMWriterLinux64ReleaseExecutable - Check executable 'dOMWriter:linux64:release:executable'
+checkDOMWriterMacosDebugExecutable - Check executable 'dOMWriter:macos:debug:executable'
+checkDOMWriterMacosReleaseExecutable - Check executable 'dOMWriter:macos:release:executable'
+checkDOMWriterWin32DebugExecutable - Check executable 'dOMWriter:win32:debug:executable'
+checkDOMWriterWin32ReleaseExecutable - Check executable 'dOMWriter:win32:release:executable'
+checkDOMWriterWin64DebugExecutable - Check executable 'dOMWriter:win64:debug:executable'
+checkDOMWriterWin64ReleaseExecutable - Check executable 'dOMWriter:win64:release:executable'
+checkDownloadLinux32DebugExecutable - Check executable 'download:linux32:debug:executable'
+checkDownloadLinux32ReleaseExecutable - Check executable 'download:linux32:release:executable'
+checkDownloadLinux64DebugExecutable - Check executable 'download:linux64:debug:executable'
+checkDownloadLinux64ReleaseExecutable - Check executable 'download:linux64:release:executable'
+checkDownloadMacosDebugExecutable - Check executable 'download:macos:debug:executable'
+checkDownloadMacosReleaseExecutable - Check executable 'download:macos:release:executable'
+checkDownloadWin32DebugExecutable - Check executable 'download:win32:debug:executable'
+checkDownloadWin32ReleaseExecutable - Check executable 'download:win32:release:executable'
+checkDownloadWin64DebugExecutable - Check executable 'download:win64:debug:executable'
+checkDownloadWin64ReleaseExecutable - Check executable 'download:win64:release:executable'
+checkEchoServerLinux32DebugExecutable - Check executable 'echoServer:linux32:debug:executable'
+checkEchoServerLinux32ReleaseExecutable - Check executable 'echoServer:linux32:release:executable'
+checkEchoServerLinux64DebugExecutable - Check executable 'echoServer:linux64:debug:executable'
+checkEchoServerLinux64ReleaseExecutable - Check executable 'echoServer:linux64:release:executable'
+checkEchoServerMacosDebugExecutable - Check executable 'echoServer:macos:debug:executable'
+checkEchoServerMacosReleaseExecutable - Check executable 'echoServer:macos:release:executable'
+checkEchoServerWin32DebugExecutable - Check executable 'echoServer:win32:debug:executable'
+checkEchoServerWin32ReleaseExecutable - Check executable 'echoServer:win32:release:executable'
+checkEchoServerWin64DebugExecutable - Check executable 'echoServer:win64:debug:executable'
+checkEchoServerWin64ReleaseExecutable - Check executable 'echoServer:win64:release:executable'
+checkEncodingsLinux32DebugSharedLibrary - Check shared library 'encodings:linux32:debug:sharedLibrary'
+checkEncodingsLinux32DebugStaticLibrary - Check static library 'encodings:linux32:debug:staticLibrary'
+checkEncodingsLinux32ReleaseSharedLibrary - Check shared library 'encodings:linux32:release:sharedLibrary'
+checkEncodingsLinux32ReleaseStaticLibrary - Check static library 'encodings:linux32:release:staticLibrary'
+checkEncodingsLinux64DebugSharedLibrary - Check shared library 'encodings:linux64:debug:sharedLibrary'
+checkEncodingsLinux64DebugStaticLibrary - Check static library 'encodings:linux64:debug:staticLibrary'
+checkEncodingsLinux64ReleaseSharedLibrary - Check shared library 'encodings:linux64:release:sharedLibrary'
+checkEncodingsLinux64ReleaseStaticLibrary - Check static library 'encodings:linux64:release:staticLibrary'
+checkEncodingsMacosDebugSharedLibrary - Check shared library 'encodings:macos:debug:sharedLibrary'
+checkEncodingsMacosDebugStaticLibrary - Check static library 'encodings:macos:debug:staticLibrary'
+checkEncodingsMacosReleaseSharedLibrary - Check shared library 'encodings:macos:release:sharedLibrary'
+checkEncodingsMacosReleaseStaticLibrary - Check static library 'encodings:macos:release:staticLibrary'
+checkEncodingsTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'encodingsTestSuite:linux32:debug:cppUnitExe'
+checkEncodingsTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'encodingsTestSuite:linux32:release:cppUnitExe'
+checkEncodingsTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'encodingsTestSuite:linux64:debug:cppUnitExe'
+checkEncodingsTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'encodingsTestSuite:linux64:release:cppUnitExe'
+checkEncodingsTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'encodingsTestSuite:macos:debug:cppUnitExe'
+checkEncodingsTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'encodingsTestSuite:macos:release:cppUnitExe'
+checkEncodingsTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'encodingsTestSuite:win32:debug:cppUnitExe'
+checkEncodingsTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'encodingsTestSuite:win32:release:cppUnitExe'
+checkEncodingsTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'encodingsTestSuite:win64:debug:cppUnitExe'
+checkEncodingsTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'encodingsTestSuite:win64:release:cppUnitExe'
+checkEncodingsWin32DebugSemiStaticLibrary - Check semi static library 'encodings:win32:debug:semiStaticLibrary'
+checkEncodingsWin32DebugSharedLibrary - Check shared library 'encodings:win32:debug:sharedLibrary'
+checkEncodingsWin32DebugStaticLibrary - Check static library 'encodings:win32:debug:staticLibrary'
+checkEncodingsWin32ReleaseSemiStaticLibrary - Check semi static library 'encodings:win32:release:semiStaticLibrary'
+checkEncodingsWin32ReleaseSharedLibrary - Check shared library 'encodings:win32:release:sharedLibrary'
+checkEncodingsWin32ReleaseStaticLibrary - Check static library 'encodings:win32:release:staticLibrary'
+checkEncodingsWin64DebugSemiStaticLibrary - Check semi static library 'encodings:win64:debug:semiStaticLibrary'
+checkEncodingsWin64DebugSharedLibrary - Check shared library 'encodings:win64:debug:sharedLibrary'
+checkEncodingsWin64DebugStaticLibrary - Check static library 'encodings:win64:debug:staticLibrary'
+checkEncodingsWin64ReleaseSemiStaticLibrary - Check semi static library 'encodings:win64:release:semiStaticLibrary'
+checkEncodingsWin64ReleaseSharedLibrary - Check shared library 'encodings:win64:release:sharedLibrary'
+checkEncodingsWin64ReleaseStaticLibrary - Check static library 'encodings:win64:release:staticLibrary'
+checkFile2pageLinux32DebugExecutable - Check executable 'file2page:linux32:debug:executable'
+checkFile2pageLinux32ReleaseExecutable - Check executable 'file2page:linux32:release:executable'
+checkFile2pageLinux64DebugExecutable - Check executable 'file2page:linux64:debug:executable'
+checkFile2pageLinux64ReleaseExecutable - Check executable 'file2page:linux64:release:executable'
+checkFile2pageMacosDebugExecutable - Check executable 'file2page:macos:debug:executable'
+checkFile2pageMacosReleaseExecutable - Check executable 'file2page:macos:release:executable'
+checkFile2pageWin32DebugExecutable - Check executable 'file2page:win32:debug:executable'
+checkFile2pageWin32ReleaseExecutable - Check executable 'file2page:win32:release:executable'
+checkFile2pageWin64DebugExecutable - Check executable 'file2page:win64:debug:executable'
+checkFile2pageWin64ReleaseExecutable - Check executable 'file2page:win64:release:executable'
+checkFoundationLinux32DebugSharedLibrary - Check shared library 'foundation:linux32:debug:sharedLibrary'
+checkFoundationLinux32DebugStaticLibrary - Check static library 'foundation:linux32:debug:staticLibrary'
+checkFoundationLinux32ReleaseSharedLibrary - Check shared library 'foundation:linux32:release:sharedLibrary'
+checkFoundationLinux32ReleaseStaticLibrary - Check static library 'foundation:linux32:release:staticLibrary'
+checkFoundationLinux64DebugSharedLibrary - Check shared library 'foundation:linux64:debug:sharedLibrary'
+checkFoundationLinux64DebugStaticLibrary - Check static library 'foundation:linux64:debug:staticLibrary'
+checkFoundationLinux64ReleaseSharedLibrary - Check shared library 'foundation:linux64:release:sharedLibrary'
+checkFoundationLinux64ReleaseStaticLibrary - Check static library 'foundation:linux64:release:staticLibrary'
+checkFoundationMacosDebugSharedLibrary - Check shared library 'foundation:macos:debug:sharedLibrary'
+checkFoundationMacosDebugStaticLibrary - Check static library 'foundation:macos:debug:staticLibrary'
+checkFoundationMacosReleaseSharedLibrary - Check shared library 'foundation:macos:release:sharedLibrary'
+checkFoundationMacosReleaseStaticLibrary - Check static library 'foundation:macos:release:staticLibrary'
+checkFoundationTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'foundationTestSuite:linux32:debug:cppUnitExe'
+checkFoundationTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'foundationTestSuite:linux32:release:cppUnitExe'
+checkFoundationTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'foundationTestSuite:linux64:debug:cppUnitExe'
+checkFoundationTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'foundationTestSuite:linux64:release:cppUnitExe'
+checkFoundationTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'foundationTestSuite:macos:debug:cppUnitExe'
+checkFoundationTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'foundationTestSuite:macos:release:cppUnitExe'
+checkFoundationTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'foundationTestSuite:win32:debug:cppUnitExe'
+checkFoundationTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'foundationTestSuite:win32:release:cppUnitExe'
+checkFoundationTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'foundationTestSuite:win64:debug:cppUnitExe'
+checkFoundationTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'foundationTestSuite:win64:release:cppUnitExe'
+checkFoundationWin32DebugSemiStaticLibrary - Check semi static library 'foundation:win32:debug:semiStaticLibrary'
+checkFoundationWin32DebugSharedLibrary - Check shared library 'foundation:win32:debug:sharedLibrary'
+checkFoundationWin32DebugStaticLibrary - Check static library 'foundation:win32:debug:staticLibrary'
+checkFoundationWin32ReleaseSemiStaticLibrary - Check semi static library 'foundation:win32:release:semiStaticLibrary'
+checkFoundationWin32ReleaseSharedLibrary - Check shared library 'foundation:win32:release:sharedLibrary'
+checkFoundationWin32ReleaseStaticLibrary - Check static library 'foundation:win32:release:staticLibrary'
+checkFoundationWin64DebugSemiStaticLibrary - Check semi static library 'foundation:win64:debug:semiStaticLibrary'
+checkFoundationWin64DebugSharedLibrary - Check shared library 'foundation:win64:debug:sharedLibrary'
+checkFoundationWin64DebugStaticLibrary - Check static library 'foundation:win64:debug:staticLibrary'
+checkFoundationWin64ReleaseSemiStaticLibrary - Check semi static library 'foundation:win64:release:semiStaticLibrary'
+checkFoundationWin64ReleaseSharedLibrary - Check shared library 'foundation:win64:release:sharedLibrary'
+checkFoundationWin64ReleaseStaticLibrary - Check static library 'foundation:win64:release:staticLibrary'
+checkGrepLinux32DebugExecutable - Check executable 'grep:linux32:debug:executable'
+checkGrepLinux32ReleaseExecutable - Check executable 'grep:linux32:release:executable'
+checkGrepLinux64DebugExecutable - Check executable 'grep:linux64:debug:executable'
+checkGrepLinux64ReleaseExecutable - Check executable 'grep:linux64:release:executable'
+checkGrepMacosDebugExecutable - Check executable 'grep:macos:debug:executable'
+checkGrepMacosReleaseExecutable - Check executable 'grep:macos:release:executable'
+checkGrepWin32DebugExecutable - Check executable 'grep:win32:debug:executable'
+checkGrepWin32ReleaseExecutable - Check executable 'grep:win32:release:executable'
+checkGrepWin64DebugExecutable - Check executable 'grep:win64:debug:executable'
+checkGrepWin64ReleaseExecutable - Check executable 'grep:win64:release:executable'
+checkHmacmd5Linux32DebugExecutable - Check executable 'hmacmd5:linux32:debug:executable'
+checkHmacmd5Linux32ReleaseExecutable - Check executable 'hmacmd5:linux32:release:executable'
+checkHmacmd5Linux64DebugExecutable - Check executable 'hmacmd5:linux64:debug:executable'
+checkHmacmd5Linux64ReleaseExecutable - Check executable 'hmacmd5:linux64:release:executable'
+checkHmacmd5MacosDebugExecutable - Check executable 'hmacmd5:macos:debug:executable'
+checkHmacmd5MacosReleaseExecutable - Check executable 'hmacmd5:macos:release:executable'
+checkHmacmd5Win32DebugExecutable - Check executable 'hmacmd5:win32:debug:executable'
+checkHmacmd5Win32ReleaseExecutable - Check executable 'hmacmd5:win32:release:executable'
+checkHmacmd5Win64DebugExecutable - Check executable 'hmacmd5:win64:debug:executable'
+checkHmacmd5Win64ReleaseExecutable - Check executable 'hmacmd5:win64:release:executable'
+checkHTTPFormServerLinux32DebugExecutable - Check executable 'hTTPFormServer:linux32:debug:executable'
+checkHTTPFormServerLinux32ReleaseExecutable - Check executable 'hTTPFormServer:linux32:release:executable'
+checkHTTPFormServerLinux64DebugExecutable - Check executable 'hTTPFormServer:linux64:debug:executable'
+checkHTTPFormServerLinux64ReleaseExecutable - Check executable 'hTTPFormServer:linux64:release:executable'
+checkHTTPFormServerMacosDebugExecutable - Check executable 'hTTPFormServer:macos:debug:executable'
+checkHTTPFormServerMacosReleaseExecutable - Check executable 'hTTPFormServer:macos:release:executable'
+checkHTTPFormServerWin32DebugExecutable - Check executable 'hTTPFormServer:win32:debug:executable'
+checkHTTPFormServerWin32ReleaseExecutable - Check executable 'hTTPFormServer:win32:release:executable'
+checkHTTPFormServerWin64DebugExecutable - Check executable 'hTTPFormServer:win64:debug:executable'
+checkHTTPFormServerWin64ReleaseExecutable - Check executable 'hTTPFormServer:win64:release:executable'
+checkHttpgetLinux32DebugExecutable - Check executable 'httpget:linux32:debug:executable'
+checkHttpgetLinux32ReleaseExecutable - Check executable 'httpget:linux32:release:executable'
+checkHttpgetLinux64DebugExecutable - Check executable 'httpget:linux64:debug:executable'
+checkHttpgetLinux64ReleaseExecutable - Check executable 'httpget:linux64:release:executable'
+checkHttpgetMacosDebugExecutable - Check executable 'httpget:macos:debug:executable'
+checkHttpgetMacosReleaseExecutable - Check executable 'httpget:macos:release:executable'
+checkHttpgetWin32DebugExecutable - Check executable 'httpget:win32:debug:executable'
+checkHttpgetWin32ReleaseExecutable - Check executable 'httpget:win32:release:executable'
+checkHttpgetWin64DebugExecutable - Check executable 'httpget:win64:debug:executable'
+checkHttpgetWin64ReleaseExecutable - Check executable 'httpget:win64:release:executable'
+checkHTTPLoadTestLinux32DebugExecutable - Check executable 'hTTPLoadTest:linux32:debug:executable'
+checkHTTPLoadTestLinux32ReleaseExecutable - Check executable 'hTTPLoadTest:linux32:release:executable'
+checkHTTPLoadTestLinux64DebugExecutable - Check executable 'hTTPLoadTest:linux64:debug:executable'
+checkHTTPLoadTestLinux64ReleaseExecutable - Check executable 'hTTPLoadTest:linux64:release:executable'
+checkHTTPLoadTestMacosDebugExecutable - Check executable 'hTTPLoadTest:macos:debug:executable'
+checkHTTPLoadTestMacosReleaseExecutable - Check executable 'hTTPLoadTest:macos:release:executable'
+checkHTTPLoadTestWin32DebugExecutable - Check executable 'hTTPLoadTest:win32:debug:executable'
+checkHTTPLoadTestWin32ReleaseExecutable - Check executable 'hTTPLoadTest:win32:release:executable'
+checkHTTPLoadTestWin64DebugExecutable - Check executable 'hTTPLoadTest:win64:debug:executable'
+checkHTTPLoadTestWin64ReleaseExecutable - Check executable 'hTTPLoadTest:win64:release:executable'
+checkHTTPSTimeServerLinux32DebugExecutable - Check executable 'hTTPSTimeServer:linux32:debug:executable'
+checkHTTPSTimeServerLinux32ReleaseExecutable - Check executable 'hTTPSTimeServer:linux32:release:executable'
+checkHTTPSTimeServerLinux64DebugExecutable - Check executable 'hTTPSTimeServer:linux64:debug:executable'
+checkHTTPSTimeServerLinux64ReleaseExecutable - Check executable 'hTTPSTimeServer:linux64:release:executable'
+checkHTTPSTimeServerMacosDebugExecutable - Check executable 'hTTPSTimeServer:macos:debug:executable'
+checkHTTPSTimeServerMacosReleaseExecutable - Check executable 'hTTPSTimeServer:macos:release:executable'
+checkHTTPSTimeServerWin32DebugExecutable - Check executable 'hTTPSTimeServer:win32:debug:executable'
+checkHTTPSTimeServerWin32ReleaseExecutable - Check executable 'hTTPSTimeServer:win32:release:executable'
+checkHTTPSTimeServerWin64DebugExecutable - Check executable 'hTTPSTimeServer:win64:debug:executable'
+checkHTTPSTimeServerWin64ReleaseExecutable - Check executable 'hTTPSTimeServer:win64:release:executable'
+checkHTTPTimeServerLinux32DebugExecutable - Check executable 'hTTPTimeServer:linux32:debug:executable'
+checkHTTPTimeServerLinux32ReleaseExecutable - Check executable 'hTTPTimeServer:linux32:release:executable'
+checkHTTPTimeServerLinux64DebugExecutable - Check executable 'hTTPTimeServer:linux64:debug:executable'
+checkHTTPTimeServerLinux64ReleaseExecutable - Check executable 'hTTPTimeServer:linux64:release:executable'
+checkHTTPTimeServerMacosDebugExecutable - Check executable 'hTTPTimeServer:macos:debug:executable'
+checkHTTPTimeServerMacosReleaseExecutable - Check executable 'hTTPTimeServer:macos:release:executable'
+checkHTTPTimeServerWin32DebugExecutable - Check executable 'hTTPTimeServer:win32:debug:executable'
+checkHTTPTimeServerWin32ReleaseExecutable - Check executable 'hTTPTimeServer:win32:release:executable'
+checkHTTPTimeServerWin64DebugExecutable - Check executable 'hTTPTimeServer:win64:debug:executable'
+checkHTTPTimeServerWin64ReleaseExecutable - Check executable 'hTTPTimeServer:win64:release:executable'
+checkIfconfigLinux32DebugExecutable - Check executable 'ifconfig:linux32:debug:executable'
+checkIfconfigLinux32ReleaseExecutable - Check executable 'ifconfig:linux32:release:executable'
+checkIfconfigLinux64DebugExecutable - Check executable 'ifconfig:linux64:debug:executable'
+checkIfconfigLinux64ReleaseExecutable - Check executable 'ifconfig:linux64:release:executable'
+checkIfconfigMacosDebugExecutable - Check executable 'ifconfig:macos:debug:executable'
+checkIfconfigMacosReleaseExecutable - Check executable 'ifconfig:macos:release:executable'
+checkIfconfigWin32DebugExecutable - Check executable 'ifconfig:win32:debug:executable'
+checkIfconfigWin32ReleaseExecutable - Check executable 'ifconfig:win32:release:executable'
+checkIfconfigWin64DebugExecutable - Check executable 'ifconfig:win64:debug:executable'
+checkIfconfigWin64ReleaseExecutable - Check executable 'ifconfig:win64:release:executable'
+checkImageLinux32DebugExecutable - Check executable 'image:linux32:debug:executable'
+checkImageLinux32ReleaseExecutable - Check executable 'image:linux32:release:executable'
+checkImageLinux64DebugExecutable - Check executable 'image:linux64:debug:executable'
+checkImageLinux64ReleaseExecutable - Check executable 'image:linux64:release:executable'
+checkImageMacosDebugExecutable - Check executable 'image:macos:debug:executable'
+checkImageMacosReleaseExecutable - Check executable 'image:macos:release:executable'
+checkImageWin32DebugExecutable - Check executable 'image:win32:debug:executable'
+checkImageWin32ReleaseExecutable - Check executable 'image:win32:release:executable'
+checkImageWin64DebugExecutable - Check executable 'image:win64:debug:executable'
+checkImageWin64ReleaseExecutable - Check executable 'image:win64:release:executable'
+checkInflateLinux32DebugExecutable - Check executable 'inflate:linux32:debug:executable'
+checkInflateLinux32ReleaseExecutable - Check executable 'inflate:linux32:release:executable'
+checkInflateLinux64DebugExecutable - Check executable 'inflate:linux64:debug:executable'
+checkInflateLinux64ReleaseExecutable - Check executable 'inflate:linux64:release:executable'
+checkInflateMacosDebugExecutable - Check executable 'inflate:macos:debug:executable'
+checkInflateMacosReleaseExecutable - Check executable 'inflate:macos:release:executable'
+checkInflateWin32DebugExecutable - Check executable 'inflate:win32:debug:executable'
+checkInflateWin32ReleaseExecutable - Check executable 'inflate:win32:release:executable'
+checkInflateWin64DebugExecutable - Check executable 'inflate:win64:debug:executable'
+checkInflateWin64ReleaseExecutable - Check executable 'inflate:win64:release:executable'
+checkJSONLinux32DebugSharedLibrary - Check shared library 'jSON:linux32:debug:sharedLibrary'
+checkJSONLinux32DebugStaticLibrary - Check static library 'jSON:linux32:debug:staticLibrary'
+checkJSONLinux32ReleaseSharedLibrary - Check shared library 'jSON:linux32:release:sharedLibrary'
+checkJSONLinux32ReleaseStaticLibrary - Check static library 'jSON:linux32:release:staticLibrary'
+checkJSONLinux64DebugSharedLibrary - Check shared library 'jSON:linux64:debug:sharedLibrary'
+checkJSONLinux64DebugStaticLibrary - Check static library 'jSON:linux64:debug:staticLibrary'
+checkJSONLinux64ReleaseSharedLibrary - Check shared library 'jSON:linux64:release:sharedLibrary'
+checkJSONLinux64ReleaseStaticLibrary - Check static library 'jSON:linux64:release:staticLibrary'
+checkJSONMacosDebugSharedLibrary - Check shared library 'jSON:macos:debug:sharedLibrary'
+checkJSONMacosDebugStaticLibrary - Check static library 'jSON:macos:debug:staticLibrary'
+checkJSONMacosReleaseSharedLibrary - Check shared library 'jSON:macos:release:sharedLibrary'
+checkJSONMacosReleaseStaticLibrary - Check static library 'jSON:macos:release:staticLibrary'
+checkJSONTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'jSONTestSuite:linux32:debug:cppUnitExe'
+checkJSONTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'jSONTestSuite:linux32:release:cppUnitExe'
+checkJSONTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'jSONTestSuite:linux64:debug:cppUnitExe'
+checkJSONTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'jSONTestSuite:linux64:release:cppUnitExe'
+checkJSONTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'jSONTestSuite:macos:debug:cppUnitExe'
+checkJSONTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'jSONTestSuite:macos:release:cppUnitExe'
+checkJSONTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'jSONTestSuite:win32:debug:cppUnitExe'
+checkJSONTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'jSONTestSuite:win32:release:cppUnitExe'
+checkJSONTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'jSONTestSuite:win64:debug:cppUnitExe'
+checkJSONTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'jSONTestSuite:win64:release:cppUnitExe'
+checkJSONWin32DebugSemiStaticLibrary - Check semi static library 'jSON:win32:debug:semiStaticLibrary'
+checkJSONWin32DebugSharedLibrary - Check shared library 'jSON:win32:debug:sharedLibrary'
+checkJSONWin32DebugStaticLibrary - Check static library 'jSON:win32:debug:staticLibrary'
+checkJSONWin32ReleaseSemiStaticLibrary - Check semi static library 'jSON:win32:release:semiStaticLibrary'
+checkJSONWin32ReleaseSharedLibrary - Check shared library 'jSON:win32:release:sharedLibrary'
+checkJSONWin32ReleaseStaticLibrary - Check static library 'jSON:win32:release:staticLibrary'
+checkJSONWin64DebugSemiStaticLibrary - Check semi static library 'jSON:win64:debug:semiStaticLibrary'
+checkJSONWin64DebugSharedLibrary - Check shared library 'jSON:win64:debug:sharedLibrary'
+checkJSONWin64DebugStaticLibrary - Check static library 'jSON:win64:debug:staticLibrary'
+checkJSONWin64ReleaseSemiStaticLibrary - Check semi static library 'jSON:win64:release:semiStaticLibrary'
+checkJSONWin64ReleaseSharedLibrary - Check shared library 'jSON:win64:release:sharedLibrary'
+checkJSONWin64ReleaseStaticLibrary - Check static library 'jSON:win64:release:staticLibrary'
+checkLineEndingConverterLinux32DebugExecutable - Check executable 'lineEndingConverter:linux32:debug:executable'
+checkLineEndingConverterLinux32ReleaseExecutable - Check executable 'lineEndingConverter:linux32:release:executable'
+checkLineEndingConverterLinux64DebugExecutable - Check executable 'lineEndingConverter:linux64:debug:executable'
+checkLineEndingConverterLinux64ReleaseExecutable - Check executable 'lineEndingConverter:linux64:release:executable'
+checkLineEndingConverterMacosDebugExecutable - Check executable 'lineEndingConverter:macos:debug:executable'
+checkLineEndingConverterMacosReleaseExecutable - Check executable 'lineEndingConverter:macos:release:executable'
+checkLineEndingConverterWin32DebugExecutable - Check executable 'lineEndingConverter:win32:debug:executable'
+checkLineEndingConverterWin32ReleaseExecutable - Check executable 'lineEndingConverter:win32:release:executable'
+checkLineEndingConverterWin64DebugExecutable - Check executable 'lineEndingConverter:win64:debug:executable'
+checkLineEndingConverterWin64ReleaseExecutable - Check executable 'lineEndingConverter:win64:release:executable'
+checkLoggerLinux32DebugExecutable - Check executable 'logger:linux32:debug:executable'
+checkLoggerLinux32ReleaseExecutable - Check executable 'logger:linux32:release:executable'
+checkLoggerLinux64DebugExecutable - Check executable 'logger:linux64:debug:executable'
+checkLoggerLinux64ReleaseExecutable - Check executable 'logger:linux64:release:executable'
+checkLoggerMacosDebugExecutable - Check executable 'logger:macos:debug:executable'
+checkLoggerMacosReleaseExecutable - Check executable 'logger:macos:release:executable'
+checkLoggerWin32DebugExecutable - Check executable 'logger:win32:debug:executable'
+checkLoggerWin32ReleaseExecutable - Check executable 'logger:win32:release:executable'
+checkLoggerWin64DebugExecutable - Check executable 'logger:win64:debug:executable'
+checkLoggerWin64ReleaseExecutable - Check executable 'logger:win64:release:executable'
+checkLogRotationLinux32DebugExecutable - Check executable 'logRotation:linux32:debug:executable'
+checkLogRotationLinux32ReleaseExecutable - Check executable 'logRotation:linux32:release:executable'
+checkLogRotationLinux64DebugExecutable - Check executable 'logRotation:linux64:debug:executable'
+checkLogRotationLinux64ReleaseExecutable - Check executable 'logRotation:linux64:release:executable'
+checkLogRotationMacosDebugExecutable - Check executable 'logRotation:macos:debug:executable'
+checkLogRotationMacosReleaseExecutable - Check executable 'logRotation:macos:release:executable'
+checkLogRotationWin32DebugExecutable - Check executable 'logRotation:win32:debug:executable'
+checkLogRotationWin32ReleaseExecutable - Check executable 'logRotation:win32:release:executable'
+checkLogRotationWin64DebugExecutable - Check executable 'logRotation:win64:debug:executable'
+checkLogRotationWin64ReleaseExecutable - Check executable 'logRotation:win64:release:executable'
+checkMailLinux32DebugExecutable - Check executable 'mail:linux32:debug:executable'
+checkMailLinux32ReleaseExecutable - Check executable 'mail:linux32:release:executable'
+checkMailLinux64DebugExecutable - Check executable 'mail:linux64:debug:executable'
+checkMailLinux64ReleaseExecutable - Check executable 'mail:linux64:release:executable'
+checkMailMacosDebugExecutable - Check executable 'mail:macos:debug:executable'
+checkMailMacosReleaseExecutable - Check executable 'mail:macos:release:executable'
+checkMailWin32DebugExecutable - Check executable 'mail:win32:debug:executable'
+checkMailWin32ReleaseExecutable - Check executable 'mail:win32:release:executable'
+checkMailWin64DebugExecutable - Check executable 'mail:win64:debug:executable'
+checkMailWin64ReleaseExecutable - Check executable 'mail:win64:release:executable'
+checkMd5Linux32DebugExecutable - Check executable 'md5:linux32:debug:executable'
+checkMd5Linux32ReleaseExecutable - Check executable 'md5:linux32:release:executable'
+checkMd5Linux64DebugExecutable - Check executable 'md5:linux64:debug:executable'
+checkMd5Linux64ReleaseExecutable - Check executable 'md5:linux64:release:executable'
+checkMd5MacosDebugExecutable - Check executable 'md5:macos:debug:executable'
+checkMd5MacosReleaseExecutable - Check executable 'md5:macos:release:executable'
+checkMd5Win32DebugExecutable - Check executable 'md5:win32:debug:executable'
+checkMd5Win32ReleaseExecutable - Check executable 'md5:win32:release:executable'
+checkMd5Win64DebugExecutable - Check executable 'md5:win64:debug:executable'
+checkMd5Win64ReleaseExecutable - Check executable 'md5:win64:release:executable'
+checkMongoDBLinux32DebugSharedLibrary - Check shared library 'mongoDB:linux32:debug:sharedLibrary'
+checkMongoDBLinux32DebugStaticLibrary - Check static library 'mongoDB:linux32:debug:staticLibrary'
+checkMongoDBLinux32ReleaseSharedLibrary - Check shared library 'mongoDB:linux32:release:sharedLibrary'
+checkMongoDBLinux32ReleaseStaticLibrary - Check static library 'mongoDB:linux32:release:staticLibrary'
+checkMongoDBLinux64DebugSharedLibrary - Check shared library 'mongoDB:linux64:debug:sharedLibrary'
+checkMongoDBLinux64DebugStaticLibrary - Check static library 'mongoDB:linux64:debug:staticLibrary'
+checkMongoDBLinux64ReleaseSharedLibrary - Check shared library 'mongoDB:linux64:release:sharedLibrary'
+checkMongoDBLinux64ReleaseStaticLibrary - Check static library 'mongoDB:linux64:release:staticLibrary'
+checkMongoDBMacosDebugSharedLibrary - Check shared library 'mongoDB:macos:debug:sharedLibrary'
+checkMongoDBMacosDebugStaticLibrary - Check static library 'mongoDB:macos:debug:staticLibrary'
+checkMongoDBMacosReleaseSharedLibrary - Check shared library 'mongoDB:macos:release:sharedLibrary'
+checkMongoDBMacosReleaseStaticLibrary - Check static library 'mongoDB:macos:release:staticLibrary'
+checkMongoDBTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'mongoDBTestSuite:linux32:debug:cppUnitExe'
+checkMongoDBTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'mongoDBTestSuite:linux32:release:cppUnitExe'
+checkMongoDBTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'mongoDBTestSuite:linux64:debug:cppUnitExe'
+checkMongoDBTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'mongoDBTestSuite:linux64:release:cppUnitExe'
+checkMongoDBTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'mongoDBTestSuite:macos:debug:cppUnitExe'
+checkMongoDBTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'mongoDBTestSuite:macos:release:cppUnitExe'
+checkMongoDBTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'mongoDBTestSuite:win32:debug:cppUnitExe'
+checkMongoDBTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'mongoDBTestSuite:win32:release:cppUnitExe'
+checkMongoDBTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'mongoDBTestSuite:win64:debug:cppUnitExe'
+checkMongoDBTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'mongoDBTestSuite:win64:release:cppUnitExe'
+checkMongoDBWin32DebugSemiStaticLibrary - Check semi static library 'mongoDB:win32:debug:semiStaticLibrary'
+checkMongoDBWin32DebugSharedLibrary - Check shared library 'mongoDB:win32:debug:sharedLibrary'
+checkMongoDBWin32DebugStaticLibrary - Check static library 'mongoDB:win32:debug:staticLibrary'
+checkMongoDBWin32ReleaseSemiStaticLibrary - Check semi static library 'mongoDB:win32:release:semiStaticLibrary'
+checkMongoDBWin32ReleaseSharedLibrary - Check shared library 'mongoDB:win32:release:sharedLibrary'
+checkMongoDBWin32ReleaseStaticLibrary - Check static library 'mongoDB:win32:release:staticLibrary'
+checkMongoDBWin64DebugSemiStaticLibrary - Check semi static library 'mongoDB:win64:debug:semiStaticLibrary'
+checkMongoDBWin64DebugSharedLibrary - Check shared library 'mongoDB:win64:debug:sharedLibrary'
+checkMongoDBWin64DebugStaticLibrary - Check static library 'mongoDB:win64:debug:staticLibrary'
+checkMongoDBWin64ReleaseSemiStaticLibrary - Check semi static library 'mongoDB:win64:release:semiStaticLibrary'
+checkMongoDBWin64ReleaseSharedLibrary - Check shared library 'mongoDB:win64:release:sharedLibrary'
+checkMongoDBWin64ReleaseStaticLibrary - Check static library 'mongoDB:win64:release:staticLibrary'
+checkMySQLTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'mySQLTestSuite:linux32:debug:cppUnitExe'
+checkMySQLTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'mySQLTestSuite:linux32:release:cppUnitExe'
+checkMySQLTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'mySQLTestSuite:linux64:debug:cppUnitExe'
+checkMySQLTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'mySQLTestSuite:linux64:release:cppUnitExe'
+checkMySQLTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'mySQLTestSuite:macos:debug:cppUnitExe'
+checkMySQLTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'mySQLTestSuite:macos:release:cppUnitExe'
+checkMySQLTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'mySQLTestSuite:win32:debug:cppUnitExe'
+checkMySQLTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'mySQLTestSuite:win32:release:cppUnitExe'
+checkMySQLTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'mySQLTestSuite:win64:debug:cppUnitExe'
+checkMySQLTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'mySQLTestSuite:win64:release:cppUnitExe'
+checkNetLinux32DebugSharedLibrary - Check shared library 'net:linux32:debug:sharedLibrary'
+checkNetLinux32DebugStaticLibrary - Check static library 'net:linux32:debug:staticLibrary'
+checkNetLinux32ReleaseSharedLibrary - Check shared library 'net:linux32:release:sharedLibrary'
+checkNetLinux32ReleaseStaticLibrary - Check static library 'net:linux32:release:staticLibrary'
+checkNetLinux64DebugSharedLibrary - Check shared library 'net:linux64:debug:sharedLibrary'
+checkNetLinux64DebugStaticLibrary - Check static library 'net:linux64:debug:staticLibrary'
+checkNetLinux64ReleaseSharedLibrary - Check shared library 'net:linux64:release:sharedLibrary'
+checkNetLinux64ReleaseStaticLibrary - Check static library 'net:linux64:release:staticLibrary'
+checkNetMacosDebugSharedLibrary - Check shared library 'net:macos:debug:sharedLibrary'
+checkNetMacosDebugStaticLibrary - Check static library 'net:macos:debug:staticLibrary'
+checkNetMacosReleaseSharedLibrary - Check shared library 'net:macos:release:sharedLibrary'
+checkNetMacosReleaseStaticLibrary - Check static library 'net:macos:release:staticLibrary'
+checkNetSSLLinux32DebugSharedLibrary - Check shared library 'netSSL:linux32:debug:sharedLibrary'
+checkNetSSLLinux32DebugStaticLibrary - Check static library 'netSSL:linux32:debug:staticLibrary'
+checkNetSSLLinux32ReleaseSharedLibrary - Check shared library 'netSSL:linux32:release:sharedLibrary'
+checkNetSSLLinux32ReleaseStaticLibrary - Check static library 'netSSL:linux32:release:staticLibrary'
+checkNetSSLLinux64DebugSharedLibrary - Check shared library 'netSSL:linux64:debug:sharedLibrary'
+checkNetSSLLinux64DebugStaticLibrary - Check static library 'netSSL:linux64:debug:staticLibrary'
+checkNetSSLLinux64ReleaseSharedLibrary - Check shared library 'netSSL:linux64:release:sharedLibrary'
+checkNetSSLLinux64ReleaseStaticLibrary - Check static library 'netSSL:linux64:release:staticLibrary'
+checkNetSSLMacosDebugSharedLibrary - Check shared library 'netSSL:macos:debug:sharedLibrary'
+checkNetSSLMacosDebugStaticLibrary - Check static library 'netSSL:macos:debug:staticLibrary'
+checkNetSSLMacosReleaseSharedLibrary - Check shared library 'netSSL:macos:release:sharedLibrary'
+checkNetSSLMacosReleaseStaticLibrary - Check static library 'netSSL:macos:release:staticLibrary'
+checkNetSSLTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'netSSLTestSuite:linux32:debug:cppUnitExe'
+checkNetSSLTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'netSSLTestSuite:linux32:release:cppUnitExe'
+checkNetSSLTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'netSSLTestSuite:linux64:debug:cppUnitExe'
+checkNetSSLTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'netSSLTestSuite:linux64:release:cppUnitExe'
+checkNetSSLTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'netSSLTestSuite:macos:debug:cppUnitExe'
+checkNetSSLTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'netSSLTestSuite:macos:release:cppUnitExe'
+checkNetSSLTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'netSSLTestSuite:win32:debug:cppUnitExe'
+checkNetSSLTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'netSSLTestSuite:win32:release:cppUnitExe'
+checkNetSSLTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'netSSLTestSuite:win64:debug:cppUnitExe'
+checkNetSSLTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'netSSLTestSuite:win64:release:cppUnitExe'
+checkNetSSLWin32DebugSemiStaticLibrary - Check semi static library 'netSSL:win32:debug:semiStaticLibrary'
+checkNetSSLWin32DebugSharedLibrary - Check shared library 'netSSL:win32:debug:sharedLibrary'
+checkNetSSLWin32DebugStaticLibrary - Check static library 'netSSL:win32:debug:staticLibrary'
+checkNetSSLWin32ReleaseSemiStaticLibrary - Check semi static library 'netSSL:win32:release:semiStaticLibrary'
+checkNetSSLWin32ReleaseSharedLibrary - Check shared library 'netSSL:win32:release:sharedLibrary'
+checkNetSSLWin32ReleaseStaticLibrary - Check static library 'netSSL:win32:release:staticLibrary'
+checkNetSSLWin64DebugSemiStaticLibrary - Check semi static library 'netSSL:win64:debug:semiStaticLibrary'
+checkNetSSLWin64DebugSharedLibrary - Check shared library 'netSSL:win64:debug:sharedLibrary'
+checkNetSSLWin64DebugStaticLibrary - Check static library 'netSSL:win64:debug:staticLibrary'
+checkNetSSLWin64ReleaseSemiStaticLibrary - Check semi static library 'netSSL:win64:release:semiStaticLibrary'
+checkNetSSLWin64ReleaseSharedLibrary - Check shared library 'netSSL:win64:release:sharedLibrary'
+checkNetSSLWin64ReleaseStaticLibrary - Check static library 'netSSL:win64:release:staticLibrary'
+checkNetSSLWinLinux32DebugSharedLibrary - Check shared library 'netSSLWin:linux32:debug:sharedLibrary'
+checkNetSSLWinLinux32DebugStaticLibrary - Check static library 'netSSLWin:linux32:debug:staticLibrary'
+checkNetSSLWinLinux32ReleaseSharedLibrary - Check shared library 'netSSLWin:linux32:release:sharedLibrary'
+checkNetSSLWinLinux32ReleaseStaticLibrary - Check static library 'netSSLWin:linux32:release:staticLibrary'
+checkNetSSLWinLinux64DebugSharedLibrary - Check shared library 'netSSLWin:linux64:debug:sharedLibrary'
+checkNetSSLWinLinux64DebugStaticLibrary - Check static library 'netSSLWin:linux64:debug:staticLibrary'
+checkNetSSLWinLinux64ReleaseSharedLibrary - Check shared library 'netSSLWin:linux64:release:sharedLibrary'
+checkNetSSLWinLinux64ReleaseStaticLibrary - Check static library 'netSSLWin:linux64:release:staticLibrary'
+checkNetSSLWinMacosDebugSharedLibrary - Check shared library 'netSSLWin:macos:debug:sharedLibrary'
+checkNetSSLWinMacosDebugStaticLibrary - Check static library 'netSSLWin:macos:debug:staticLibrary'
+checkNetSSLWinMacosReleaseSharedLibrary - Check shared library 'netSSLWin:macos:release:sharedLibrary'
+checkNetSSLWinMacosReleaseStaticLibrary - Check static library 'netSSLWin:macos:release:staticLibrary'
+checkNetSSLWinWin32DebugSemiStaticLibrary - Check semi static library 'netSSLWin:win32:debug:semiStaticLibrary'
+checkNetSSLWinWin32DebugSharedLibrary - Check shared library 'netSSLWin:win32:debug:sharedLibrary'
+checkNetSSLWinWin32DebugStaticLibrary - Check static library 'netSSLWin:win32:debug:staticLibrary'
+checkNetSSLWinWin32ReleaseSemiStaticLibrary - Check semi static library 'netSSLWin:win32:release:semiStaticLibrary'
+checkNetSSLWinWin32ReleaseSharedLibrary - Check shared library 'netSSLWin:win32:release:sharedLibrary'
+checkNetSSLWinWin32ReleaseStaticLibrary - Check static library 'netSSLWin:win32:release:staticLibrary'
+checkNetSSLWinWin64DebugSemiStaticLibrary - Check semi static library 'netSSLWin:win64:debug:semiStaticLibrary'
+checkNetSSLWinWin64DebugSharedLibrary - Check shared library 'netSSLWin:win64:debug:sharedLibrary'
+checkNetSSLWinWin64DebugStaticLibrary - Check static library 'netSSLWin:win64:debug:staticLibrary'
+checkNetSSLWinWin64ReleaseSemiStaticLibrary - Check semi static library 'netSSLWin:win64:release:semiStaticLibrary'
+checkNetSSLWinWin64ReleaseSharedLibrary - Check shared library 'netSSLWin:win64:release:sharedLibrary'
+checkNetSSLWinWin64ReleaseStaticLibrary - Check static library 'netSSLWin:win64:release:staticLibrary'
+checkNetTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'netTestSuite:linux32:debug:cppUnitExe'
+checkNetTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'netTestSuite:linux32:release:cppUnitExe'
+checkNetTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'netTestSuite:linux64:debug:cppUnitExe'
+checkNetTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'netTestSuite:linux64:release:cppUnitExe'
+checkNetTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'netTestSuite:macos:debug:cppUnitExe'
+checkNetTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'netTestSuite:macos:release:cppUnitExe'
+checkNetTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'netTestSuite:win32:debug:cppUnitExe'
+checkNetTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'netTestSuite:win32:release:cppUnitExe'
+checkNetTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'netTestSuite:win64:debug:cppUnitExe'
+checkNetTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'netTestSuite:win64:release:cppUnitExe'
+checkNetWin32DebugSemiStaticLibrary - Check semi static library 'net:win32:debug:semiStaticLibrary'
+checkNetWin32DebugSharedLibrary - Check shared library 'net:win32:debug:sharedLibrary'
+checkNetWin32DebugStaticLibrary - Check static library 'net:win32:debug:staticLibrary'
+checkNetWin32ReleaseSemiStaticLibrary - Check semi static library 'net:win32:release:semiStaticLibrary'
+checkNetWin32ReleaseSharedLibrary - Check shared library 'net:win32:release:sharedLibrary'
+checkNetWin32ReleaseStaticLibrary - Check static library 'net:win32:release:staticLibrary'
+checkNetWin64DebugSemiStaticLibrary - Check semi static library 'net:win64:debug:semiStaticLibrary'
+checkNetWin64DebugSharedLibrary - Check shared library 'net:win64:debug:sharedLibrary'
+checkNetWin64DebugStaticLibrary - Check static library 'net:win64:debug:staticLibrary'
+checkNetWin64ReleaseSemiStaticLibrary - Check semi static library 'net:win64:release:semiStaticLibrary'
+checkNetWin64ReleaseSharedLibrary - Check shared library 'net:win64:release:sharedLibrary'
+checkNetWin64ReleaseStaticLibrary - Check static library 'net:win64:release:staticLibrary'
+checkNotificationQueueLinux32DebugExecutable - Check executable 'notificationQueue:linux32:debug:executable'
+checkNotificationQueueLinux32ReleaseExecutable - Check executable 'notificationQueue:linux32:release:executable'
+checkNotificationQueueLinux64DebugExecutable - Check executable 'notificationQueue:linux64:debug:executable'
+checkNotificationQueueLinux64ReleaseExecutable - Check executable 'notificationQueue:linux64:release:executable'
+checkNotificationQueueMacosDebugExecutable - Check executable 'notificationQueue:macos:debug:executable'
+checkNotificationQueueMacosReleaseExecutable - Check executable 'notificationQueue:macos:release:executable'
+checkNotificationQueueWin32DebugExecutable - Check executable 'notificationQueue:win32:debug:executable'
+checkNotificationQueueWin32ReleaseExecutable - Check executable 'notificationQueue:win32:release:executable'
+checkNotificationQueueWin64DebugExecutable - Check executable 'notificationQueue:win64:debug:executable'
+checkNotificationQueueWin64ReleaseExecutable - Check executable 'notificationQueue:win64:release:executable'
+checkODBCTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'oDBCTestSuite:linux32:debug:cppUnitExe'
+checkODBCTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'oDBCTestSuite:linux32:release:cppUnitExe'
+checkODBCTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'oDBCTestSuite:linux64:debug:cppUnitExe'
+checkODBCTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'oDBCTestSuite:linux64:release:cppUnitExe'
+checkODBCTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'oDBCTestSuite:macos:debug:cppUnitExe'
+checkODBCTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'oDBCTestSuite:macos:release:cppUnitExe'
+checkODBCTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'oDBCTestSuite:win32:debug:cppUnitExe'
+checkODBCTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'oDBCTestSuite:win32:release:cppUnitExe'
+checkODBCTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'oDBCTestSuite:win64:debug:cppUnitExe'
+checkODBCTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'oDBCTestSuite:win64:release:cppUnitExe'
+checkPDFLinux32DebugSharedLibrary - Check shared library 'pDF:linux32:debug:sharedLibrary'
+checkPDFLinux32DebugStaticLibrary - Check static library 'pDF:linux32:debug:staticLibrary'
+checkPDFLinux32ReleaseSharedLibrary - Check shared library 'pDF:linux32:release:sharedLibrary'
+checkPDFLinux32ReleaseStaticLibrary - Check static library 'pDF:linux32:release:staticLibrary'
+checkPDFLinux64DebugSharedLibrary - Check shared library 'pDF:linux64:debug:sharedLibrary'
+checkPDFLinux64DebugStaticLibrary - Check static library 'pDF:linux64:debug:staticLibrary'
+checkPDFLinux64ReleaseSharedLibrary - Check shared library 'pDF:linux64:release:sharedLibrary'
+checkPDFLinux64ReleaseStaticLibrary - Check static library 'pDF:linux64:release:staticLibrary'
+checkPDFMacosDebugSharedLibrary - Check shared library 'pDF:macos:debug:sharedLibrary'
+checkPDFMacosDebugStaticLibrary - Check static library 'pDF:macos:debug:staticLibrary'
+checkPDFMacosReleaseSharedLibrary - Check shared library 'pDF:macos:release:sharedLibrary'
+checkPDFMacosReleaseStaticLibrary - Check static library 'pDF:macos:release:staticLibrary'
+checkPDFWin32DebugSemiStaticLibrary - Check semi static library 'pDF:win32:debug:semiStaticLibrary'
+checkPDFWin32DebugSharedLibrary - Check shared library 'pDF:win32:debug:sharedLibrary'
+checkPDFWin32DebugStaticLibrary - Check static library 'pDF:win32:debug:staticLibrary'
+checkPDFWin32ReleaseSemiStaticLibrary - Check semi static library 'pDF:win32:release:semiStaticLibrary'
+checkPDFWin32ReleaseSharedLibrary - Check shared library 'pDF:win32:release:sharedLibrary'
+checkPDFWin32ReleaseStaticLibrary - Check static library 'pDF:win32:release:staticLibrary'
+checkPDFWin64DebugSemiStaticLibrary - Check semi static library 'pDF:win64:debug:semiStaticLibrary'
+checkPDFWin64DebugSharedLibrary - Check shared library 'pDF:win64:debug:sharedLibrary'
+checkPDFWin64DebugStaticLibrary - Check static library 'pDF:win64:debug:staticLibrary'
+checkPDFWin64ReleaseSemiStaticLibrary - Check semi static library 'pDF:win64:release:semiStaticLibrary'
+checkPDFWin64ReleaseSharedLibrary - Check shared library 'pDF:win64:release:sharedLibrary'
+checkPDFWin64ReleaseStaticLibrary - Check static library 'pDF:win64:release:staticLibrary'
+checkPingLinux32DebugExecutable - Check executable 'ping:linux32:debug:executable'
+checkPingLinux32ReleaseExecutable - Check executable 'ping:linux32:release:executable'
+checkPingLinux64DebugExecutable - Check executable 'ping:linux64:debug:executable'
+checkPingLinux64ReleaseExecutable - Check executable 'ping:linux64:release:executable'
+checkPingMacosDebugExecutable - Check executable 'ping:macos:debug:executable'
+checkPingMacosReleaseExecutable - Check executable 'ping:macos:release:executable'
+checkPingWin32DebugExecutable - Check executable 'ping:win32:debug:executable'
+checkPingWin32ReleaseExecutable - Check executable 'ping:win32:release:executable'
+checkPingWin64DebugExecutable - Check executable 'ping:win64:debug:executable'
+checkPingWin64ReleaseExecutable - Check executable 'ping:win64:release:executable'
+checkPkillLinux32DebugExecutable - Check executable 'pkill:linux32:debug:executable'
+checkPkillLinux32ReleaseExecutable - Check executable 'pkill:linux32:release:executable'
+checkPkillLinux64DebugExecutable - Check executable 'pkill:linux64:debug:executable'
+checkPkillLinux64ReleaseExecutable - Check executable 'pkill:linux64:release:executable'
+checkPkillMacosDebugExecutable - Check executable 'pkill:macos:debug:executable'
+checkPkillMacosReleaseExecutable - Check executable 'pkill:macos:release:executable'
+checkPkillWin32DebugExecutable - Check executable 'pkill:win32:debug:executable'
+checkPkillWin32ReleaseExecutable - Check executable 'pkill:win32:release:executable'
+checkPkillWin64DebugExecutable - Check executable 'pkill:win64:debug:executable'
+checkPkillWin64ReleaseExecutable - Check executable 'pkill:win64:release:executable'
+checkPostgreSQLTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'postgreSQLTestSuite:linux32:debug:cppUnitExe'
+checkPostgreSQLTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'postgreSQLTestSuite:linux32:release:cppUnitExe'
+checkPostgreSQLTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'postgreSQLTestSuite:linux64:debug:cppUnitExe'
+checkPostgreSQLTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'postgreSQLTestSuite:linux64:release:cppUnitExe'
+checkPostgreSQLTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'postgreSQLTestSuite:macos:debug:cppUnitExe'
+checkPostgreSQLTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'postgreSQLTestSuite:macos:release:cppUnitExe'
+checkPostgreSQLTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'postgreSQLTestSuite:win32:debug:cppUnitExe'
+checkPostgreSQLTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'postgreSQLTestSuite:win32:release:cppUnitExe'
+checkPostgreSQLTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'postgreSQLTestSuite:win64:debug:cppUnitExe'
+checkPostgreSQLTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'postgreSQLTestSuite:win64:release:cppUnitExe'
+checkPrettyPrintLinux32DebugExecutable - Check executable 'prettyPrint:linux32:debug:executable'
+checkPrettyPrintLinux32ReleaseExecutable - Check executable 'prettyPrint:linux32:release:executable'
+checkPrettyPrintLinux64DebugExecutable - Check executable 'prettyPrint:linux64:debug:executable'
+checkPrettyPrintLinux64ReleaseExecutable - Check executable 'prettyPrint:linux64:release:executable'
+checkPrettyPrintMacosDebugExecutable - Check executable 'prettyPrint:macos:debug:executable'
+checkPrettyPrintMacosReleaseExecutable - Check executable 'prettyPrint:macos:release:executable'
+checkPrettyPrintWin32DebugExecutable - Check executable 'prettyPrint:win32:debug:executable'
+checkPrettyPrintWin32ReleaseExecutable - Check executable 'prettyPrint:win32:release:executable'
+checkPrettyPrintWin64DebugExecutable - Check executable 'prettyPrint:win64:debug:executable'
+checkPrettyPrintWin64ReleaseExecutable - Check executable 'prettyPrint:win64:release:executable'
+checkRecordSetLinux32DebugExecutable - Check executable 'recordSet:linux32:debug:executable'
+checkRecordSetLinux32ReleaseExecutable - Check executable 'recordSet:linux32:release:executable'
+checkRecordSetLinux64DebugExecutable - Check executable 'recordSet:linux64:debug:executable'
+checkRecordSetLinux64ReleaseExecutable - Check executable 'recordSet:linux64:release:executable'
+checkRecordSetMacosDebugExecutable - Check executable 'recordSet:macos:debug:executable'
+checkRecordSetMacosReleaseExecutable - Check executable 'recordSet:macos:release:executable'
+checkRecordSetWin32DebugExecutable - Check executable 'recordSet:win32:debug:executable'
+checkRecordSetWin32ReleaseExecutable - Check executable 'recordSet:win32:release:executable'
+checkRecordSetWin64DebugExecutable - Check executable 'recordSet:win64:debug:executable'
+checkRecordSetWin64ReleaseExecutable - Check executable 'recordSet:win64:release:executable'
+checkRedisLinux32DebugSharedLibrary - Check shared library 'redis:linux32:debug:sharedLibrary'
+checkRedisLinux32DebugStaticLibrary - Check static library 'redis:linux32:debug:staticLibrary'
+checkRedisLinux32ReleaseSharedLibrary - Check shared library 'redis:linux32:release:sharedLibrary'
+checkRedisLinux32ReleaseStaticLibrary - Check static library 'redis:linux32:release:staticLibrary'
+checkRedisLinux64DebugSharedLibrary - Check shared library 'redis:linux64:debug:sharedLibrary'
+checkRedisLinux64DebugStaticLibrary - Check static library 'redis:linux64:debug:staticLibrary'
+checkRedisLinux64ReleaseSharedLibrary - Check shared library 'redis:linux64:release:sharedLibrary'
+checkRedisLinux64ReleaseStaticLibrary - Check static library 'redis:linux64:release:staticLibrary'
+checkRedisMacosDebugSharedLibrary - Check shared library 'redis:macos:debug:sharedLibrary'
+checkRedisMacosDebugStaticLibrary - Check static library 'redis:macos:debug:staticLibrary'
+checkRedisMacosReleaseSharedLibrary - Check shared library 'redis:macos:release:sharedLibrary'
+checkRedisMacosReleaseStaticLibrary - Check static library 'redis:macos:release:staticLibrary'
+checkRedisTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'redisTestSuite:linux32:debug:cppUnitExe'
+checkRedisTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'redisTestSuite:linux32:release:cppUnitExe'
+checkRedisTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'redisTestSuite:linux64:debug:cppUnitExe'
+checkRedisTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'redisTestSuite:linux64:release:cppUnitExe'
+checkRedisTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'redisTestSuite:macos:debug:cppUnitExe'
+checkRedisTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'redisTestSuite:macos:release:cppUnitExe'
+checkRedisTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'redisTestSuite:win32:debug:cppUnitExe'
+checkRedisTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'redisTestSuite:win32:release:cppUnitExe'
+checkRedisTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'redisTestSuite:win64:debug:cppUnitExe'
+checkRedisTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'redisTestSuite:win64:release:cppUnitExe'
+checkRedisWin32DebugSemiStaticLibrary - Check semi static library 'redis:win32:debug:semiStaticLibrary'
+checkRedisWin32DebugSharedLibrary - Check shared library 'redis:win32:debug:sharedLibrary'
+checkRedisWin32DebugStaticLibrary - Check static library 'redis:win32:debug:staticLibrary'
+checkRedisWin32ReleaseSemiStaticLibrary - Check semi static library 'redis:win32:release:semiStaticLibrary'
+checkRedisWin32ReleaseSharedLibrary - Check shared library 'redis:win32:release:sharedLibrary'
+checkRedisWin32ReleaseStaticLibrary - Check static library 'redis:win32:release:staticLibrary'
+checkRedisWin64DebugSemiStaticLibrary - Check semi static library 'redis:win64:debug:semiStaticLibrary'
+checkRedisWin64DebugSharedLibrary - Check shared library 'redis:win64:debug:sharedLibrary'
+checkRedisWin64DebugStaticLibrary - Check static library 'redis:win64:debug:staticLibrary'
+checkRedisWin64ReleaseSemiStaticLibrary - Check semi static library 'redis:win64:release:semiStaticLibrary'
+checkRedisWin64ReleaseSharedLibrary - Check shared library 'redis:win64:release:sharedLibrary'
+checkRedisWin64ReleaseStaticLibrary - Check static library 'redis:win64:release:staticLibrary'
+checkRowFormatterLinux32DebugExecutable - Check executable 'rowFormatter:linux32:debug:executable'
+checkRowFormatterLinux32ReleaseExecutable - Check executable 'rowFormatter:linux32:release:executable'
+checkRowFormatterLinux64DebugExecutable - Check executable 'rowFormatter:linux64:debug:executable'
+checkRowFormatterLinux64ReleaseExecutable - Check executable 'rowFormatter:linux64:release:executable'
+checkRowFormatterMacosDebugExecutable - Check executable 'rowFormatter:macos:debug:executable'
+checkRowFormatterMacosReleaseExecutable - Check executable 'rowFormatter:macos:release:executable'
+checkRowFormatterWin32DebugExecutable - Check executable 'rowFormatter:win32:debug:executable'
+checkRowFormatterWin32ReleaseExecutable - Check executable 'rowFormatter:win32:release:executable'
+checkRowFormatterWin64DebugExecutable - Check executable 'rowFormatter:win64:debug:executable'
+checkRowFormatterWin64ReleaseExecutable - Check executable 'rowFormatter:win64:release:executable'
+checkSampleAppLinux32DebugExecutable - Check executable 'sampleApp:linux32:debug:executable'
+checkSampleAppLinux32ReleaseExecutable - Check executable 'sampleApp:linux32:release:executable'
+checkSampleAppLinux64DebugExecutable - Check executable 'sampleApp:linux64:debug:executable'
+checkSampleAppLinux64ReleaseExecutable - Check executable 'sampleApp:linux64:release:executable'
+checkSampleAppMacosDebugExecutable - Check executable 'sampleApp:macos:debug:executable'
+checkSampleAppMacosReleaseExecutable - Check executable 'sampleApp:macos:release:executable'
+checkSampleAppWin32DebugExecutable - Check executable 'sampleApp:win32:debug:executable'
+checkSampleAppWin32ReleaseExecutable - Check executable 'sampleApp:win32:release:executable'
+checkSampleAppWin64DebugExecutable - Check executable 'sampleApp:win64:debug:executable'
+checkSampleAppWin64ReleaseExecutable - Check executable 'sampleApp:win64:release:executable'
+checkSampleServerLinux32DebugExecutable - Check executable 'sampleServer:linux32:debug:executable'
+checkSampleServerLinux32ReleaseExecutable - Check executable 'sampleServer:linux32:release:executable'
+checkSampleServerLinux64DebugExecutable - Check executable 'sampleServer:linux64:debug:executable'
+checkSampleServerLinux64ReleaseExecutable - Check executable 'sampleServer:linux64:release:executable'
+checkSampleServerMacosDebugExecutable - Check executable 'sampleServer:macos:debug:executable'
+checkSampleServerMacosReleaseExecutable - Check executable 'sampleServer:macos:release:executable'
+checkSampleServerWin32DebugExecutable - Check executable 'sampleServer:win32:debug:executable'
+checkSampleServerWin32ReleaseExecutable - Check executable 'sampleServer:win32:release:executable'
+checkSampleServerWin64DebugExecutable - Check executable 'sampleServer:win64:debug:executable'
+checkSampleServerWin64ReleaseExecutable - Check executable 'sampleServer:win64:release:executable'
+checkSAXParserLinux32DebugExecutable - Check executable 'sAXParser:linux32:debug:executable'
+checkSAXParserLinux32ReleaseExecutable - Check executable 'sAXParser:linux32:release:executable'
+checkSAXParserLinux64DebugExecutable - Check executable 'sAXParser:linux64:debug:executable'
+checkSAXParserLinux64ReleaseExecutable - Check executable 'sAXParser:linux64:release:executable'
+checkSAXParserMacosDebugExecutable - Check executable 'sAXParser:macos:debug:executable'
+checkSAXParserMacosReleaseExecutable - Check executable 'sAXParser:macos:release:executable'
+checkSAXParserWin32DebugExecutable - Check executable 'sAXParser:win32:debug:executable'
+checkSAXParserWin32ReleaseExecutable - Check executable 'sAXParser:win32:release:executable'
+checkSAXParserWin64DebugExecutable - Check executable 'sAXParser:win64:debug:executable'
+checkSAXParserWin64ReleaseExecutable - Check executable 'sAXParser:win64:release:executable'
+checkSMTPLoggerLinux32DebugExecutable - Check executable 'sMTPLogger:linux32:debug:executable'
+checkSMTPLoggerLinux32ReleaseExecutable - Check executable 'sMTPLogger:linux32:release:executable'
+checkSMTPLoggerLinux64DebugExecutable - Check executable 'sMTPLogger:linux64:debug:executable'
+checkSMTPLoggerLinux64ReleaseExecutable - Check executable 'sMTPLogger:linux64:release:executable'
+checkSMTPLoggerMacosDebugExecutable - Check executable 'sMTPLogger:macos:debug:executable'
+checkSMTPLoggerMacosReleaseExecutable - Check executable 'sMTPLogger:macos:release:executable'
+checkSMTPLoggerWin32DebugExecutable - Check executable 'sMTPLogger:win32:debug:executable'
+checkSMTPLoggerWin32ReleaseExecutable - Check executable 'sMTPLogger:win32:release:executable'
+checkSMTPLoggerWin64DebugExecutable - Check executable 'sMTPLogger:win64:debug:executable'
+checkSMTPLoggerWin64ReleaseExecutable - Check executable 'sMTPLogger:win64:release:executable'
+checkSQLiteTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'sQLiteTestSuite:linux32:debug:cppUnitExe'
+checkSQLiteTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'sQLiteTestSuite:linux32:release:cppUnitExe'
+checkSQLiteTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'sQLiteTestSuite:linux64:debug:cppUnitExe'
+checkSQLiteTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'sQLiteTestSuite:linux64:release:cppUnitExe'
+checkSQLiteTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'sQLiteTestSuite:macos:debug:cppUnitExe'
+checkSQLiteTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'sQLiteTestSuite:macos:release:cppUnitExe'
+checkSQLiteTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'sQLiteTestSuite:win32:debug:cppUnitExe'
+checkSQLiteTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'sQLiteTestSuite:win32:release:cppUnitExe'
+checkSQLiteTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'sQLiteTestSuite:win64:debug:cppUnitExe'
+checkSQLiteTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'sQLiteTestSuite:win64:release:cppUnitExe'
+checkSQLToMongoLinux32DebugExecutable - Check executable 'sQLToMongo:linux32:debug:executable'
+checkSQLToMongoLinux32ReleaseExecutable - Check executable 'sQLToMongo:linux32:release:executable'
+checkSQLToMongoLinux64DebugExecutable - Check executable 'sQLToMongo:linux64:debug:executable'
+checkSQLToMongoLinux64ReleaseExecutable - Check executable 'sQLToMongo:linux64:release:executable'
+checkSQLToMongoMacosDebugExecutable - Check executable 'sQLToMongo:macos:debug:executable'
+checkSQLToMongoMacosReleaseExecutable - Check executable 'sQLToMongo:macos:release:executable'
+checkSQLToMongoWin32DebugExecutable - Check executable 'sQLToMongo:win32:debug:executable'
+checkSQLToMongoWin32ReleaseExecutable - Check executable 'sQLToMongo:win32:release:executable'
+checkSQLToMongoWin64DebugExecutable - Check executable 'sQLToMongo:win64:debug:executable'
+checkSQLToMongoWin64ReleaseExecutable - Check executable 'sQLToMongo:win64:release:executable'
+checkStringTokenizerLinux32DebugExecutable - Check executable 'stringTokenizer:linux32:debug:executable'
+checkStringTokenizerLinux32ReleaseExecutable - Check executable 'stringTokenizer:linux32:release:executable'
+checkStringTokenizerLinux64DebugExecutable - Check executable 'stringTokenizer:linux64:debug:executable'
+checkStringTokenizerLinux64ReleaseExecutable - Check executable 'stringTokenizer:linux64:release:executable'
+checkStringTokenizerMacosDebugExecutable - Check executable 'stringTokenizer:macos:debug:executable'
+checkStringTokenizerMacosReleaseExecutable - Check executable 'stringTokenizer:macos:release:executable'
+checkStringTokenizerWin32DebugExecutable - Check executable 'stringTokenizer:win32:debug:executable'
+checkStringTokenizerWin32ReleaseExecutable - Check executable 'stringTokenizer:win32:release:executable'
+checkStringTokenizerWin64DebugExecutable - Check executable 'stringTokenizer:win64:debug:executable'
+checkStringTokenizerWin64ReleaseExecutable - Check executable 'stringTokenizer:win64:release:executable'
+checkTestAppLinux32DebugExecutable - Check executable 'testApp:linux32:debug:executable'
+checkTestAppLinux32ReleaseExecutable - Check executable 'testApp:linux32:release:executable'
+checkTestAppLinux64DebugExecutable - Check executable 'testApp:linux64:debug:executable'
+checkTestAppLinux64ReleaseExecutable - Check executable 'testApp:linux64:release:executable'
+checkTestAppMacosDebugExecutable - Check executable 'testApp:macos:debug:executable'
+checkTestAppMacosReleaseExecutable - Check executable 'testApp:macos:release:executable'
+checkTestAppWin32DebugExecutable - Check executable 'testApp:win32:debug:executable'
+checkTestAppWin32ReleaseExecutable - Check executable 'testApp:win32:release:executable'
+checkTestAppWin64DebugExecutable - Check executable 'testApp:win64:debug:executable'
+checkTestAppWin64ReleaseExecutable - Check executable 'testApp:win64:release:executable'
+checkTestLibLinux32DebugSharedLibrary - Check shared library 'testLib:linux32:debug:sharedLibrary'
+checkTestLibLinux32DebugStaticLibrary - Check static library 'testLib:linux32:debug:staticLibrary'
+checkTestLibLinux32ReleaseSharedLibrary - Check shared library 'testLib:linux32:release:sharedLibrary'
+checkTestLibLinux32ReleaseStaticLibrary - Check static library 'testLib:linux32:release:staticLibrary'
+checkTestLibLinux64DebugSharedLibrary - Check shared library 'testLib:linux64:debug:sharedLibrary'
+checkTestLibLinux64DebugStaticLibrary - Check static library 'testLib:linux64:debug:staticLibrary'
+checkTestLibLinux64ReleaseSharedLibrary - Check shared library 'testLib:linux64:release:sharedLibrary'
+checkTestLibLinux64ReleaseStaticLibrary - Check static library 'testLib:linux64:release:staticLibrary'
+checkTestLibMacosDebugSharedLibrary - Check shared library 'testLib:macos:debug:sharedLibrary'
+checkTestLibMacosDebugStaticLibrary - Check static library 'testLib:macos:debug:staticLibrary'
+checkTestLibMacosReleaseSharedLibrary - Check shared library 'testLib:macos:release:sharedLibrary'
+checkTestLibMacosReleaseStaticLibrary - Check static library 'testLib:macos:release:staticLibrary'
+checkTestLibWin32DebugSemiStaticLibrary - Check semi static library 'testLib:win32:debug:semiStaticLibrary'
+checkTestLibWin32DebugSharedLibrary - Check shared library 'testLib:win32:debug:sharedLibrary'
+checkTestLibWin32DebugStaticLibrary - Check static library 'testLib:win32:debug:staticLibrary'
+checkTestLibWin32ReleaseSemiStaticLibrary - Check semi static library 'testLib:win32:release:semiStaticLibrary'
+checkTestLibWin32ReleaseSharedLibrary - Check shared library 'testLib:win32:release:sharedLibrary'
+checkTestLibWin32ReleaseStaticLibrary - Check static library 'testLib:win32:release:staticLibrary'
+checkTestLibWin64DebugSemiStaticLibrary - Check semi static library 'testLib:win64:debug:semiStaticLibrary'
+checkTestLibWin64DebugSharedLibrary - Check shared library 'testLib:win64:debug:sharedLibrary'
+checkTestLibWin64DebugStaticLibrary - Check static library 'testLib:win64:debug:staticLibrary'
+checkTestLibWin64ReleaseSemiStaticLibrary - Check semi static library 'testLib:win64:release:semiStaticLibrary'
+checkTestLibWin64ReleaseSharedLibrary - Check shared library 'testLib:win64:release:sharedLibrary'
+checkTestLibWin64ReleaseStaticLibrary - Check static library 'testLib:win64:release:staticLibrary'
+checkTestSuiteLinux32DebugSharedLibrary - Check shared library 'testSuite:linux32:debug:sharedLibrary'
+checkTestSuiteLinux32DebugStaticLibrary - Check static library 'testSuite:linux32:debug:staticLibrary'
+checkTestSuiteLinux32ReleaseSharedLibrary - Check shared library 'testSuite:linux32:release:sharedLibrary'
+checkTestSuiteLinux32ReleaseStaticLibrary - Check static library 'testSuite:linux32:release:staticLibrary'
+checkTestSuiteLinux64DebugSharedLibrary - Check shared library 'testSuite:linux64:debug:sharedLibrary'
+checkTestSuiteLinux64DebugStaticLibrary - Check static library 'testSuite:linux64:debug:staticLibrary'
+checkTestSuiteLinux64ReleaseSharedLibrary - Check shared library 'testSuite:linux64:release:sharedLibrary'
+checkTestSuiteLinux64ReleaseStaticLibrary - Check static library 'testSuite:linux64:release:staticLibrary'
+checkTestSuiteMacosDebugSharedLibrary - Check shared library 'testSuite:macos:debug:sharedLibrary'
+checkTestSuiteMacosDebugStaticLibrary - Check static library 'testSuite:macos:debug:staticLibrary'
+checkTestSuiteMacosReleaseSharedLibrary - Check shared library 'testSuite:macos:release:sharedLibrary'
+checkTestSuiteMacosReleaseStaticLibrary - Check static library 'testSuite:macos:release:staticLibrary'
+checkTestSuiteWin32DebugSemiStaticLibrary - Check semi static library 'testSuite:win32:debug:semiStaticLibrary'
+checkTestSuiteWin32DebugSharedLibrary - Check shared library 'testSuite:win32:debug:sharedLibrary'
+checkTestSuiteWin32DebugStaticLibrary - Check static library 'testSuite:win32:debug:staticLibrary'
+checkTestSuiteWin32ReleaseSemiStaticLibrary - Check semi static library 'testSuite:win32:release:semiStaticLibrary'
+checkTestSuiteWin32ReleaseSharedLibrary - Check shared library 'testSuite:win32:release:sharedLibrary'
+checkTestSuiteWin32ReleaseStaticLibrary - Check static library 'testSuite:win32:release:staticLibrary'
+checkTestSuiteWin64DebugSemiStaticLibrary - Check semi static library 'testSuite:win64:debug:semiStaticLibrary'
+checkTestSuiteWin64DebugSharedLibrary - Check shared library 'testSuite:win64:debug:sharedLibrary'
+checkTestSuiteWin64DebugStaticLibrary - Check static library 'testSuite:win64:debug:staticLibrary'
+checkTestSuiteWin64ReleaseSemiStaticLibrary - Check semi static library 'testSuite:win64:release:semiStaticLibrary'
+checkTestSuiteWin64ReleaseSharedLibrary - Check shared library 'testSuite:win64:release:sharedLibrary'
+checkTestSuiteWin64ReleaseStaticLibrary - Check static library 'testSuite:win64:release:staticLibrary'
+checkTextConverterLinux32DebugExecutable - Check executable 'textConverter:linux32:debug:executable'
+checkTextConverterLinux32ReleaseExecutable - Check executable 'textConverter:linux32:release:executable'
+checkTextConverterLinux64DebugExecutable - Check executable 'textConverter:linux64:debug:executable'
+checkTextConverterLinux64ReleaseExecutable - Check executable 'textConverter:linux64:release:executable'
+checkTextConverterMacosDebugExecutable - Check executable 'textConverter:macos:debug:executable'
+checkTextConverterMacosReleaseExecutable - Check executable 'textConverter:macos:release:executable'
+checkTextConverterWin32DebugExecutable - Check executable 'textConverter:win32:debug:executable'
+checkTextConverterWin32ReleaseExecutable - Check executable 'textConverter:win32:release:executable'
+checkTextConverterWin64DebugExecutable - Check executable 'textConverter:win64:debug:executable'
+checkTextConverterWin64ReleaseExecutable - Check executable 'textConverter:win64:release:executable'
+checkTextLinux32DebugExecutable - Check executable 'text:linux32:debug:executable'
+checkTextLinux32ReleaseExecutable - Check executable 'text:linux32:release:executable'
+checkTextLinux64DebugExecutable - Check executable 'text:linux64:debug:executable'
+checkTextLinux64ReleaseExecutable - Check executable 'text:linux64:release:executable'
+checkTextMacosDebugExecutable - Check executable 'text:macos:debug:executable'
+checkTextMacosReleaseExecutable - Check executable 'text:macos:release:executable'
+checkTextWin32DebugExecutable - Check executable 'text:win32:debug:executable'
+checkTextWin32ReleaseExecutable - Check executable 'text:win32:release:executable'
+checkTextWin64DebugExecutable - Check executable 'text:win64:debug:executable'
+checkTextWin64ReleaseExecutable - Check executable 'text:win64:release:executable'
+checkTimerLinux32DebugExecutable - Check executable 'timer:linux32:debug:executable'
+checkTimerLinux32ReleaseExecutable - Check executable 'timer:linux32:release:executable'
+checkTimerLinux64DebugExecutable - Check executable 'timer:linux64:debug:executable'
+checkTimerLinux64ReleaseExecutable - Check executable 'timer:linux64:release:executable'
+checkTimerMacosDebugExecutable - Check executable 'timer:macos:debug:executable'
+checkTimerMacosReleaseExecutable - Check executable 'timer:macos:release:executable'
+checkTimerWin32DebugExecutable - Check executable 'timer:win32:debug:executable'
+checkTimerWin32ReleaseExecutable - Check executable 'timer:win32:release:executable'
+checkTimerWin64DebugExecutable - Check executable 'timer:win64:debug:executable'
+checkTimerWin64ReleaseExecutable - Check executable 'timer:win64:release:executable'
+checkTimeServerLinux32DebugExecutable - Check executable 'timeServer:linux32:debug:executable'
+checkTimeServerLinux32ReleaseExecutable - Check executable 'timeServer:linux32:release:executable'
+checkTimeServerLinux64DebugExecutable - Check executable 'timeServer:linux64:debug:executable'
+checkTimeServerLinux64ReleaseExecutable - Check executable 'timeServer:linux64:release:executable'
+checkTimeServerMacosDebugExecutable - Check executable 'timeServer:macos:debug:executable'
+checkTimeServerMacosReleaseExecutable - Check executable 'timeServer:macos:release:executable'
+checkTimeServerWin32DebugExecutable - Check executable 'timeServer:win32:debug:executable'
+checkTimeServerWin32ReleaseExecutable - Check executable 'timeServer:win32:release:executable'
+checkTimeServerWin64DebugExecutable - Check executable 'timeServer:win64:debug:executable'
+checkTimeServerWin64ReleaseExecutable - Check executable 'timeServer:win64:release:executable'
+checkTupleLinux32DebugExecutable - Check executable 'tuple:linux32:debug:executable'
+checkTupleLinux32ReleaseExecutable - Check executable 'tuple:linux32:release:executable'
+checkTupleLinux64DebugExecutable - Check executable 'tuple:linux64:debug:executable'
+checkTupleLinux64ReleaseExecutable - Check executable 'tuple:linux64:release:executable'
+checkTupleMacosDebugExecutable - Check executable 'tuple:macos:debug:executable'
+checkTupleMacosReleaseExecutable - Check executable 'tuple:macos:release:executable'
+checkTupleWin32DebugExecutable - Check executable 'tuple:win32:debug:executable'
+checkTupleWin32ReleaseExecutable - Check executable 'tuple:win32:release:executable'
+checkTupleWin64DebugExecutable - Check executable 'tuple:win64:debug:executable'
+checkTupleWin64ReleaseExecutable - Check executable 'tuple:win64:release:executable'
+checkTwitterClientLinux32DebugExecutable - Check executable 'twitterClient:linux32:debug:executable'
+checkTwitterClientLinux32ReleaseExecutable - Check executable 'twitterClient:linux32:release:executable'
+checkTwitterClientLinux64DebugExecutable - Check executable 'twitterClient:linux64:debug:executable'
+checkTwitterClientLinux64ReleaseExecutable - Check executable 'twitterClient:linux64:release:executable'
+checkTwitterClientMacosDebugExecutable - Check executable 'twitterClient:macos:debug:executable'
+checkTwitterClientMacosReleaseExecutable - Check executable 'twitterClient:macos:release:executable'
+checkTwitterClientWin32DebugExecutable - Check executable 'twitterClient:win32:debug:executable'
+checkTwitterClientWin32ReleaseExecutable - Check executable 'twitterClient:win32:release:executable'
+checkTwitterClientWin64DebugExecutable - Check executable 'twitterClient:win64:debug:executable'
+checkTwitterClientWin64ReleaseExecutable - Check executable 'twitterClient:win64:release:executable'
+checkTypeHandlerLinux32DebugExecutable - Check executable 'typeHandler:linux32:debug:executable'
+checkTypeHandlerLinux32ReleaseExecutable - Check executable 'typeHandler:linux32:release:executable'
+checkTypeHandlerLinux64DebugExecutable - Check executable 'typeHandler:linux64:debug:executable'
+checkTypeHandlerLinux64ReleaseExecutable - Check executable 'typeHandler:linux64:release:executable'
+checkTypeHandlerMacosDebugExecutable - Check executable 'typeHandler:macos:debug:executable'
+checkTypeHandlerMacosReleaseExecutable - Check executable 'typeHandler:macos:release:executable'
+checkTypeHandlerWin32DebugExecutable - Check executable 'typeHandler:win32:debug:executable'
+checkTypeHandlerWin32ReleaseExecutable - Check executable 'typeHandler:win32:release:executable'
+checkTypeHandlerWin64DebugExecutable - Check executable 'typeHandler:win64:debug:executable'
+checkTypeHandlerWin64ReleaseExecutable - Check executable 'typeHandler:win64:release:executable'
+checkUn7zipLinux32DebugExecutable - Check executable 'un7zip:linux32:debug:executable'
+checkUn7zipLinux32ReleaseExecutable - Check executable 'un7zip:linux32:release:executable'
+checkUn7zipLinux64DebugExecutable - Check executable 'un7zip:linux64:debug:executable'
+checkUn7zipLinux64ReleaseExecutable - Check executable 'un7zip:linux64:release:executable'
+checkUn7zipMacosDebugExecutable - Check executable 'un7zip:macos:debug:executable'
+checkUn7zipMacosReleaseExecutable - Check executable 'un7zip:macos:release:executable'
+checkUn7zipWin32DebugExecutable - Check executable 'un7zip:win32:debug:executable'
+checkUn7zipWin32ReleaseExecutable - Check executable 'un7zip:win32:release:executable'
+checkUn7zipWin64DebugExecutable - Check executable 'un7zip:win64:debug:executable'
+checkUn7zipWin64ReleaseExecutable - Check executable 'un7zip:win64:release:executable'
+checkUnitsLinux32DebugExecutable - Check executable 'units:linux32:debug:executable'
+checkUnitsLinux32ReleaseExecutable - Check executable 'units:linux32:release:executable'
+checkUnitsLinux64DebugExecutable - Check executable 'units:linux64:debug:executable'
+checkUnitsLinux64ReleaseExecutable - Check executable 'units:linux64:release:executable'
+checkUnitsMacosDebugExecutable - Check executable 'units:macos:debug:executable'
+checkUnitsMacosReleaseExecutable - Check executable 'units:macos:release:executable'
+checkUnitsWin32DebugExecutable - Check executable 'units:win32:debug:executable'
+checkUnitsWin32ReleaseExecutable - Check executable 'units:win32:release:executable'
+checkUnitsWin64DebugExecutable - Check executable 'units:win64:debug:executable'
+checkUnitsWin64ReleaseExecutable - Check executable 'units:win64:release:executable'
+checkUnzipLinux32DebugExecutable - Check executable 'unzip:linux32:debug:executable'
+checkUnzipLinux32ReleaseExecutable - Check executable 'unzip:linux32:release:executable'
+checkUnzipLinux64DebugExecutable - Check executable 'unzip:linux64:debug:executable'
+checkUnzipLinux64ReleaseExecutable - Check executable 'unzip:linux64:release:executable'
+checkUnzipMacosDebugExecutable - Check executable 'unzip:macos:debug:executable'
+checkUnzipMacosReleaseExecutable - Check executable 'unzip:macos:release:executable'
+checkUnzipWin32DebugExecutable - Check executable 'unzip:win32:debug:executable'
+checkUnzipWin32ReleaseExecutable - Check executable 'unzip:win32:release:executable'
+checkUnzipWin64DebugExecutable - Check executable 'unzip:win64:debug:executable'
+checkUnzipWin64ReleaseExecutable - Check executable 'unzip:win64:release:executable'
+checkURILinux32DebugExecutable - Check executable 'uRI:linux32:debug:executable'
+checkURILinux32ReleaseExecutable - Check executable 'uRI:linux32:release:executable'
+checkURILinux64DebugExecutable - Check executable 'uRI:linux64:debug:executable'
+checkURILinux64ReleaseExecutable - Check executable 'uRI:linux64:release:executable'
+checkURIMacosDebugExecutable - Check executable 'uRI:macos:debug:executable'
+checkURIMacosReleaseExecutable - Check executable 'uRI:macos:release:executable'
+checkURIWin32DebugExecutable - Check executable 'uRI:win32:debug:executable'
+checkURIWin32ReleaseExecutable - Check executable 'uRI:win32:release:executable'
+checkURIWin64DebugExecutable - Check executable 'uRI:win64:debug:executable'
+checkURIWin64ReleaseExecutable - Check executable 'uRI:win64:release:executable'
+checkUtilLinux32DebugSharedLibrary - Check shared library 'util:linux32:debug:sharedLibrary'
+checkUtilLinux32DebugStaticLibrary - Check static library 'util:linux32:debug:staticLibrary'
+checkUtilLinux32ReleaseSharedLibrary - Check shared library 'util:linux32:release:sharedLibrary'
+checkUtilLinux32ReleaseStaticLibrary - Check static library 'util:linux32:release:staticLibrary'
+checkUtilLinux64DebugSharedLibrary - Check shared library 'util:linux64:debug:sharedLibrary'
+checkUtilLinux64DebugStaticLibrary - Check static library 'util:linux64:debug:staticLibrary'
+checkUtilLinux64ReleaseSharedLibrary - Check shared library 'util:linux64:release:sharedLibrary'
+checkUtilLinux64ReleaseStaticLibrary - Check static library 'util:linux64:release:staticLibrary'
+checkUtilMacosDebugSharedLibrary - Check shared library 'util:macos:debug:sharedLibrary'
+checkUtilMacosDebugStaticLibrary - Check static library 'util:macos:debug:staticLibrary'
+checkUtilMacosReleaseSharedLibrary - Check shared library 'util:macos:release:sharedLibrary'
+checkUtilMacosReleaseStaticLibrary - Check static library 'util:macos:release:staticLibrary'
+checkUtilTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'utilTestSuite:linux32:debug:cppUnitExe'
+checkUtilTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'utilTestSuite:linux32:release:cppUnitExe'
+checkUtilTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'utilTestSuite:linux64:debug:cppUnitExe'
+checkUtilTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'utilTestSuite:linux64:release:cppUnitExe'
+checkUtilTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'utilTestSuite:macos:debug:cppUnitExe'
+checkUtilTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'utilTestSuite:macos:release:cppUnitExe'
+checkUtilTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'utilTestSuite:win32:debug:cppUnitExe'
+checkUtilTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'utilTestSuite:win32:release:cppUnitExe'
+checkUtilTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'utilTestSuite:win64:debug:cppUnitExe'
+checkUtilTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'utilTestSuite:win64:release:cppUnitExe'
+checkUtilWin32DebugSemiStaticLibrary - Check semi static library 'util:win32:debug:semiStaticLibrary'
+checkUtilWin32DebugSharedLibrary - Check shared library 'util:win32:debug:sharedLibrary'
+checkUtilWin32DebugStaticLibrary - Check static library 'util:win32:debug:staticLibrary'
+checkUtilWin32ReleaseSemiStaticLibrary - Check semi static library 'util:win32:release:semiStaticLibrary'
+checkUtilWin32ReleaseSharedLibrary - Check shared library 'util:win32:release:sharedLibrary'
+checkUtilWin32ReleaseStaticLibrary - Check static library 'util:win32:release:staticLibrary'
+checkUtilWin64DebugSemiStaticLibrary - Check semi static library 'util:win64:debug:semiStaticLibrary'
+checkUtilWin64DebugSharedLibrary - Check shared library 'util:win64:debug:sharedLibrary'
+checkUtilWin64DebugStaticLibrary - Check static library 'util:win64:debug:staticLibrary'
+checkUtilWin64ReleaseSemiStaticLibrary - Check semi static library 'util:win64:release:semiStaticLibrary'
+checkUtilWin64ReleaseSharedLibrary - Check shared library 'util:win64:release:sharedLibrary'
+checkUtilWin64ReleaseStaticLibrary - Check static library 'util:win64:release:staticLibrary'
+checkUuidgenLinux32DebugExecutable - Check executable 'uuidgen:linux32:debug:executable'
+checkUuidgenLinux32ReleaseExecutable - Check executable 'uuidgen:linux32:release:executable'
+checkUuidgenLinux64DebugExecutable - Check executable 'uuidgen:linux64:debug:executable'
+checkUuidgenLinux64ReleaseExecutable - Check executable 'uuidgen:linux64:release:executable'
+checkUuidgenMacosDebugExecutable - Check executable 'uuidgen:macos:debug:executable'
+checkUuidgenMacosReleaseExecutable - Check executable 'uuidgen:macos:release:executable'
+checkUuidgenWin32DebugExecutable - Check executable 'uuidgen:win32:debug:executable'
+checkUuidgenWin32ReleaseExecutable - Check executable 'uuidgen:win32:release:executable'
+checkUuidgenWin64DebugExecutable - Check executable 'uuidgen:win64:debug:executable'
+checkUuidgenWin64ReleaseExecutable - Check executable 'uuidgen:win64:release:executable'
+checkWebNotifierLinux32DebugExecutable - Check executable 'webNotifier:linux32:debug:executable'
+checkWebNotifierLinux32ReleaseExecutable - Check executable 'webNotifier:linux32:release:executable'
+checkWebNotifierLinux64DebugExecutable - Check executable 'webNotifier:linux64:debug:executable'
+checkWebNotifierLinux64ReleaseExecutable - Check executable 'webNotifier:linux64:release:executable'
+checkWebNotifierMacosDebugExecutable - Check executable 'webNotifier:macos:debug:executable'
+checkWebNotifierMacosReleaseExecutable - Check executable 'webNotifier:macos:release:executable'
+checkWebNotifierWin32DebugExecutable - Check executable 'webNotifier:win32:debug:executable'
+checkWebNotifierWin32ReleaseExecutable - Check executable 'webNotifier:win32:release:executable'
+checkWebNotifierWin64DebugExecutable - Check executable 'webNotifier:win64:debug:executable'
+checkWebNotifierWin64ReleaseExecutable - Check executable 'webNotifier:win64:release:executable'
+checkWebSocketServerLinux32DebugExecutable - Check executable 'webSocketServer:linux32:debug:executable'
+checkWebSocketServerLinux32ReleaseExecutable - Check executable 'webSocketServer:linux32:release:executable'
+checkWebSocketServerLinux64DebugExecutable - Check executable 'webSocketServer:linux64:debug:executable'
+checkWebSocketServerLinux64ReleaseExecutable - Check executable 'webSocketServer:linux64:release:executable'
+checkWebSocketServerMacosDebugExecutable - Check executable 'webSocketServer:macos:debug:executable'
+checkWebSocketServerMacosReleaseExecutable - Check executable 'webSocketServer:macos:release:executable'
+checkWebSocketServerWin32DebugExecutable - Check executable 'webSocketServer:win32:debug:executable'
+checkWebSocketServerWin32ReleaseExecutable - Check executable 'webSocketServer:win32:release:executable'
+checkWebSocketServerWin64DebugExecutable - Check executable 'webSocketServer:win64:debug:executable'
+checkWebSocketServerWin64ReleaseExecutable - Check executable 'webSocketServer:win64:release:executable'
+checkXMLLinux32DebugSharedLibrary - Check shared library 'xML:linux32:debug:sharedLibrary'
+checkXMLLinux32DebugStaticLibrary - Check static library 'xML:linux32:debug:staticLibrary'
+checkXMLLinux32ReleaseSharedLibrary - Check shared library 'xML:linux32:release:sharedLibrary'
+checkXMLLinux32ReleaseStaticLibrary - Check static library 'xML:linux32:release:staticLibrary'
+checkXMLLinux64DebugSharedLibrary - Check shared library 'xML:linux64:debug:sharedLibrary'
+checkXMLLinux64DebugStaticLibrary - Check static library 'xML:linux64:debug:staticLibrary'
+checkXMLLinux64ReleaseSharedLibrary - Check shared library 'xML:linux64:release:sharedLibrary'
+checkXMLLinux64ReleaseStaticLibrary - Check static library 'xML:linux64:release:staticLibrary'
+checkXMLMacosDebugSharedLibrary - Check shared library 'xML:macos:debug:sharedLibrary'
+checkXMLMacosDebugStaticLibrary - Check static library 'xML:macos:debug:staticLibrary'
+checkXMLMacosReleaseSharedLibrary - Check shared library 'xML:macos:release:sharedLibrary'
+checkXMLMacosReleaseStaticLibrary - Check static library 'xML:macos:release:staticLibrary'
+checkXMLTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'xMLTestSuite:linux32:debug:cppUnitExe'
+checkXMLTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'xMLTestSuite:linux32:release:cppUnitExe'
+checkXMLTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'xMLTestSuite:linux64:debug:cppUnitExe'
+checkXMLTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'xMLTestSuite:linux64:release:cppUnitExe'
+checkXMLTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'xMLTestSuite:macos:debug:cppUnitExe'
+checkXMLTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'xMLTestSuite:macos:release:cppUnitExe'
+checkXMLTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'xMLTestSuite:win32:debug:cppUnitExe'
+checkXMLTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'xMLTestSuite:win32:release:cppUnitExe'
+checkXMLTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'xMLTestSuite:win64:debug:cppUnitExe'
+checkXMLTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'xMLTestSuite:win64:release:cppUnitExe'
+checkXMLWin32DebugSemiStaticLibrary - Check semi static library 'xML:win32:debug:semiStaticLibrary'
+checkXMLWin32DebugSharedLibrary - Check shared library 'xML:win32:debug:sharedLibrary'
+checkXMLWin32DebugStaticLibrary - Check static library 'xML:win32:debug:staticLibrary'
+checkXMLWin32ReleaseSemiStaticLibrary - Check semi static library 'xML:win32:release:semiStaticLibrary'
+checkXMLWin32ReleaseSharedLibrary - Check shared library 'xML:win32:release:sharedLibrary'
+checkXMLWin32ReleaseStaticLibrary - Check static library 'xML:win32:release:staticLibrary'
+checkXMLWin64DebugSemiStaticLibrary - Check semi static library 'xML:win64:debug:semiStaticLibrary'
+checkXMLWin64DebugSharedLibrary - Check shared library 'xML:win64:debug:sharedLibrary'
+checkXMLWin64DebugStaticLibrary - Check static library 'xML:win64:debug:staticLibrary'
+checkXMLWin64ReleaseSemiStaticLibrary - Check semi static library 'xML:win64:release:semiStaticLibrary'
+checkXMLWin64ReleaseSharedLibrary - Check shared library 'xML:win64:release:sharedLibrary'
+checkXMLWin64ReleaseStaticLibrary - Check static library 'xML:win64:release:staticLibrary'
+checkZipLinux32DebugExecutable - Check executable 'zip:linux32:debug:executable'
+checkZipLinux32DebugSharedLibrary - Check shared library 'zip:linux32:debug:sharedLibrary'
+checkZipLinux32DebugStaticLibrary - Check static library 'zip:linux32:debug:staticLibrary'
+checkZipLinux32ReleaseExecutable - Check executable 'zip:linux32:release:executable'
+checkZipLinux32ReleaseSharedLibrary - Check shared library 'zip:linux32:release:sharedLibrary'
+checkZipLinux32ReleaseStaticLibrary - Check static library 'zip:linux32:release:staticLibrary'
+checkZipLinux64DebugExecutable - Check executable 'zip:linux64:debug:executable'
+checkZipLinux64DebugSharedLibrary - Check shared library 'zip:linux64:debug:sharedLibrary'
+checkZipLinux64DebugStaticLibrary - Check static library 'zip:linux64:debug:staticLibrary'
+checkZipLinux64ReleaseExecutable - Check executable 'zip:linux64:release:executable'
+checkZipLinux64ReleaseSharedLibrary - Check shared library 'zip:linux64:release:sharedLibrary'
+checkZipLinux64ReleaseStaticLibrary - Check static library 'zip:linux64:release:staticLibrary'
+checkZipMacosDebugExecutable - Check executable 'zip:macos:debug:executable'
+checkZipMacosDebugSharedLibrary - Check shared library 'zip:macos:debug:sharedLibrary'
+checkZipMacosDebugStaticLibrary - Check static library 'zip:macos:debug:staticLibrary'
+checkZipMacosReleaseExecutable - Check executable 'zip:macos:release:executable'
+checkZipMacosReleaseSharedLibrary - Check shared library 'zip:macos:release:sharedLibrary'
+checkZipMacosReleaseStaticLibrary - Check static library 'zip:macos:release:staticLibrary'
+checkZipTestSuiteLinux32DebugCppUnitExe - Check cpp unit exe 'zipTestSuite:linux32:debug:cppUnitExe'
+checkZipTestSuiteLinux32ReleaseCppUnitExe - Check cpp unit exe 'zipTestSuite:linux32:release:cppUnitExe'
+checkZipTestSuiteLinux64DebugCppUnitExe - Check cpp unit exe 'zipTestSuite:linux64:debug:cppUnitExe'
+checkZipTestSuiteLinux64ReleaseCppUnitExe - Check cpp unit exe 'zipTestSuite:linux64:release:cppUnitExe'
+checkZipTestSuiteMacosDebugCppUnitExe - Check cpp unit exe 'zipTestSuite:macos:debug:cppUnitExe'
+checkZipTestSuiteMacosReleaseCppUnitExe - Check cpp unit exe 'zipTestSuite:macos:release:cppUnitExe'
+checkZipTestSuiteWin32DebugCppUnitExe - Check cpp unit exe 'zipTestSuite:win32:debug:cppUnitExe'
+checkZipTestSuiteWin32ReleaseCppUnitExe - Check cpp unit exe 'zipTestSuite:win32:release:cppUnitExe'
+checkZipTestSuiteWin64DebugCppUnitExe - Check cpp unit exe 'zipTestSuite:win64:debug:cppUnitExe'
+checkZipTestSuiteWin64ReleaseCppUnitExe - Check cpp unit exe 'zipTestSuite:win64:release:cppUnitExe'
+checkZipWin32DebugExecutable - Check executable 'zip:win32:debug:executable'
+checkZipWin32DebugSemiStaticLibrary - Check semi static library 'zip:win32:debug:semiStaticLibrary'
+checkZipWin32DebugSharedLibrary - Check shared library 'zip:win32:debug:sharedLibrary'
+checkZipWin32DebugStaticLibrary - Check static library 'zip:win32:debug:staticLibrary'
+checkZipWin32ReleaseExecutable - Check executable 'zip:win32:release:executable'
+checkZipWin32ReleaseSemiStaticLibrary - Check semi static library 'zip:win32:release:semiStaticLibrary'
+checkZipWin32ReleaseSharedLibrary - Check shared library 'zip:win32:release:sharedLibrary'
+checkZipWin32ReleaseStaticLibrary - Check static library 'zip:win32:release:staticLibrary'
+checkZipWin64DebugExecutable - Check executable 'zip:win64:debug:executable'
+checkZipWin64DebugSemiStaticLibrary - Check semi static library 'zip:win64:debug:semiStaticLibrary'
+checkZipWin64DebugSharedLibrary - Check shared library 'zip:win64:debug:sharedLibrary'
+checkZipWin64DebugStaticLibrary - Check static library 'zip:win64:debug:staticLibrary'
+checkZipWin64ReleaseExecutable - Check executable 'zip:win64:release:executable'
+checkZipWin64ReleaseSemiStaticLibrary - Check semi static library 'zip:win64:release:semiStaticLibrary'
+checkZipWin64ReleaseSharedLibrary - Check shared library 'zip:win64:release:sharedLibrary'
+checkZipWin64ReleaseStaticLibrary - Check static library 'zip:win64:release:staticLibrary'
+
+Rules
+-----
+Pattern: clean<TaskName>: Cleans the output files of a task.
+Pattern: build<ConfigurationName>: Assembles the artifacts of a configuration.
+Pattern: upload<ConfigurationName>: Assembles and uploads the artifacts belonging to a configuration.
+
+To see all tasks and more detail, run gradle tasks --all
+
+To see more detail about a task, run gradle help --task <task>
+
+BUILD SUCCESSFUL in 4s
+1 actionable task: 1 executed