🍄Windows VmOdin

Odin is a programming language that I use to make games.

Installation steps of Odin on Windows:

  1. Download and extract the latest release version of Odin.

  2. Add the odin.exe executable to PATH and as a new environment variable ODIN_ROOT: Start -> Settings -> System -> About -> Advanced system settings -> Environment variables

Now it is in your path. All you need to do is to place the working files that are successfully compiled on Linux to the shared folder set up in the Windows VM. Start cmd by entering it in the prompt Win+r and run these commands, assuming you have a project called your_project in the shared folder and the shared folder is mounted on disk Z::

mkdir code
copy Z:\your_project\ code\
cd code\your_project
odin build .
your_project.exe

Full Odin+Raylib installation even on non-developer Windows versions: