From 19f04fb8b35497ccf2b9bd2bbc09b7e1b75e82a9 Mon Sep 17 00:00:00 2001 From: Elad Salomons Date: Wed, 9 Dec 2015 21:54:48 +0200 Subject: [PATCH] Add WIN build for linked EXE Now the WIN build script supports two options: one is a standalone EXE were the entire code base is compiled into one EXE file and the second is an EXE which is linked to the DLL --- build/WinSDK/win_make.bat | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/WinSDK/win_make.bat b/build/WinSDK/win_make.bat index cdfd45b..cb9d6cd 100644 --- a/build/WinSDK/win_make.bat +++ b/build/WinSDK/win_make.bat @@ -13,7 +13,10 @@ rem : do the magic ... rem : creat EPANET2.DLL cl -o epanet2.dll epanet.c hash.c hydraul.c inpfile.c input1.c input2.c input3.c mempool.c output.c quality.c report.c rules.c smatrix.c /I ..\include /I ..\run /link /DLL /def:..\build\winsdk\epanet2.def /MAP rem : creat EPANET2.EXE + rem : first option is the standalone EXE cl -o epanet2.exe epanet.c ..\run\main.c hash.c hydraul.c inpfile.c input1.c input2.c input3.c mempool.c output.c quality.c report.c rules.c smatrix.c /I ..\include /I ..\run /I ..\src /link + rem : second option is a linked EXE (linked to the epanet2.dll) + rem cl -o epanet2.exe ..\run\main.c epanet2.lib /I ..\include /I ..\run /I ..\src /link rem : a bit of housekeeping and cleaning del %SRC_PATH%\*.obj