Skip to content

Fix external dependencies checks #450

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/qb64pe.bas
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down Expand Up @@ -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
Expand Down