diff mbox series

[ovs-dev,3/8] datapath_windows: Add datapath_windows target

Message ID 20200908204813.1532-4-aserdean@cloudbasesolutions.com
State Changes Requested
Headers show
Series [ovs-dev,1/8] windows: Remove unused variable | expand

Commit Message

Alin Serdean Sept. 8, 2020, 8:48 p.m. UTC
It is useful to build the latest supported version of the driver using the
`make` command.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
---
 datapath-windows/automake.mk | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox series

Patch

diff --git a/datapath-windows/automake.mk b/datapath-windows/automake.mk
index b8cf5dd95..60b3d6033 100644
--- a/datapath-windows/automake.mk
+++ b/datapath-windows/automake.mk
@@ -90,3 +90,7 @@  datapath_windows_analyze: all
 	MSBuild.exe //nologo //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win10Analyze"
 	MSBuild.exe //nologo //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win8.1Analyze"
 	MSBuild.exe //nologo //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win8Analyze"
+
+datapath_windows: all
+	MSBuild.exe //nologo //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win10Debug"
+	MSBuild.exe //nologo //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win10Release"