|
@@ -703,7 +703,7 @@ Class BuilderInstance
|
|
Local src:=path.Slice( 0,i )
|
|
Local src:=path.Slice( 0,i )
|
|
|
|
|
|
If GetFileType( src )=FileType.None
|
|
If GetFileType( src )=FileType.None
|
|
- New BuildEx( "Asset '"+src+"' not found" )
|
|
|
|
|
|
+ If Not opts.geninfo New BuildEx( "Asset '"+src+"' not found" )
|
|
Return
|
|
Return
|
|
Endif
|
|
Endif
|
|
|
|
|
|
@@ -720,7 +720,7 @@ Class BuilderInstance
|
|
Local dir:=ExtractDir( path )
|
|
Local dir:=ExtractDir( path )
|
|
|
|
|
|
If GetFileType( dir )<>FILETYPE_DIR
|
|
If GetFileType( dir )<>FILETYPE_DIR
|
|
- New BuildEx( "Directory '"+dir+"' not found" )
|
|
|
|
|
|
+ If Not opts.geninfo New BuildEx( "Directory '"+dir+"' not found" )
|
|
Return
|
|
Return
|
|
Endif
|
|
Endif
|
|
|
|
|
|
@@ -770,7 +770,7 @@ Class BuilderInstance
|
|
|
|
|
|
If product.toolchain="gcc"
|
|
If product.toolchain="gcc"
|
|
If GetFileType( path )<>FileType.Directory
|
|
If GetFileType( path )<>FileType.Directory
|
|
- New BuildEx( "Framework not found "+qpath )
|
|
|
|
|
|
+ If Not opts.geninfo New BuildEx( "Framework not found "+qpath )
|
|
Endif
|
|
Endif
|
|
|
|
|
|
Return
|
|
Return
|
|
@@ -783,7 +783,8 @@ Class BuilderInstance
|
|
|
|
|
|
Else If GetFileType( path )<>FileType.File
|
|
Else If GetFileType( path )<>FileType.File
|
|
|
|
|
|
- New BuildEx( "File not found "+qpath )
|
|
|
|
|
|
+ If Not opts.geninfo New BuildEx( "File not found "+qpath )
|
|
|
|
+
|
|
Return
|
|
Return
|
|
|
|
|
|
Endif
|
|
Endif
|