1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 04:24:48 +00:00

Merge pull request #450 from QB64-Phoenix-Edition/fix-extdep-check

Fix external dependencies checks
This commit is contained in:
Roland Heyder 2024-02-09 20:23:44 +01:00 committed by GitHub
commit 354a4c00c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4754,7 +4754,7 @@ DO
mylib$ = mylib$ + " ../../" + libname$ + " "
END IF
END IF
WriteBufLine ExtDepBuf, "DECL: " + _FULLPATH$(libname$)
IF _FILEEXISTS(libname$) THEN WriteBufLine ExtDepBuf, "DECL: " + _FULLPATH$(libname$)
END IF
ELSE
@ -4779,7 +4779,7 @@ DO
IF ASC(x2$, x2) > 122 THEN ASC(x2$, x2) = 95
NEXT
DLLname$ = x2$
WriteBufLine ExtDepBuf, "DECL: " + _FULLPATH$(libname$)
IF _FILEEXISTS(libname$) THEN WriteBufLine ExtDepBuf, "DECL: " + _FULLPATH$(libname$)
IF sfdeclare THEN
@ -4812,7 +4812,7 @@ DO
ELSE
WriteBufLine RegTxtBuf, "#include " + CHR$(34) + "../../" + headername$ + CHR$(34)
END IF
WriteBufLine ExtDepBuf, "DECL: " + _FULLPATH$(headername$)
IF _FILEEXISTS(headername$) THEN WriteBufLine ExtDepBuf, "DECL: " + _FULLPATH$(headername$)
END IF
END IF