Remove prefix for the shared library: Foundation/testsuite/TestLibrary

This commit is contained in:
Francis ANDRE 2018-09-27 11:52:33 +02:00
parent 842058dc75
commit e4cb3c20b9

View File

@ -50,7 +50,7 @@ File prefixByPoco(File binaryFile) {
if (name.charAt(extensionSeparator - 1) == 'd')
debug = 'd'
}
return new File(parent, prefix + "TestLibrary" + debug + suffix)
return new File(parent, "TestLibrary" + debug + suffix)
}
return new File(parent, prefix + "Poco" + name);