From 61be5aaae441a667c16545cd39885c71c3f5b2fc Mon Sep 17 00:00:00 2001 From: ImackluI Date: Sat, 10 Dec 2022 10:11:39 +0000 Subject: [PATCH] Added Powershell build scripts, for compilation with Windows --- clients/c++/build_win.ps1 | 1 + models/testmodel/build_win.ps1 | 1 + 2 files changed, 2 insertions(+) create mode 100644 clients/c++/build_win.ps1 create mode 100644 models/testmodel/build_win.ps1 diff --git a/clients/c++/build_win.ps1 b/clients/c++/build_win.ps1 new file mode 100644 index 0000000..c1ca8e1 --- /dev/null +++ b/clients/c++/build_win.ps1 @@ -0,0 +1 @@ +g++ -std=c++17 -o http-client http-client.cpp -pthread -I../../lib/ -lWs2_32 -lssl -lcrypto -lCrypt32 \ No newline at end of file diff --git a/models/testmodel/build_win.ps1 b/models/testmodel/build_win.ps1 new file mode 100644 index 0000000..bd6229e --- /dev/null +++ b/models/testmodel/build_win.ps1 @@ -0,0 +1 @@ +g++ -std=c++17 -o minimal-server minimal-server.cpp -pthread -I../../lib/ -lWs2_32 -lssl -lcrypto -lCrypt32 \ No newline at end of file