mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 16:48:06 +02:00
workaround for hidden files
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="8,00"
|
Version="8.00"
|
||||||
Name="CppUnit"
|
Name="CppUnit"
|
||||||
ProjectGUID="{138BB448-808A-4FE5-A66D-78D1F8770F59}"
|
ProjectGUID="{138BB448-808A-4FE5-A66D-78D1F8770F59}"
|
||||||
Keyword="MFCProj"
|
Keyword="MFCProj"
|
||||||
@@ -477,6 +477,10 @@
|
|||||||
RelativePath=".\include\CppUnit\CppUnitException.h"
|
RelativePath=".\include\CppUnit\CppUnitException.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\include\CppUnit\DataDrivenTestCaller.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\include\CppUnit\estring.h"
|
RelativePath=".\include\CppUnit\estring.h"
|
||||||
>
|
>
|
||||||
|
@@ -182,8 +182,10 @@ public:
|
|||||||
std::vector<std::string>::const_iterator itInEnd = inputFiles.end();
|
std::vector<std::string>::const_iterator itInEnd = inputFiles.end();
|
||||||
for (; itIn != itInEnd; ++itIn)
|
for (; itIn != itInEnd; ++itIn)
|
||||||
{
|
{
|
||||||
|
std::cout << *itIn << std::endl;
|
||||||
Poco::Path inTmp(data, *itIn);
|
Poco::Path inTmp(data, *itIn);
|
||||||
Poco::File inFTmp(inTmp);
|
Poco::File inFTmp(inTmp);
|
||||||
|
if (!inTmp.getBaseName().empty())
|
||||||
pairs.insert(std::make_pair(inTmp.getBaseName(), std::make_pair(inFTmp, Poco::File())));
|
pairs.insert(std::make_pair(inTmp.getBaseName(), std::make_pair(inFTmp, Poco::File())));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user