🧑‍💻 Optimize PlatformIO source filtering (#25332)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
Martin Turski
2023-04-27 14:05:24 +02:00
committed by GitHub
parent 774861b15d
commit 9a7d9e6995
45 changed files with 650 additions and 297 deletions

View File

@@ -105,3 +105,16 @@
#define HAS_MENU_UBL
#endif
#endif
#if HAS_GRAPHICAL_TFT
#define NOTOSANS 1
#define UNIFONT 2
#define HELVETICA 3
#if TFT_FONT == NOTOSANS
#define TFT_FONT_NOTOSANS
#elif TFT_FONT == UNIFONT
#define TFT_FONT_UNIFONT
#elif TFT_FONT == HELVETICA
#define TFT_FONT_HELVETICA
#endif
#endif