diff options
| author | Odd Stranne <odd@mullvad.net> | 2018-04-23 11:50:19 +0200 |
|---|---|---|
| committer | Odd Stranne <odd@mullvad.net> | 2018-06-18 08:45:11 +0200 |
| commit | 6722b587f3020be8daa647e7aff8643ee64c224d (patch) | |
| tree | 9b453e439ae37f447c384fff91d2b8cc4a71e405 | |
| parent | 4d3ae6c583950aa8677adb37d28e8f12513dbdb1 (diff) | |
| download | mullvadvpn-6722b587f3020be8daa647e7aff8643ee64c224d.tar.xz mullvadvpn-6722b587f3020be8daa647e7aff8643ee64c224d.zip | |
Update project/solution files
| -rw-r--r-- | windns/src/windns/windns.vcxproj | 13 | ||||
| -rw-r--r-- | windns/src/windns/windns.vcxproj.filters | 17 | ||||
| -rw-r--r-- | windns/windns.sln | 13 |
3 files changed, 39 insertions, 4 deletions
diff --git a/windns/src/windns/windns.vcxproj b/windns/src/windns/windns.vcxproj index fa4851d600..9005a07f8f 100644 --- a/windns/src/windns/windns.vcxproj +++ b/windns/src/windns/windns.vcxproj @@ -175,24 +175,33 @@ </Link> </ItemDefinitionGroup> <ItemGroup> - <ClInclude Include="comlol.h" /> - <ClInclude Include="dnsregistry.h" /> + <ClInclude Include="comhelpers.h" /> + <ClInclude Include="dnsconfiguration.h" /> + <ClInclude Include="dnshelpers.h" /> <ClInclude Include="stdafx.h" /> <ClInclude Include="targetver.h" /> <ClInclude Include="windns.h" /> + <ClInclude Include="windnscontext.h" /> <ClInclude Include="wmi\connection.h" /> <ClInclude Include="wmi\iconnection.h" /> + <ClInclude Include="wmi\methodcall.h" /> <ClInclude Include="wmi\resultset.h" /> </ItemGroup> <ItemGroup> + <ClCompile Include="comhelpers.cpp" /> <ClCompile Include="dllmain.cpp" /> + <ClCompile Include="dnsconfiguration.cpp" /> + <ClCompile Include="dnshelpers.cpp" /> <ClCompile Include="stdafx.cpp"> <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader> <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader> <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader> <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader> </ClCompile> + <ClCompile Include="windns.cpp" /> + <ClCompile Include="windnscontext.cpp" /> <ClCompile Include="wmi\connection.cpp" /> + <ClCompile Include="wmi\methodcall.cpp" /> <ClCompile Include="wmi\resultset.cpp" /> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> diff --git a/windns/src/windns/windns.vcxproj.filters b/windns/src/windns/windns.vcxproj.filters index f8becc56c5..da2337c7ce 100644 --- a/windns/src/windns/windns.vcxproj.filters +++ b/windns/src/windns/windns.vcxproj.filters @@ -6,15 +6,20 @@ <ClInclude Include="wmi\connection.h"> <Filter>wmi</Filter> </ClInclude> - <ClInclude Include="comlol.h" /> <ClInclude Include="wmi\resultset.h"> <Filter>wmi</Filter> </ClInclude> <ClInclude Include="wmi\iconnection.h"> <Filter>wmi</Filter> </ClInclude> - <ClInclude Include="dnsregistry.h" /> <ClInclude Include="windns.h" /> + <ClInclude Include="windnscontext.h" /> + <ClInclude Include="dnsconfiguration.h" /> + <ClInclude Include="wmi\methodcall.h"> + <Filter>wmi</Filter> + </ClInclude> + <ClInclude Include="comhelpers.h" /> + <ClInclude Include="dnshelpers.h" /> </ItemGroup> <ItemGroup> <ClCompile Include="dllmain.cpp" /> @@ -25,6 +30,14 @@ <ClCompile Include="wmi\resultset.cpp"> <Filter>wmi</Filter> </ClCompile> + <ClCompile Include="windns.cpp" /> + <ClCompile Include="windnscontext.cpp" /> + <ClCompile Include="dnsconfiguration.cpp" /> + <ClCompile Include="wmi\methodcall.cpp"> + <Filter>wmi</Filter> + </ClCompile> + <ClCompile Include="comhelpers.cpp" /> + <ClCompile Include="dnshelpers.cpp" /> </ItemGroup> <ItemGroup> <Filter Include="wmi"> diff --git a/windns/windns.sln b/windns/windns.sln index 69bc05d9fb..58f8ea0578 100644 --- a/windns/windns.sln +++ b/windns/windns.sln @@ -10,6 +10,11 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "windns", "src\windns\windns {B52E2D10-A94A-4605-914A-2DCEF6A757EF} = {B52E2D10-A94A-4605-914A-2DCEF6A757EF} EndProjectSection EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dnstest", "src\dnstest\dnstest.vcxproj", "{1476A8B9-4A9E-4358-8744-A350CB97E152}" + ProjectSection(ProjectDependencies) = postProject + {B52E2D10-A94A-4605-914A-2DCEF6A757EF} = {B52E2D10-A94A-4605-914A-2DCEF6A757EF} + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x64 = Debug|x64 @@ -38,6 +43,14 @@ Global {A5344205-FC37-4572-9C63-8564ECC410AC}.Release|x86.ActiveCfg = Release|Win32 {A5344205-FC37-4572-9C63-8564ECC410AC}.Release|x86.Build.0 = Release|Win32 {A5344205-FC37-4572-9C63-8564ECC410AC}.Release|x86.Deploy.0 = Release|Win32 + {1476A8B9-4A9E-4358-8744-A350CB97E152}.Debug|x64.ActiveCfg = Debug|x64 + {1476A8B9-4A9E-4358-8744-A350CB97E152}.Debug|x64.Build.0 = Debug|x64 + {1476A8B9-4A9E-4358-8744-A350CB97E152}.Debug|x86.ActiveCfg = Debug|Win32 + {1476A8B9-4A9E-4358-8744-A350CB97E152}.Debug|x86.Build.0 = Debug|Win32 + {1476A8B9-4A9E-4358-8744-A350CB97E152}.Release|x64.ActiveCfg = Release|x64 + {1476A8B9-4A9E-4358-8744-A350CB97E152}.Release|x64.Build.0 = Release|x64 + {1476A8B9-4A9E-4358-8744-A350CB97E152}.Release|x86.ActiveCfg = Release|Win32 + {1476A8B9-4A9E-4358-8744-A350CB97E152}.Release|x86.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE |
