diff options
author | Roland Reichwein <mail@reichwein.it> | 2022-01-02 19:02:38 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2022-01-02 19:02:38 +0100 |
commit | aa2edab739e3daac42cd5dbb44d10234ad880626 (patch) | |
tree | a89ff831861346ffb4ece6b0ca770c8be8315770 /msbuild/test-performance.vcxproj.filters | |
parent | c3124ce89b53e0b1ff3b666aeee9d1829b74229c (diff) |
Separated unit tests and performance tests
Diffstat (limited to 'msbuild/test-performance.vcxproj.filters')
-rw-r--r-- | msbuild/test-performance.vcxproj.filters | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/msbuild/test-performance.vcxproj.filters b/msbuild/test-performance.vcxproj.filters new file mode 100644 index 0000000..b8488bd --- /dev/null +++ b/msbuild/test-performance.vcxproj.filters @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup> + <Filter Include="Implementation"> + <UniqueIdentifier>{A03B3E05-0246-435D-8DE4-B3B8BB72CD12}</UniqueIdentifier> + <Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions> + </Filter> + </ItemGroup> + <ItemGroup> + <ClCompile Include="..\src\test-helper.cpp"> + <Filter>Implementation</Filter> + </ClCompile> + <ClCompile Include="..\src\test-performance.cpp"> + <Filter>Implementation</Filter> + </ClCompile> + </ItemGroup> +</Project> |