diff options
author | pommicket <pommicket@gmail.com> | 2023-09-14 11:10:36 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-09-14 11:10:36 -0400 |
commit | 42f3f808e3147a8b67d5d65fcc197c6fa8e81b46 (patch) | |
tree | d8005f46398c50cea9b5e7fe52010dd12ea02503 /make.bat | |
parent | 52015e0c9a4e3bc8dc558929a85461f079dda303 (diff) |
build ted.msi in make.bat2.6.1
Diffstat (limited to 'make.bat')
-rw-r--r-- | make.bat | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |