diff options
author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2015-04-24 15:44:39 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2015-04-24 15:44:39 -0700 |
commit | e2c65bf16a9b6f30daf023a9cfc270354d351387 (patch) | |
tree | c4e8a185e6b973d50272d4d3c8dc49482fbeef8e /windows/ZeroTierOne/ZeroTierOne.vcxproj | |
parent | 0e315513497832874192a3f44fcb4404c65df275 (diff) | |
download | infinitytier-e2c65bf16a9b6f30daf023a9cfc270354d351387.tar.gz infinitytier-e2c65bf16a9b6f30daf023a9cfc270354d351387.zip |
Bring Windows service code up to date and into sync.
Diffstat (limited to 'windows/ZeroTierOne/ZeroTierOne.vcxproj')
-rw-r--r-- | windows/ZeroTierOne/ZeroTierOne.vcxproj | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/windows/ZeroTierOne/ZeroTierOne.vcxproj b/windows/ZeroTierOne/ZeroTierOne.vcxproj index 2dfc4433..796c30d9 100644 --- a/windows/ZeroTierOne/ZeroTierOne.vcxproj +++ b/windows/ZeroTierOne/ZeroTierOne.vcxproj @@ -43,12 +43,21 @@ <ClCompile Include="..\..\node\Switch.cpp" /> <ClCompile Include="..\..\node\Topology.cpp" /> <ClCompile Include="..\..\node\Utils.cpp" /> + <ClCompile Include="..\..\one.cpp" /> <ClCompile Include="..\..\osdep\Http.cpp" /> <ClCompile Include="..\..\osdep\OSUtils.cpp" /> <ClCompile Include="..\..\osdep\WindowsEthernetTap.cpp" /> - <ClCompile Include="..\..\selftest.cpp" /> + <ClCompile Include="..\..\selftest.cpp"> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> + </ClCompile> <ClCompile Include="..\..\service\ControlPlane.cpp" /> <ClCompile Include="..\..\service\OneService.cpp" /> + <ClCompile Include="ServiceBase.cpp" /> + <ClCompile Include="ServiceInstaller.cpp" /> + <ClCompile Include="ZeroTierOneService.cpp" /> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\ext\http-parser\http_parser.h" /> @@ -102,6 +111,9 @@ <ClInclude Include="..\..\service\OneService.hpp" /> <ClInclude Include="..\..\version.h" /> <ClInclude Include="resource.h" /> + <ClInclude Include="ServiceBase.h" /> + <ClInclude Include="ServiceInstaller.h" /> + <ClInclude Include="ZeroTierOneService.h" /> </ItemGroup> <ItemGroup> <ResourceCompile Include="ZeroTierOne.rc" /> |