Skip to content

Commit

Permalink
Disabled modules check for Android
Browse files Browse the repository at this point in the history
Signed-off-by: D-a-n-i-l-o <D-a-n-i-l-o@users.noreply.github.com>
  • Loading branch information
D-a-n-i-l-o committed Sep 5, 2021
1 parent a4dfc4c commit 2b57869
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/wake/buildproduct.wx
Original file line number Diff line number Diff line change
Expand Up @@ -292,12 +292,17 @@ Class BuildProduct
End

Method CheckModules()
'
' Disable check for Android because imp.afile is not correct
'
If opts.target="android" Then Return

'
' Check that required modules are available when building app or module
' - the binary library: imp.afile
' - the source header: imp.rfile
'
If opts.productType="app" Or opts.productType="module" And opts.target<>"android"
If opts.productType="app" Or opts.productType="module"
Local missingModules:String

For Local imp := Eachin imports
Expand Down

0 comments on commit 2b57869

Please sign in to comment.