forked from dokan-dev/dokany
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added FSX to unit tests dokan-dev#210
- Loading branch information
Keith Newton
committed
Aug 9, 2016
1 parent
53e4d26
commit 6e2df36
Showing
9 changed files
with
4,011 additions
and
119 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,55 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Filter Include="Source Files"> | ||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | ||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | ||
</Filter> | ||
<Filter Include="Header Files"> | ||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | ||
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions> | ||
</Filter> | ||
<Filter Include="Resource Files"> | ||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier> | ||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions> | ||
</Filter> | ||
<Filter Include="Source"> | ||
<UniqueIdentifier>{a53dfd67-4225-44a6-847b-dc024bf9728d}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Source\FSX"> | ||
<UniqueIdentifier>{7e8ff853-6fa7-473d-a40a-54561cd685da}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="Source\FSX\win"> | ||
<UniqueIdentifier>{8dc39220-2d5c-408b-9078-90b6daa0919b}</UniqueIdentifier> | ||
</Filter> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClInclude Include="stdafx.h"> | ||
<Filter>Header Files</Filter> | ||
<Filter>Source</Filter> | ||
</ClInclude> | ||
<ClInclude Include="targetver.h"> | ||
<Filter>Header Files</Filter> | ||
<Filter>Source</Filter> | ||
</ClInclude> | ||
<ClInclude Include="fsx\win\getopt.h"> | ||
<Filter>Source\FSX\win</Filter> | ||
</ClInclude> | ||
<ClInclude Include="fsx\win\mman.h"> | ||
<Filter>Source\FSX\win</Filter> | ||
</ClInclude> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClCompile Include="stdafx.cpp"> | ||
<Filter>Source Files</Filter> | ||
<ClCompile Include="ErrorCodes.cpp"> | ||
<Filter>Source</Filter> | ||
</ClCompile> | ||
<ClCompile Include="FileSystemTests.cpp"> | ||
<Filter>Source Files</Filter> | ||
<Filter>Source</Filter> | ||
</ClCompile> | ||
<ClCompile Include="ErrorCodes.cpp"> | ||
<Filter>Source Files</Filter> | ||
<ClCompile Include="stdafx.cpp"> | ||
<Filter>Source</Filter> | ||
</ClCompile> | ||
<ClCompile Include="fsx\win\getopt.cpp"> | ||
<Filter>Source\FSX\win</Filter> | ||
</ClCompile> | ||
<ClCompile Include="fsx\win\mman.cpp"> | ||
<Filter>Source\FSX\win</Filter> | ||
</ClCompile> | ||
<ClCompile Include="fsx\win\random.cpp"> | ||
<Filter>Source\FSX\win</Filter> | ||
</ClCompile> | ||
<ClCompile Include="fsx\fsx.cpp"> | ||
<Filter>Source\FSX</Filter> | ||
</ClCompile> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.