diff options
| author | gingerBill <bill@gingerbill.org> | 2022-09-07 11:22:43 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-09-07 11:22:43 +0100 |
| commit | af76d267717bc3b504a53ac7445e2c82b228600a (patch) | |
| tree | f23060cee7644b5c1c72a494901ed477c620c706 /build.bat | |
| parent | d2097e9fdddb19ad71ef56219c22fd0eecb0c65e (diff) | |
Simplify win32 resource file linking
Diffstat (limited to 'build.bat')
| -rw-r--r-- | build.bat | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -72,10 +72,12 @@ del *.ilk > NUL 2> NUL cl %compiler_settings% "src\main.cpp" "src\libtommath.cpp" /link %linker_settings% -OUT:%exe_name% if %errorlevel% neq 0 goto end_of_build -call build_vendor.bat -if %errorlevel% neq 0 goto end_of_build +rem call build_vendor.bat +rem if %errorlevel% neq 0 goto end_of_build -if %release_mode% EQU 0 odin run examples/demo +odin run examples/demo -vet -strict-style +rem odin check examples/all +rem odin run examples/bug del *.obj > NUL 2> NUL |