code / tomo

Lines41.3K C23.7K Markdown9.7K YAML5.0K Tomo2.3K
7 others 763
Python231 Shell230 make212 INI47 Text21 SVG16 Lua6
(20 lines)
1 // Configuration of values that will be baked into the executable:
3 #ifndef GIT_VERSION
4 #define GIT_VERSION "???"
5 #endif
7 extern const char *TOMO_PATH;
8 extern const char *TOMO_VERSION;
10 #ifndef DEFAULT_C_COMPILER
11 #define DEFAULT_C_COMPILER "cc"
12 #endif
14 #ifndef SUDO
15 #if defined(__OpenBSD__)
16 #define SUDO "doas"
17 #else
18 #define SUDO "sudo"
19 #endif
20 #endif