mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-18 20:02:22 -07:00
8becbdc1b2
Made Linux (almost) work. The generated binaries segfault, but it's so close I can almost taste it.
5 lines
149 B
Odin
5 lines
149 B
Odin
#include "os_windows.odin" when ODIN_OS == "windows";
|
|
#include "os_x.odin" when ODIN_OS == "osx";
|
|
#include "os_linux.odin" when ODIN_OS == "linux";
|
|
|