From d183efc22b2b0b84c341500a73f567f98f4d00f4 Mon Sep 17 00:00:00 2001 From: Alin Gabriel Serdean Date: Sat, 6 Jun 2015 01:06:30 +0300 Subject: This commit adds the windows installer to the OVS tree. Requirements are the following: Visual Studio Community 2013 WiX Toolset 3.9 Microsoft_VC120_CRT_x86.msm More detailed information on the requirements and build instructions can be found under: https://github.com/cloudbase/ovs-windows-installer/blob/master/README.rst To run and make the installer issue the following: ./boot.sh ./configure CC=./build-aux/cccl LD="`which link`" \ LIBS="-lws2_32 -liphlpapi" --prefix="C:/openvswitch/usr" \ --localstatedir="C:/openvswitch/var" --sysconfdir="C:/openvswitch/etc" \ --with-pthread="C:/pthread" --with-vstudiotarget="Release" make clean && make -j16 windows_installer To uninstall one could use the following Powershell commandlets: $app = Get-WmiObject -Class Win32_Product | Where-Object ` { $_.Name -match "Open Vswitch" } $app.Uninstall() Signed-off-by: Alin Gabriel Serdean Co-authored-by: Alessandro Pilotti Signed-off-by: Alessandro Pilotti Signed-off-by: Gurucharan Shetty --- windows/ovs-windows-installer.sln | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 windows/ovs-windows-installer.sln (limited to 'windows/ovs-windows-installer.sln') diff --git a/windows/ovs-windows-installer.sln b/windows/ovs-windows-installer.sln new file mode 100644 index 000000000..298c831bb --- /dev/null +++ b/windows/ovs-windows-installer.sln @@ -0,0 +1,19 @@ +? +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.31101.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "ovs-windows-installer", "ovs-windows-installer\ovs-windows-installer.wixproj", "{259905A2-7434-4190-8A33-8FBA67171DD6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {259905A2-7434-4190-8A33-8FBA67171DD6}.Release|x86.ActiveCfg = Release|x86 + {259905A2-7434-4190-8A33-8FBA67171DD6}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal -- cgit v1.2.1