diff --git a/README.md b/README.md index 981aa7499..cb69782c9 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,11 @@
- - + + - - + +

diff --git a/build.bat b/build.bat index c3754d79b..402d8842c 100644 --- a/build.bat +++ b/build.bat @@ -42,8 +42,8 @@ del *.ilk > NUL 2> NUL cl %compiler_settings% "src\main.cpp" ^ /link %linker_settings% -OUT:%exe_name% ^ + && odin run examples/demo/demo.odin del *.obj > NUL 2> NUL -:end_of_build - +:end_of_build \ No newline at end of file diff --git a/build_ci.bat b/build_ci.bat index 42ff20b10..53da20680 100644 --- a/build_ci.bat +++ b/build_ci.bat @@ -1,10 +1,7 @@ @echo off -:: Make sure this is a decent name and not generic set exe_name=odin.exe -:: Debug = 0, Release = 1 -set release_mode=1 set compiler_flags= -nologo -Oi -TP -fp:precise -Gm- -MP -FC -GS- -EHsc- -GR- -O2 -MT -Z7 -DNO_ARRAY_BOUNDS_CHECK set compiler_warnings= ^ -W4 -WX ^