aboutsummaryrefslogtreecommitdiffstats
path: root/wintun.vcxproj
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2019-04-12 13:10:26 +0200
committerSimon Rozman <simon@rozman.si>2019-04-12 15:35:38 +0200
commit51205293504b59453c5f4d7b86f7675bcd23db08 (patch)
treeadbeede4de2fa6d24f4efc594c62ae1af5185e17 /wintun.vcxproj
parentMove #define NDIS... to ClCompile/PreprocessorDefinitions (diff)
downloadwintun-51205293504b59453c5f4d7b86f7675bcd23db08.tar.xz
wintun-51205293504b59453c5f4d7b86f7675bcd23db08.zip
Fix output folder
The compiled result is put into $(SolutionDir)$(Platform)\ $(ConfigurationName) by default. Unfortunately Static Driver Verifier sets the $(SolutionDir) without a trailing backslash, resulting some files end up in a "wintunx64" folder of the project parent folder. Until driver building and packaging is automated, the output folder has been manually matched to the intermediate folder. Signed-off-by: Simon Rozman <simon@rozman.si>
Diffstat (limited to 'wintun.vcxproj')
-rw-r--r--wintun.vcxproj4
1 files changed, 4 insertions, 0 deletions
diff --git a/wintun.vcxproj b/wintun.vcxproj
index 3af0b06..acafbc2 100644
--- a/wintun.vcxproj
+++ b/wintun.vcxproj
@@ -85,18 +85,22 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<RunCodeAnalysis>true</RunCodeAnalysis>
<CodeAnalysisRuleSet>$(WDKContentRoot)CodeAnalysis\DriverMustFixRules.ruleset</CodeAnalysisRuleSet>
+ <OutDir>$(ConfigurationName)\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<RunCodeAnalysis>true</RunCodeAnalysis>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
+ <OutDir>$(ConfigurationName)\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<RunCodeAnalysis>true</RunCodeAnalysis>
<CodeAnalysisRuleSet>$(WDKContentRoot)CodeAnalysis\DriverMustFixRules.ruleset</CodeAnalysisRuleSet>
+ <OutDir>$(Platform)\$(ConfigurationName)\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<RunCodeAnalysis>true</RunCodeAnalysis>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
+ <OutDir>$(Platform)\$(ConfigurationName)\</OutDir>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>