Skip to content

Commit

Permalink
Fix build tags for mobile simulation on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed Jun 25, 2024
1 parent fe4ceb4 commit 53f1743
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/app_darwin.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build !ci && !wasm && !test_web_driver
//go:build !ci && !wasm && !test_web_driver && !mobile

package app

Expand Down
2 changes: 1 addition & 1 deletion app/app_darwin.m
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build !ci
//go:build !ci && !wasm && !test_web_driver && !mobile

#import <Foundation/Foundation.h>
#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 101400 || TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR
Expand Down
2 changes: 1 addition & 1 deletion app/app_desktop_darwin.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build !ci && !ios && !wasm && !test_web_driver
//go:build !ci && !ios && !wasm && !test_web_driver && !mobile

package app

Expand Down
2 changes: 1 addition & 1 deletion app/app_desktop_darwin.m
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build !ci && !ios
//go:build !ci && !ios && !wasm && !test_web_driver && !mobile

extern void themeChanged();

Expand Down
2 changes: 1 addition & 1 deletion app/app_mobile_ios.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build !ci && ios
//go:build !ci && ios && !mobile

package app

Expand Down
2 changes: 1 addition & 1 deletion internal/app/theme_darwin.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build !ios && !wasm && !test_web_driver
//go:build !ios && !wasm && !test_web_driver && !mobile

package app

Expand Down
2 changes: 1 addition & 1 deletion internal/app/theme_darwin.m
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build !ios && !wasm && !test_web_driver
//go:build !ios && !wasm && !test_web_driver && !mobile

#import <Foundation/Foundation.h>

Expand Down

0 comments on commit 53f1743

Please sign in to comment.