summaryrefslogtreecommitdiff
path: root/make.bat
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-09-14 11:10:36 -0400
committerpommicket <pommicket@gmail.com>2023-09-14 11:10:36 -0400
commit42f3f808e3147a8b67d5d65fcc197c6fa8e81b46 (patch)
treed8005f46398c50cea9b5e7fe52010dd12ea02503 /make.bat
parent52015e0c9a4e3bc8dc558929a85461f079dda303 (diff)
build ted.msi in make.bat2.6.1
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat6
1 files changed, 5 insertions, 1 deletions
diff --git a/make.bat b/make.bat
index 806d5d0..52ade8d 100644
--- a/make.bat
+++ b/make.bat
@@ -21,6 +21,10 @@ if _%1 == _ (
copy /y ted.exe ..
popd
)
-if _%1 == _release cl main.c ted.res /O2 /wd4702 %C_FLAGS% /Fe:ted
+if _%1 == _release (
+ cl main.c ted.res /O2 /wd4702 %C_FLAGS% /Fe:ted
+ devenv windows_installer\ted\ted.vdproj /build "Release|Default"
+ copy /y windows_installer\ted\Release\ted.msi
+)
if _%1 == _release_with_debug_info cl main.c ted.res /DEBUG /Zi /O2 /wd4702 %C_FLAGS% /Fe:ted
if _%1 == _profile cl main.c ted.res /O2 /wd4702 /DPROFILE %C_FLAGS% /Fe:ted