link directive

This commit is contained in:
Krzosa Karol
2022-10-09 14:00:41 +02:00
parent faec89beae
commit 0049b39e17
12 changed files with 42 additions and 14 deletions

View File

@@ -50,12 +50,15 @@
#endif
#if OS_WINDOWS
#define OS_EXE ".exe"
#define OS_NAME "Win32"_s
#define OS_NAME_LOWER "win32"_s
#elif OS_LINUX
#define OS_EXE ".out"
#define OS_NAME "Linux"_s
#define OS_NAME_LOWER "linux"_s
#elif OS_MAC
#define OS_EXE ".out"
#define OS_NAME "Mac"_s
#define OS_NAME_LOWER "mac"_s
#else