File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,7 @@ name: Build lv_micropython unix port
2
2
3
3
on :
4
4
push :
5
- branches : [ master ]
6
5
pull_request :
7
- branches : [ master ]
8
6
9
7
jobs :
10
8
build :
Original file line number Diff line number Diff line change @@ -574,7 +574,7 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/
574
574
#define LV_USE_QRCODE 1
575
575
576
576
/*FreeType library, if available*/
577
- #if defined __has_include
577
+ #if defined( __linux__ ) && defined( __has_include )
578
578
# if (__has_include (< ft2build .h > ) || __has_include (< freetype2 /ft2build .h > ))
579
579
# define LV_USE_FREETYPE 1
580
580
# else
@@ -590,8 +590,8 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/
590
590
#endif
591
591
592
592
/* Rlottie library, if available */
593
- #if defined __has_include
594
- # if __has_include (< rlottie_capi .h > )
593
+ #if defined( __linux__ ) && defined( __has_include )
594
+ # if ( __has_include (< rlottie_capi .h > ) )
595
595
# define LV_USE_RLOTTIE 1
596
596
# else
597
597
# define LV_USE_RLOTTIE 0
You can’t perform that action at this time.
0 commit comments