From 758c7802596eb40343228b8bb6abb1ff2e3395bb Mon Sep 17 00:00:00 2001 From: Rodrigo Madera Date: Sat, 27 Mar 2021 14:09:14 -0300 Subject: [PATCH] Simplify defines for platform selection. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1ec6d23..f806cfe 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Before you can compile `tray`, you'll need to add an environment definition befo #include #include -#define TRAY_WINAPI 1 +#define TRAY_WINAPI #include "tray.h" ... @@ -31,7 +31,7 @@ Before you can compile `tray`, you'll need to add an environment definition befo #include #include -#define TRAY_APPINDICATOR 1 +#define TRAY_APPINDICATOR #include "tray.h" ... @@ -42,7 +42,7 @@ Before you can compile `tray`, you'll need to add an environment definition befo #include #include -#define TRAY_APPKIT 1 +#define TRAY_APPKIT #include "tray.h" ...