aboutsummaryrefslogtreecommitdiffstats
path: root/api/api.vcxproj
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2020-10-31 11:55:26 +0100
committerSimon Rozman <simon@rozman.si>2020-10-31 19:11:51 +0100
commit937eb447278c2bc1b30852905c7740bcdedb534d (patch)
treebec9edcff4b45ae2a076f7cb218d1f98caa36da1 /api/api.vcxproj
parentapi: simplify build settings (diff)
downloadwintun-937eb447278c2bc1b30852905c7740bcdedb534d.tar.xz
wintun-937eb447278c2bc1b30852905c7740bcdedb534d.zip
api: get rid of pch and make headers sane
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'api/api.vcxproj')
-rw-r--r--api/api.vcxproj12
1 files changed, 3 insertions, 9 deletions
diff --git a/api/api.vcxproj b/api/api.vcxproj
index 3c1f58d..0883de8 100644
--- a/api/api.vcxproj
+++ b/api/api.vcxproj
@@ -104,8 +104,6 @@
<ClCompile>
<PreprocessorDefinitions>_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="Exists('$(OutDir)whql\')">HAVE_WHQL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <PrecompiledHeader>Use</PrecompiledHeader>
- <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<AdditionalOptions>/volatile:iso %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ResourceCompile>
@@ -153,28 +151,24 @@
<None Include="exports.def" />
</ItemGroup>
<ItemGroup>
- <ClInclude Include="api.h" />
+ <ClInclude Include="entry.h" />
<ClInclude Include="adapter.h" />
<ClInclude Include="elevate.h" />
<ClInclude Include="logger.h" />
<ClInclude Include="namespace.h" />
<ClInclude Include="nci.h" />
<ClInclude Include="ntldr.h" />
- <ClInclude Include="pch.h" />
<ClInclude Include="registry.h" />
<ClInclude Include="resource.h" />
<ClInclude Include="wintun.h" />
</ItemGroup>
<ItemGroup>
- <ClCompile Include="api.c" />
+ <ClCompile Include="entry.c" />
<ClCompile Include="adapter.c" />
<ClCompile Include="elevate.c" />
<ClCompile Include="logger.c" />
<ClCompile Include="namespace.c" />
<ClCompile Include="nci.c" />
- <ClCompile Include="pch.c">
- <PrecompiledHeader>Create</PrecompiledHeader>
- </ClCompile>
<ClCompile Include="registry.c" />
<ClCompile Include="resource.c" />
<ClCompile Include="session.c" />
@@ -197,4 +191,4 @@
<Target Name="CleanSignTarget">
<Delete Files="$(IntermediateOutputPath)$(TargetName).sign" />
</Target>
-</Project>
+</Project> \ No newline at end of file